@firebase-function-kits/firestore-bigquery-export 0.0.2-rc.0 → 0.0.2-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +69 -0
- package/lib/config.d.ts.map +1 -1
- package/lib/config.js +239 -15
- package/lib/config.js.map +1 -1
- package/npm-shrinkwrap.json +6226 -0
- package/package.json +8 -4
- package/src/config.ts +291 -15
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
- Initial release
|
|
1
|
+
- Initial release of kit, see README for differences between the legacy extension and this kit
|
package/README.md
CHANGED
|
@@ -215,6 +215,75 @@ missing when a write arrives, the inline write fails, the handler calls
|
|
|
215
215
|
failure is surfaced to the function runtime retry policy (`retry: true` on
|
|
216
216
|
`fsexportbigquery`).
|
|
217
217
|
|
|
218
|
+
## Differences from the Stream Firestore to BigQuery extension
|
|
219
|
+
|
|
220
|
+
This kit is the extension repackaged as an npm package, but a few things behave
|
|
221
|
+
differently. If you are moving from an installed extension instance, read this
|
|
222
|
+
section before you deploy.
|
|
223
|
+
|
|
224
|
+
### Boolean settings use `true` / `false`
|
|
225
|
+
|
|
226
|
+
`WILDCARD_IDS`, `USE_NEW_SNAPSHOT_QUERY_SYNTAX` and `EXCLUDE_OLD_DATA` are
|
|
227
|
+
boolean params, and only the literal string `true` enables them. The extension
|
|
228
|
+
used `yes` / `no` for the last two, so copying an old config across leaves them
|
|
229
|
+
silently disabled. Change any `yes` to `true` in your `.env`.
|
|
230
|
+
|
|
231
|
+
### Failed writes retry differently
|
|
232
|
+
|
|
233
|
+
The extension pushed a failed BigQuery write onto a Cloud Tasks queue
|
|
234
|
+
(`syncBigQuery`) and retried it from there. This kit has no task queue on the
|
|
235
|
+
write path. A failed write is retried once in place, and anything still failing
|
|
236
|
+
is handed to the Cloud Functions runtime retry policy, which redelivers the
|
|
237
|
+
Firestore event.
|
|
238
|
+
|
|
239
|
+
The practical effects: retries no longer show up as a separate function or
|
|
240
|
+
queue in the console, and the two knobs that tuned that queue,
|
|
241
|
+
`MAX_DISPATCHES_PER_SECOND` and `MAX_ENQUEUE_ATTEMPTS`, no longer exist.
|
|
242
|
+
|
|
243
|
+
### Events
|
|
244
|
+
|
|
245
|
+
`onSuccess` is no longer published. The extension emitted it from the task
|
|
246
|
+
queue handler, which is gone, so the kit publishes `onStart` and `onError`
|
|
247
|
+
only.
|
|
248
|
+
|
|
249
|
+
Events are published under `firebase.extensions.firestore-bigquery-export.v1.*`
|
|
250
|
+
only. The extension also published a duplicate copy of every event under
|
|
251
|
+
`firebase.extensions.firestore-counter.v1.*`, a historical naming mistake kept
|
|
252
|
+
for backwards compatibility. If you have Eventarc triggers listening on those
|
|
253
|
+
`firestore-counter` types, point them at the `firestore-bigquery-export` types.
|
|
254
|
+
|
|
255
|
+
### Wildcard columns include the document ID
|
|
256
|
+
|
|
257
|
+
With `WILDCARD_IDS=true`, the wildcard column now contains a `documentId` key
|
|
258
|
+
alongside the path parameters from your collection path. The extension wrote
|
|
259
|
+
the path parameters only.
|
|
260
|
+
|
|
261
|
+
### Functions deploy to your Firestore region
|
|
262
|
+
|
|
263
|
+
The extension let you pick a function location separately from the Firestore
|
|
264
|
+
database location. Here, `DATABASE_REGION` sets both: the trigger, the
|
|
265
|
+
lifecycle tasks, and the database being watched.
|
|
266
|
+
|
|
267
|
+
### Defaults
|
|
268
|
+
|
|
269
|
+
Two settings now have defaults rather than being passed through empty:
|
|
270
|
+
`DATASET_LOCATION` defaults to `us`, and `BIGQUERY_PROJECT_ID` defaults to the
|
|
271
|
+
project the functions are deployed to.
|
|
272
|
+
|
|
273
|
+
### Tooling that is not included
|
|
274
|
+
|
|
275
|
+
The extension shipped companion scripts that this package does not:
|
|
276
|
+
|
|
277
|
+
- `fs-bq-import-collection`, for backfilling documents that already existed
|
|
278
|
+
before the export started.
|
|
279
|
+
- `gen-schema-view`, for generating strongly typed BigQuery views over the
|
|
280
|
+
changelog.
|
|
281
|
+
- The cross-project access grant scripts.
|
|
282
|
+
|
|
283
|
+
`IMPORT_COLLECTION_PATH` is not a setting here. If you rely on any of these,
|
|
284
|
+
keep using the versions from the extension repository. They operate on the same
|
|
285
|
+
BigQuery changelog table, so they still work against data this kit writes.
|
|
286
|
+
|
|
218
287
|
## API surface
|
|
219
288
|
|
|
220
289
|
- **Main entry** (`@firebase/firestore-bigquery-export`): exports
|
package/lib/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EACV,mBAAmB,EAEnB,2BAA2B,EAC5B,MAAM,uDAAuD,CAAC;AAE/D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAO5D,OAAO,KAAK,EAAE,YAAY,EAAY,MAAM,iBAAiB,CAAC;AAG9D,KAAK,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC;AAkH3E,MAAM,WAAW,iBAAiB;IAChC,cAAc,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACzC,SAAS,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAClC,QAAQ,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACnC,QAAQ,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;CACpC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EACV,mBAAmB,EAEnB,2BAA2B,EAC5B,MAAM,uDAAuD,CAAC;AAE/D,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,2BAA2B,CAAC;AAO5D,OAAO,KAAK,EAAE,YAAY,EAAY,MAAM,iBAAiB,CAAC;AAG9D,KAAK,gBAAgB,CAAC,CAAC,SAAS,MAAM,GAAG,MAAM,GAAG,OAAO,IAAI,UAAU,CAAC,CAAC,CAAC,CAAC;AAkH3E,MAAM,WAAW,iBAAiB;IAChC,cAAc,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACzC,SAAS,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAClC,QAAQ,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IACnC,QAAQ,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;CACpC;AAqVD,eAAO,MAAM,kBAAkB,EAAE,iBAMhC,CAAC;AAiBF,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,SAAS,YAEtD;AA4BD,wBAAgB,uBAAuB,CAAC,MAAM,EAAE;IAC9C,gBAAgB,EAAE,2BAA2B,GAAG,IAAI,CAAC;IACrD,qBAAqB,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1C,yBAAyB,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9C,8BAA8B,EAAE,MAAM,GAAG,SAAS,CAAC;CACpD,GAAG,mBAAmB,CAAC,cAAc,CAAC,CAuEtC;AA6BD;;;;;;;;;;GAUG;AACH,wBAAgB,aAAa,IAAI,YAAY,CAiC5C"}
|
package/lib/config.js
CHANGED
|
@@ -142,55 +142,279 @@ const LOG_LEVEL_OPTIONS = ["debug", "info", "warn", "error", "silent"];
|
|
|
142
142
|
*/
|
|
143
143
|
const params = {
|
|
144
144
|
bigqueryProjectId: (0, params_1.defineString)("BIGQUERY_PROJECT_ID", {
|
|
145
|
+
label: "BigQuery Project ID",
|
|
146
|
+
description: "Override the default project for BigQuery instance. This can allow updates to be directed to to a BigQuery instance on another GCP project.",
|
|
145
147
|
default: params_1.projectID,
|
|
146
148
|
}),
|
|
147
|
-
database: (0, params_1.defineString)("DATABASE", {
|
|
149
|
+
database: (0, params_1.defineString)("DATABASE", {
|
|
150
|
+
label: "Firestore Instance ID",
|
|
151
|
+
description: 'The Firestore database to use. Use "(default)" for the default database. You can view your available Firestore databases at https://console.cloud.google.com/firestore/databases.',
|
|
152
|
+
default: "(default)",
|
|
153
|
+
input: { text: { example: "(default)" } },
|
|
154
|
+
}),
|
|
148
155
|
databaseRegion: (0, params_1.defineString)("DATABASE_REGION", {
|
|
149
|
-
|
|
156
|
+
label: "Firestore Instance Location",
|
|
157
|
+
description: "Where is the Firestore database located? You can check your current database location at https://console.cloud.google.com/firestore/databases.",
|
|
158
|
+
input: (0, params_1.select)({
|
|
159
|
+
"Multi-region (Europe - Belgium and Netherlands)": "eur3",
|
|
160
|
+
"Multi-region (United States)": "nam5",
|
|
161
|
+
"Multi-region (Iowa, North Virginia, and Oklahoma)": "nam7",
|
|
162
|
+
"Iowa (us-central1)": "us-central1",
|
|
163
|
+
"Oregon (us-west1)": "us-west1",
|
|
164
|
+
"Los Angeles (us-west2)": "us-west2",
|
|
165
|
+
"Salt Lake City (us-west3)": "us-west3",
|
|
166
|
+
"Las Vegas (us-west4)": "us-west4",
|
|
167
|
+
"South Carolina (us-east1)": "us-east1",
|
|
168
|
+
"Northern Virginia (us-east4)": "us-east4",
|
|
169
|
+
"Columbus (us-east5)": "us-east5",
|
|
170
|
+
"Dallas (us-south1)": "us-south1",
|
|
171
|
+
"Montreal (northamerica-northeast1)": "northamerica-northeast1",
|
|
172
|
+
"Toronto (northamerica-northeast2)": "northamerica-northeast2",
|
|
173
|
+
"Queretaro (northamerica-south1)": "northamerica-south1",
|
|
174
|
+
"Sao Paulo (southamerica-east1)": "southamerica-east1",
|
|
175
|
+
"Santiago (southamerica-west1)": "southamerica-west1",
|
|
176
|
+
"Belgium (europe-west1)": "europe-west1",
|
|
177
|
+
"London (europe-west2)": "europe-west2",
|
|
178
|
+
"Frankfurt (europe-west3)": "europe-west3",
|
|
179
|
+
"Netherlands (europe-west4)": "europe-west4",
|
|
180
|
+
"Zurich (europe-west6)": "europe-west6",
|
|
181
|
+
"Milan (europe-west8)": "europe-west8",
|
|
182
|
+
"Paris (europe-west9)": "europe-west9",
|
|
183
|
+
"Berlin (europe-west10)": "europe-west10",
|
|
184
|
+
"Turin (europe-west12)": "europe-west12",
|
|
185
|
+
"Madrid (europe-southwest1)": "europe-southwest1",
|
|
186
|
+
"Finland (europe-north1)": "europe-north1",
|
|
187
|
+
"Stockholm (europe-north2)": "europe-north2",
|
|
188
|
+
"Warsaw (europe-central2)": "europe-central2",
|
|
189
|
+
"Doha (me-central1)": "me-central1",
|
|
190
|
+
"Dammam (me-central2)": "me-central2",
|
|
191
|
+
"Tel Aviv (me-west1)": "me-west1",
|
|
192
|
+
"Mumbai (asia-south1)": "asia-south1",
|
|
193
|
+
"Delhi (asia-south2)": "asia-south2",
|
|
194
|
+
"Singapore (asia-southeast1)": "asia-southeast1",
|
|
195
|
+
"Jakarta (asia-southeast2)": "asia-southeast2",
|
|
196
|
+
"Taiwan (asia-east1)": "asia-east1",
|
|
197
|
+
"Hong Kong (asia-east2)": "asia-east2",
|
|
198
|
+
"Tokyo (asia-northeast1)": "asia-northeast1",
|
|
199
|
+
"Osaka (asia-northeast2)": "asia-northeast2",
|
|
200
|
+
"Seoul (asia-northeast3)": "asia-northeast3",
|
|
201
|
+
"Sydney (australia-southeast1)": "australia-southeast1",
|
|
202
|
+
"Melbourne (australia-southeast2)": "australia-southeast2",
|
|
203
|
+
"Johannesburg (africa-south1)": "africa-south1",
|
|
204
|
+
}),
|
|
205
|
+
}),
|
|
206
|
+
collectionPath: (0, params_1.defineString)("COLLECTION_PATH", {
|
|
207
|
+
label: "Collection path",
|
|
208
|
+
description: "What is the path of the collection that you would like to export? You may use `{wildcard}` notation to match a subcollection of all documents in a collection (for example: `chatrooms/{chatid}/posts`). Parent Firestore Document IDs from `{wildcards}` can be returned in `path_params` as a JSON formatted string.",
|
|
209
|
+
default: "posts",
|
|
210
|
+
input: {
|
|
211
|
+
text: {
|
|
212
|
+
example: "posts",
|
|
213
|
+
validationRegex: /^[^\/]+(\/[^\/]+\/[^\/]+)*$/,
|
|
214
|
+
validationErrorMessage: 'Firestore collection paths must be an odd number of segments separated by slashes, e.g. "path/to/collection".',
|
|
215
|
+
},
|
|
216
|
+
},
|
|
217
|
+
}),
|
|
218
|
+
datasetId: (0, params_1.defineString)("DATASET_ID", {
|
|
219
|
+
label: "Dataset ID",
|
|
220
|
+
description: "What ID would you like to use for your BigQuery dataset? This extension will create the dataset, if it doesn't already exist.",
|
|
221
|
+
default: "firestore_export",
|
|
222
|
+
input: {
|
|
223
|
+
text: {
|
|
224
|
+
example: "firestore_export",
|
|
225
|
+
validationRegex: /^[a-zA-Z0-9_]+$/,
|
|
226
|
+
validationErrorMessage: "BigQuery dataset IDs must be alphanumeric (plus underscores) and must be no more than 1024 characters.",
|
|
227
|
+
},
|
|
228
|
+
},
|
|
229
|
+
}),
|
|
230
|
+
tableId: (0, params_1.defineString)("TABLE_ID", {
|
|
231
|
+
label: "Table ID",
|
|
232
|
+
description: "What identifying prefix would you like to use for your table and view inside your BigQuery dataset? This extension will create the table and view, if they don't already exist.",
|
|
233
|
+
default: "posts",
|
|
234
|
+
input: {
|
|
235
|
+
text: {
|
|
236
|
+
example: "posts",
|
|
237
|
+
validationRegex: /^[a-zA-Z0-9_]+$/,
|
|
238
|
+
validationErrorMessage: "BigQuery table IDs must be alphanumeric (plus underscores) and must be no more than 1024 characters.",
|
|
239
|
+
},
|
|
240
|
+
},
|
|
150
241
|
}),
|
|
151
|
-
collectionPath: (0, params_1.defineString)("COLLECTION_PATH", { default: "posts" }),
|
|
152
|
-
datasetId: (0, params_1.defineString)("DATASET_ID", { default: "firestore_export" }),
|
|
153
|
-
tableId: (0, params_1.defineString)("TABLE_ID", { default: "posts" }),
|
|
154
242
|
datasetLocation: (0, params_1.defineString)("DATASET_LOCATION", {
|
|
243
|
+
label: "BigQuery Dataset location",
|
|
244
|
+
description: "Where do you want to deploy the BigQuery dataset created for this extension? For help selecting a location, refer to the [location selection guide](https://cloud.google.com/bigquery/docs/locations).",
|
|
155
245
|
default: "us",
|
|
156
|
-
input: (0, params_1.select)(
|
|
246
|
+
input: (0, params_1.select)({
|
|
247
|
+
"Iowa (us-central1)": "us-central1",
|
|
248
|
+
"Las Vegas (us-west4)": "us-west4",
|
|
249
|
+
"Warsaw (europe-central2)": "europe-central2",
|
|
250
|
+
"Los Angeles (us-west2)": "us-west2",
|
|
251
|
+
"Montreal (northamerica-northeast1)": "northamerica-northeast1",
|
|
252
|
+
"Northern Virginia (us-east4)": "us-east4",
|
|
253
|
+
"Oregon (us-west1)": "us-west1",
|
|
254
|
+
"Salt Lake City (us-west3)": "us-west3",
|
|
255
|
+
"Sao Paulo (southamerica-east1)": "southamerica-east1",
|
|
256
|
+
"South Carolina (us-east1)": "us-east1",
|
|
257
|
+
"Belgium (europe-west1)": "europe-west1",
|
|
258
|
+
"Finland (europe-north1)": "europe-north1",
|
|
259
|
+
"Frankfurt (europe-west3)": "europe-west3",
|
|
260
|
+
"London (europe-west2)": "europe-west2",
|
|
261
|
+
"Netherlands (europe-west4)": "europe-west4",
|
|
262
|
+
"Zurich (europe-west6)": "europe-west6",
|
|
263
|
+
"Taiwan (asia-east1)": "asia-east1",
|
|
264
|
+
"Hong Kong (asia-east2)": "asia-east2",
|
|
265
|
+
"Jakarta (asia-southeast2)": "asia-southeast2",
|
|
266
|
+
"Mumbai (asia-south1)": "asia-south1",
|
|
267
|
+
"Singapore (asia-southeast1)": "asia-southeast1",
|
|
268
|
+
"Osaka (asia-northeast2)": "asia-northeast2",
|
|
269
|
+
"Seoul (asia-northeast3)": "asia-northeast3",
|
|
270
|
+
"Sydney (australia-southeast1)": "australia-southeast1",
|
|
271
|
+
"Tokyo (asia-northeast1)": "asia-northeast1",
|
|
272
|
+
"United States (multi-regional)": "us",
|
|
273
|
+
"Europe (multi-regional)": "eu",
|
|
274
|
+
"Johannesburg (africa-south1)": "africa-south1",
|
|
275
|
+
"Tel Aviv (me-west1)": "me-west1",
|
|
276
|
+
"Doha (me-central1)": "me-central1",
|
|
277
|
+
"Dammam (me-central2)": "me-central2",
|
|
278
|
+
"Zürich (europe-west6)": "europe-west6",
|
|
279
|
+
"Turin (europe-west12)": "europe-west12",
|
|
280
|
+
"Stockholm (europe-north2)": "europe-north2",
|
|
281
|
+
"Paris (europe-west9)": "europe-west9",
|
|
282
|
+
"Milan (europe-west8)": "europe-west8",
|
|
283
|
+
"Madrid (europe-southwest1)": "europe-southwest1",
|
|
284
|
+
"Berlin (europe-west10)": "europe-west10",
|
|
285
|
+
"Melbourne (australia-southeast2)": "australia-southeast2",
|
|
286
|
+
"Delhi (asia-south2)": "asia-south2",
|
|
287
|
+
"Toronto (northamerica-northeast2)": "northamerica-northeast2",
|
|
288
|
+
"Santiago (southamerica-west1)": "southamerica-west1",
|
|
289
|
+
"Mexico (northamerica-south1)": "northamerica-south1",
|
|
290
|
+
"Dallas (us-south1)": "us-south1",
|
|
291
|
+
"Columbus, Ohio (us-east5)": "us-east5",
|
|
292
|
+
}),
|
|
293
|
+
}),
|
|
294
|
+
backupCollection: (0, params_1.defineString)("BACKUP_COLLECTION", {
|
|
295
|
+
label: "Backup Collection Name",
|
|
296
|
+
description: "This (optional) parameter will allow you to specify a collection for which failed BigQuery updates will be written to.",
|
|
297
|
+
default: "",
|
|
298
|
+
}),
|
|
299
|
+
transformFunction: (0, params_1.defineString)("TRANSFORM_FUNCTION", {
|
|
300
|
+
label: "Transform function URL",
|
|
301
|
+
description: "Specify a function URL to call that will transform the payload that will be written to BigQuery. See the pre-install documentation for more details.",
|
|
302
|
+
default: "",
|
|
303
|
+
input: {
|
|
304
|
+
text: {
|
|
305
|
+
example: "https://us-west1-my-project-id.cloudfunctions.net/myTransformFunction",
|
|
306
|
+
},
|
|
307
|
+
},
|
|
157
308
|
}),
|
|
158
|
-
backupCollection: (0, params_1.defineString)("BACKUP_COLLECTION", { default: "" }),
|
|
159
|
-
transformFunction: (0, params_1.defineString)("TRANSFORM_FUNCTION", { default: "" }),
|
|
160
309
|
tablePartitioning: (0, params_1.defineString)("TABLE_PARTITIONING", {
|
|
310
|
+
label: "BigQuery SQL table Time Partitioning option type",
|
|
311
|
+
description: "This parameter will allow you to partition the BigQuery table and BigQuery view created by the extension based on data ingestion time. You may select the granularity of partitioning based upon one of: HOUR, DAY, MONTH, YEAR. This will generate one partition per day, hour, month or year, respectively.",
|
|
161
312
|
default: "NONE",
|
|
162
|
-
input: (0, params_1.select)(
|
|
313
|
+
input: (0, params_1.select)({
|
|
314
|
+
hour: "HOUR",
|
|
315
|
+
day: "DAY",
|
|
316
|
+
month: "MONTH",
|
|
317
|
+
year: "YEAR",
|
|
318
|
+
none: "NONE",
|
|
319
|
+
}),
|
|
163
320
|
}),
|
|
164
321
|
timePartitioningField: (0, params_1.defineString)("TIME_PARTITIONING_FIELD", {
|
|
322
|
+
label: "BigQuery Time Partitioning column name",
|
|
323
|
+
description: "BigQuery table column/schema field name for TimePartitioning. You can choose schema available as `timestamp` OR a new custom defined column that will be assigned to the selected Firestore Document field below. Defaults to pseudo column _PARTITIONTIME if unspecified. Cannot be changed if Table is already partitioned.",
|
|
165
324
|
default: "",
|
|
166
325
|
}),
|
|
167
326
|
timePartitioningFieldType: (0, params_1.defineString)("TIME_PARTITIONING_FIELD_TYPE", {
|
|
327
|
+
label: "BigQuery SQL Time Partitioning table schema field(column) type",
|
|
328
|
+
description: "Parameter for BigQuery SQL schema field type for the selected Time Partitioning Firestore Document field option. Cannot be changed if Table is already partitioned.",
|
|
168
329
|
default: "omit",
|
|
169
330
|
input: (0, params_1.select)([...TIME_PARTITIONING_FIELD_TYPE_OPTIONS]),
|
|
170
331
|
}),
|
|
171
|
-
timePartitioningFirestoreField: (0, params_1.defineString)("TIME_PARTITIONING_FIRESTORE_FIELD", {
|
|
172
|
-
|
|
332
|
+
timePartitioningFirestoreField: (0, params_1.defineString)("TIME_PARTITIONING_FIRESTORE_FIELD", {
|
|
333
|
+
label: "Firestore Document field name for BigQuery SQL Time Partitioning field option",
|
|
334
|
+
description: "This parameter will allow you to partition the BigQuery table created by the extension based on the selected Firestore Document field. The Firestore Document field value must be a top-level TIMESTAMP, DATETIME, DATE field BigQuery string format or Firestore timestamp(will be converted to BigQuery TIMESTAMP). Cannot be changed if Table is already partitioned.\n example: `postDate`(Ensure that the Firestore-BigQuery export extension\ncreates the dataset and table before initiating any backfill scripts.\n This step is crucial for the partitioning to function correctly. It is\nessential for the script to insert data into an already partitioned table.)",
|
|
335
|
+
default: "",
|
|
336
|
+
}),
|
|
337
|
+
clustering: (0, params_1.defineString)("CLUSTERING", {
|
|
338
|
+
label: "BigQuery SQL table clustering",
|
|
339
|
+
description: "This parameter allows you to set up clustering for the BigQuery table created by the extension. Specify up to 4 comma-separated fields (for example: `data,document_id,timestamp` - no whitespaces). The order of the specified columns determines the sort order of the data. \nNote: 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.\nAvailable schema extensions table fields for clustering include: `document_id, document_name, timestamp, event_id, operation, data`.",
|
|
340
|
+
default: "",
|
|
341
|
+
input: {
|
|
342
|
+
text: {
|
|
343
|
+
example: "data,document_id,timestamp",
|
|
344
|
+
// Extension regex, with an empty branch added: the param is optional.
|
|
345
|
+
validationRegex: /^(?:[^,\s]+(?:,[^,\s]+){0,3}|)$/,
|
|
346
|
+
validationErrorMessage: "No whitespaces. Max 4 fields. e.g. `data,timestamp,event_id,operation`",
|
|
347
|
+
},
|
|
348
|
+
},
|
|
349
|
+
}),
|
|
173
350
|
wildcardIds: (0, params_1.defineBoolean)("WILDCARD_IDS", {
|
|
351
|
+
label: "Enable Wildcard Column field with Parent Firestore Document IDs",
|
|
352
|
+
description: "If enabled, creates a column containing a JSON object of all wildcard ids from a documents path.",
|
|
174
353
|
default: false,
|
|
175
354
|
}),
|
|
176
355
|
useNewSnapshotQuerySyntax: (0, params_1.defineBoolean)("USE_NEW_SNAPSHOT_QUERY_SYNTAX", {
|
|
356
|
+
label: "Use new query syntax for snapshots",
|
|
357
|
+
description: "If enabled, snapshots will be generated with the new query syntax, which should be more performant, and avoid potential resource limitations.",
|
|
177
358
|
default: false,
|
|
178
359
|
}),
|
|
179
360
|
excludeOldData: (0, params_1.defineBoolean)("EXCLUDE_OLD_DATA", {
|
|
361
|
+
label: "Exclude old data payloads",
|
|
362
|
+
description: "If enabled, table rows will never contain old data (document snapshot before the Firestore onDocumentUpdate event: `change.before.data()`). The reduction in data should be more performant, and avoid potential resource limitations.",
|
|
180
363
|
default: false,
|
|
181
364
|
}),
|
|
182
365
|
viewType: (0, params_1.defineString)("VIEW_TYPE", {
|
|
366
|
+
label: "View Type",
|
|
367
|
+
description: "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.",
|
|
183
368
|
default: "view",
|
|
184
|
-
input: (0, params_1.select)(
|
|
369
|
+
input: (0, params_1.select)({
|
|
370
|
+
View: "view",
|
|
371
|
+
"Materialized View (Incremental)": "materialized_incremental",
|
|
372
|
+
"Materialized View (Non-incremental)": "materialized_non_incremental",
|
|
373
|
+
}),
|
|
374
|
+
}),
|
|
375
|
+
maxStaleness: (0, params_1.defineString)("MAX_STALENESS", {
|
|
376
|
+
label: "Maximum Staleness Duration",
|
|
377
|
+
description: "For materialized views only: Specifies the maximum staleness acceptable for the materialized view. Should be specified as an INTERVAL value following BigQuery SQL syntax. This parameter will only take effect if View Type is set to a materialized view option.",
|
|
378
|
+
default: "",
|
|
379
|
+
input: { text: { example: 'INTERVAL "8:0:0" HOUR TO SECOND' } },
|
|
185
380
|
}),
|
|
186
|
-
maxStaleness: (0, params_1.defineString)("MAX_STALENESS", { default: "" }),
|
|
187
381
|
refreshIntervalMinutes: (0, params_1.defineString)("REFRESH_INTERVAL_MINUTES", {
|
|
382
|
+
label: "Refresh Interval (Minutes)",
|
|
383
|
+
description: "For materialized views only: Specifies how often the materialized view should be refreshed, in minutes. This parameter will only take effect if View Type is set to a materialized view option.",
|
|
188
384
|
default: "",
|
|
385
|
+
input: {
|
|
386
|
+
text: {
|
|
387
|
+
example: "60",
|
|
388
|
+
// Extension regex, with an empty branch added: the param is optional.
|
|
389
|
+
validationRegex: /^(?:[1-9][0-9]*|)$/,
|
|
390
|
+
validationErrorMessage: "Must be a positive integer",
|
|
391
|
+
},
|
|
392
|
+
},
|
|
393
|
+
}),
|
|
394
|
+
kmsKeyName: (0, params_1.defineString)("KMS_KEY_NAME", {
|
|
395
|
+
label: "Cloud KMS key name",
|
|
396
|
+
description: "Instead of Google managing the key encryption keys that protect your data, you control and manage key encryption keys in Cloud KMS. If this parameter is set, the extension will specify the KMS key name when creating the BQ table. See the PREINSTALL.md for more details.",
|
|
397
|
+
default: "",
|
|
398
|
+
input: {
|
|
399
|
+
text: {
|
|
400
|
+
// Extension regex (unanchored, as upstream), with an empty branch
|
|
401
|
+
// added: the param is optional.
|
|
402
|
+
validationRegex: /projects\/([^\/]+)\/locations\/([^\/]+)\/keyRings\/([^\/]+)\/cryptoKeys\/([^\/]+)|^$/,
|
|
403
|
+
validationErrorMessage: "The key name must be of the format 'projects/PROJECT_NAME/locations/KEY_RING_LOCATION/keyRings/KEY_RING_ID/cryptoKeys/KEY_ID'.",
|
|
404
|
+
},
|
|
405
|
+
},
|
|
189
406
|
}),
|
|
190
|
-
kmsKeyName: (0, params_1.defineString)("KMS_KEY_NAME", { default: "" }),
|
|
191
407
|
logLevel: (0, params_1.defineString)("LOG_LEVEL", {
|
|
408
|
+
label: "Log level",
|
|
409
|
+
description: "The log level for the extension. The log level controls the verbosity of the extension's logs. The available log levels are: debug, info, warn, and error. To reduce the volume of logs, use a log level of warn or error.",
|
|
192
410
|
default: "info",
|
|
193
|
-
input: (0, params_1.select)(
|
|
411
|
+
input: (0, params_1.select)({
|
|
412
|
+
Debug: "debug",
|
|
413
|
+
Info: "info",
|
|
414
|
+
Warn: "warn",
|
|
415
|
+
Error: "error",
|
|
416
|
+
Silent: "silent",
|
|
417
|
+
}),
|
|
194
418
|
}),
|
|
195
419
|
};
|
|
196
420
|
exports.CONFIG_EXPRESSIONS = {
|
package/lib/config.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"config.js","sourceRoot":"","sources":["../src/config.ts"],"names":[],"mappings":"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"}
|