Streams data into BigQuery one record at a time without needing to run a load job. Requires the WRITER dataset role.
Arguments
datasetId
string
Required. Dataset ID of the destination table.
projectId
string
Required. Project ID of the destination table.
tableId
string
Required. Table ID of the destination table.
body
object ( TableDataInsertAllRequest
)
Required.
Raised exceptions
ConnectionError
HttpError
TimeoutError
TypeError
ValueError
Response
If successful, the response contains an instance of TableDataInsertAllResponse
.
Subworkflow snippet
Some fields might be optional or required. To identify required fields, refer to the API documentation .
YAML
- insertAll : call : googleapis.bigquery.v2.tabledata.insertAll args : datasetId : ... projectId : ... tableId : ... body : ignoreUnknownValues : ... kind : ... rows : insertId : ... json : ... skipInvalidRows : ... templateSuffix : ... result : insertAllResult
JSON
[ { "insertAll" : { "call" : "googleapis.bigquery.v2.tabledata.insertAll" , "args" : { "datasetId" : "..." , "projectId" : "..." , "tableId" : "..." , "body" : { "ignoreUnknownValues" : "..." , "kind" : "..." , "rows" : { "insertId" : "..." , "json" : "..." }, "skipInvalidRows" : "..." , "templateSuffix" : "..." } }, "result" : "insertAllResult" } } ]

