InsertMode
データを挿入する際に使用する方法を指定します。デフォルトでは、ストリーミングINSERT が使用されます。
Possible Values
Streaming, DML, Upload, GCSStagingデータ型
string
デフォルト値
"Streaming"
解説
This section provides only a summary of the mechanisms that each of these modes use. Please see 高度な統合 for more details on how to use each of these modes.
- Streaming uses the Google BigQuery streaming API (also called insertAll).
- DML uses the Google BigQuery query API to generate INSERT SQL statements which insert individual rows.
- Upload uses the Google BigQuery upload API to create a load job which copies the rows from temporary server-side storage.
- GCSStaging is similar to the Upload mode except that it uses your Google Cloud Storage account instead of public storage.
UseLegacySQL がtrue の場合、Streaming とUploadモードのみ使用可能です。レガシーSQL ダイアレクトはDML ステートメントをサポートしていません。