Skip to content

Commit 3148271

Browse files
authored
out_bigquery: add skipInvalidRows and ignoreUnknownValues params (#623)
Added BigQuery request body parameters `skipInvalidRows` and `ignoreUnknownValues` that are used for the streaming inserts. Updated these docs in sync with the changes in the main Fluent Bit repo. Signed-off-by: zhenyami <[email protected]>
1 parent f87a2ab commit 3148271

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pipeline/outputs/bigquery.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ Fluent Bit BigQuery output plugin uses a JSON credentials file for authenticatio
4040
| project\_id | The project id containing the BigQuery dataset to stream into. | The value of the `project_id` in the credentials file |
4141
| dataset\_id | The dataset id of the BigQuery dataset to write into. This dataset must exist in your project. | |
4242
| table\_id | The table id of the BigQuery table to write into. This table must exist in the specified dataset and the schema must match the output. | |
43+
| skip_invalid_rows | Insert all valid rows of a request, even if invalid rows exist. The default value is false, which causes the entire request to fail if any invalid rows exist. | Off |
44+
| ignore_unknown_values | Accept rows that contain values that do not match the schema. The unknown values are ignored. Default is false, which treats unknown values as errors. | Off |
45+
46+
See Google's [official documentation](https://cloud.google.com/bigquery/docs/reference/rest/v2/tabledata/insertAll) for further details.
4347

4448
## Configuration File
4549

0 commit comments

Comments
 (0)