Skip to content

Commit 2e62c46

Browse files
authored
docs(firestore-bigquery-export): fix small typo in max dispatches param (#2317)
1 parent 0cbe54e commit 2e62c46

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

firestore-bigquery-export/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
docs - remove references to lifecycle backfill feature.
44

5+
docs - correct typo in maximum dispatches per second.
6+
57
## Version 0.1.58
68

79
feat - move to Node.js 20 runtimes.

firestore-bigquery-export/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ essential for the script to insert data into an already partitioned table.)
277277
Note: Cluster columns must be top-level, non-repeated columns of one of the following types: BIGNUMERIC, BOOL, DATE, DATETIME, GEOGRAPHY, INT64, NUMERIC, RANGE, STRING, TIMESTAMP. Clustering will not be added if a field with an invalid type is present in this parameter.
278278
Available schema extensions table fields for clustering include: `document_id, document_name, timestamp, event_id, operation, data`.
279279

280-
* Maximum number of synced documents per second: This parameter will set the maximum number of syncronised documents per second with BQ. Please note, any other external updates to a Big Query table will be included within this quota. Ensure that you have a set a low enough number to compensate. Defaults to 10.
280+
* Maximum number of synced documents per second: This parameter will set the maximum number of syncronised documents per second with BQ. Please note, any other external updates to a Big Query table will be included within this quota. Ensure that you have a set a low enough number to compensate. Defaults to 100.
281281

282282
* View Type: Select the type of view to create in BigQuery. A regular view is a virtual table defined by a SQL query. A materialized view persists the results of a query for faster access, with either incremental or non-incremental updates. Please note that materialized views in this extension come with several important caveats and limitations - carefully review the pre-install documentation before selecting these options to ensure they are appropriate for your use case.
283283

firestore-bigquery-export/extension.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ params:
339339
This parameter will set the maximum number of syncronised documents per
340340
second with BQ. Please note, any other external updates to a Big Query
341341
table will be included within this quota. Ensure that you have a set a low
342-
enough number to compensate. Defaults to 10.
342+
enough number to compensate. Defaults to 100.
343343
type: string
344344
validationRegex: ^([1-9]|[1-9][0-9]|[1-4][0-9]{2}|500)$
345345
validationErrorMessage: Please select a number between 1 and 500

0 commit comments

Comments
 (0)