diff --git a/docs/firestore-bigquery-export/Clustering.md b/docs/firestore-bigquery-export/Clustering.md index f5d000e7d..32d7d1847 100644 --- a/docs/firestore-bigquery-export/Clustering.md +++ b/docs/firestore-bigquery-export/Clustering.md @@ -12,7 +12,7 @@ Through the extension, adding clustering is as simple as adding a comma-separate Clustering allows up to a maximum of four fields and can be configured similar to -`document_id, timestamp, event_id, data` +`document_id, document_name, timestamp, event_id, data` ![example](/docs/firestore-bigquery-export/media/clustering.png) diff --git a/docs/firestore-bigquery-export/get-started.md b/docs/firestore-bigquery-export/get-started.md index aa354624c..458c1d258 100644 --- a/docs/firestore-bigquery-export/get-started.md +++ b/docs/firestore-bigquery-export/get-started.md @@ -89,7 +89,7 @@ During installation, you will be prompted to specify a number of configuration p This parameter will allow you to set up Clustering for the BigQuery Table created by the extension. (for example: `data,document_id,timestamp`- no whitespaces). You can select up to 4 comma-separated fields(order matters). - Available schema extensions table fields for clustering: `document_id, timestamp, event_id, operation, data`. + Available schema extensions table fields for clustering: `document_id, document_name, timestamp, event_id, operation, data`. - **Backup Collection Name:** diff --git a/firestore-bigquery-export/README.md b/firestore-bigquery-export/README.md index 81d406566..c9fb0b072 100644 --- a/firestore-bigquery-export/README.md +++ b/firestore-bigquery-export/README.md @@ -136,7 +136,7 @@ To install an extension, your project must be on the [Blaze (pay as you go) plan * BigQuery SQL Time Partitioning table schema field(column) type: Parameter for BigQuery SQL schema field type for the selected Time Partitioning Firestore Document field option. Cannot be changed if Table is already partitioned. -* BigQuery SQL table clustering: This parameter will allow you to set up Clustering for the BigQuery Table created by the extension. (for example: `data,document_id,timestamp`- no whitespaces). You can select up to 4 comma separated fields. The order of the specified columns determines the sort order of the data. Available schema extensions table fields for clustering: `document_id, timestamp, event_id, operation, data`. +* BigQuery SQL table clustering: This parameter will allow you to set up Clustering for the BigQuery Table created by the extension. (for example: `data,document_id,timestamp`- no whitespaces). You can select up to 4 comma separated fields. The order of the specified columns determines the sort order of the data. Available schema extensions table fields for clustering: `document_id, document_name, timestamp, event_id, operation, data`. * 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 componsate. Defaults to 10. diff --git a/firestore-bigquery-export/extension.yaml b/firestore-bigquery-export/extension.yaml index 73a717751..b667ea77e 100644 --- a/firestore-bigquery-export/extension.yaml +++ b/firestore-bigquery-export/extension.yaml @@ -291,7 +291,7 @@ params: description: >- This parameter will allow you to set up Clustering for the BigQuery Table created by the extension. (for example: `data,document_id,timestamp`- no whitespaces). You can select up to 4 comma separated fields. The order of the specified columns determines the sort order of the data. - Available schema extensions table fields for clustering: `document_id, timestamp, event_id, operation, data`. + Available schema extensions table fields for clustering: `document_id, document_name, timestamp, event_id, operation, data`. type: string validationRegex: ^[^,\s]+(?:,[^,\s]+){0,3}$ validationErrorMessage: No whitespaces. Max 4 fields. e.g. `data,timestamp,event_id,operation`