Skip to content

Commit 0187efd

Browse files
authored
Destination BigQuery: update description for some fields (#9573)
* update desrcription for bq destination setup * bump version
1 parent 0815100 commit 0187efd

File tree

9 files changed

+29
-20
lines changed

9 files changed

+29
-20
lines changed

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/079d5540-f236-4294-ba7c-ade8fd918496.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"destinationDefinitionId": "079d5540-f236-4294-ba7c-ade8fd918496",
33
"name": "BigQuery (denormalized typed struct)",
44
"dockerRepository": "airbyte/destination-bigquery-denormalized",
5-
"dockerImageTag": "0.2.4",
5+
"dockerImageTag": "0.2.5",
66
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/bigquery",
77
"icon": "bigquery.svg"
88
}

airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/22f6c74f-5699-40ff-833c-4a879ea40133.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"destinationDefinitionId": "22f6c74f-5699-40ff-833c-4a879ea40133",
33
"name": "BigQuery",
44
"dockerRepository": "airbyte/destination-bigquery",
5-
"dockerImageTag": "0.6.4",
5+
"dockerImageTag": "0.6.5",
66
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/bigquery",
77
"icon": "bigquery.svg"
88
}

airbyte-config/init/src/main/resources/seed/destination_definitions.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313
- name: BigQuery
1414
destinationDefinitionId: 22f6c74f-5699-40ff-833c-4a879ea40133
1515
dockerRepository: airbyte/destination-bigquery
16-
dockerImageTag: 0.6.4
16+
dockerImageTag: 0.6.5
1717
documentationUrl: https://docs.airbyte.io/integrations/destinations/bigquery
1818
icon: bigquery.svg
1919
- name: BigQuery (denormalized typed struct)
2020
destinationDefinitionId: 079d5540-f236-4294-ba7c-ade8fd918496
2121
dockerRepository: airbyte/destination-bigquery-denormalized
22-
dockerImageTag: 0.2.4
22+
dockerImageTag: 0.2.5
2323
documentationUrl: https://docs.airbyte.io/integrations/destinations/bigquery
2424
icon: bigquery.svg
2525
- name: Cassandra

airbyte-config/init/src/main/resources/seed/destination_specs.yaml

+18-11
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
supportsDBT: false
189189
supported_destination_sync_modes:
190190
- "append"
191-
- dockerImage: "airbyte/destination-bigquery:0.6.4"
191+
- dockerImage: "airbyte/destination-bigquery:0.6.5"
192192
spec:
193193
documentationUrl: "https://docs.airbyte.io/integrations/destinations/bigquery"
194194
connectionSpecification:
@@ -203,10 +203,12 @@
203203
big_query_client_buffer_size_mb:
204204
title: "Google BigQuery client chunk size"
205205
description: "Google BigQuery client's chunk(buffer) size (MIN=1, MAX =\
206-
\ 15) for each table. The default 15MiB value is used if not set explicitly.\
207-
\ It's recommended to decrease value for big data sets migration for less\
208-
\ HEAP memory consumption and avoiding crashes. For more details refer\
209-
\ to https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html"
206+
\ 15) for each table. The size that will be written by a single RPC. Written\
207+
\ data will be buffered and only flushed upon reaching this size or closing\
208+
\ the channel. The default 15MiB value is used if not set explicitly.\
209+
\ It's recommended to decrease value for big data sets migration for\
210+
\ less HEAP memory consumption and avoiding crashes. For more details\
211+
\ refer to https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html"
210212
type: "integer"
211213
minimum: 1
212214
maximum: 15
@@ -271,9 +273,12 @@
271273
airbyte_secret: true
272274
transformation_priority:
273275
type: "string"
274-
description: "When running custom transformations or Basic normalization,\
275-
\ running queries on interactive mode can hit BQ limits, choosing batch\
276-
\ will solve those limits."
276+
description: "Interactive run type means that the query is executed as soon\
277+
\ as possible, and these queries count towards concurrent rate limit and\
278+
\ daily limit. Batch queries are queued and started as soon as idle resources\
279+
\ are available in the BigQuery shared resource pool, which usually occurs\
280+
\ within a few minutes. Batch queries don’t count towards your concurrent\
281+
\ rate limit."
277282
title: "Transformation Query Run Type"
278283
default: "interactive"
279284
enum:
@@ -378,7 +383,7 @@
378383
- "overwrite"
379384
- "append"
380385
- "append_dedup"
381-
- dockerImage: "airbyte/destination-bigquery-denormalized:0.2.4"
386+
- dockerImage: "airbyte/destination-bigquery-denormalized:0.2.5"
382387
spec:
383388
documentationUrl: "https://docs.airbyte.io/integrations/destinations/bigquery"
384389
connectionSpecification:
@@ -393,9 +398,11 @@
393398
big_query_client_buffer_size_mb:
394399
title: "Google BigQuery client chunk size"
395400
description: "Google BigQuery client's chunk (buffer) size (MIN = 1, MAX\
396-
\ = 15) for each table. It defaults to 15MiB. Smaller chunk size means\
401+
\ = 15) for each table. The size that will be written by a single RPC.\
402+
\ Written data will be buffered and only flushed upon reaching this size\
403+
\ or closing the channel. It defaults to 15MiB. Smaller chunk size means\
397404
\ less memory consumption, and is recommended for big data sets. For more\
398-
\ details refer to the documentation <a href=\"https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html\"\
405+
\ details refer to the documentation <a href=\"https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html\"\
399406
>here</a>"
400407
type: "integer"
401408
minimum: 1

airbyte-integrations/connectors/destination-bigquery-denormalized/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-bigquery-denormalized
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.2.4
19+
LABEL io.airbyte.version=0.2.5
2020
LABEL io.airbyte.name=airbyte/destination-bigquery-denormalized

airbyte-integrations/connectors/destination-bigquery-denormalized/src/main/resources/spec.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"properties": {
1414
"big_query_client_buffer_size_mb": {
1515
"title": "Google BigQuery client chunk size",
16-
"description": "Google BigQuery client's chunk (buffer) size (MIN = 1, MAX = 15) for each table. It defaults to 15MiB. Smaller chunk size means less memory consumption, and is recommended for big data sets. For more details refer to the documentation <a href=\"https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html\">here</a>",
16+
"description": "Google BigQuery client's chunk (buffer) size (MIN = 1, MAX = 15) for each table. The size that will be written by a single RPC. Written data will be buffered and only flushed upon reaching this size or closing the channel. It defaults to 15MiB. Smaller chunk size means less memory consumption, and is recommended for big data sets. For more details refer to the documentation <a href=\"https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html\">here</a>",
1717
"type": "integer",
1818
"minimum": 1,
1919
"maximum": 15,

airbyte-integrations/connectors/destination-bigquery/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ ENV APPLICATION destination-bigquery
1616

1717
COPY --from=build /airbyte /airbyte
1818

19-
LABEL io.airbyte.version=0.6.4
19+
LABEL io.airbyte.version=0.6.5
2020
LABEL io.airbyte.name=airbyte/destination-bigquery

airbyte-integrations/connectors/destination-bigquery/src/main/resources/spec.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"properties": {
1414
"big_query_client_buffer_size_mb": {
1515
"title": "Google BigQuery client chunk size",
16-
"description": "Google BigQuery client's chunk(buffer) size (MIN=1, MAX = 15) for each table. The default 15MiB value is used if not set explicitly. It's recommended to decrease value for big data sets migration for less HEAP memory consumption and avoiding crashes. For more details refer to https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html",
16+
"description": "Google BigQuery client's chunk(buffer) size (MIN=1, MAX = 15) for each table. The size that will be written by a single RPC. Written data will be buffered and only flushed upon reaching this size or closing the channel. The default 15MiB value is used if not set explicitly. It's recommended to decrease value for big data sets migration for less HEAP memory consumption and avoiding crashes. For more details refer to https://googleapis.dev/python/bigquery/latest/generated/google.cloud.bigquery.client.Client.html",
1717
"type": "integer",
1818
"minimum": 1,
1919
"maximum": 15,
@@ -77,7 +77,7 @@
7777
},
7878
"transformation_priority": {
7979
"type": "string",
80-
"description": "When running custom transformations or Basic normalization, running queries on interactive mode can hit BQ limits, choosing batch will solve those limits.",
80+
"description": "Interactive run type means that the query is executed as soon as possible, and these queries count towards concurrent rate limit and daily limit. Batch queries are queued and started as soon as idle resources are available in the BigQuery shared resource pool, which usually occurs within a few minutes. Batch queries don’t count towards your concurrent rate limit.",
8181
"title": "Transformation Query Run Type",
8282
"default": "interactive",
8383
"enum": ["interactive", "batch"]

docs/integrations/destinations/bigquery.md

+2
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ Therefore, Airbyte BigQuery destination will convert any invalid characters into
153153
154154
| Version | Date | Pull Request | Subject |
155155
|:--------| :--- | :--- | :--- |
156+
| 0.6.5 | 2022-01-18 | [\#9573](https://github.com/airbytehq/airbyte/pull/9573) | BigQuery Destination : update description for some input fields |
156157
| 0.6.4 | 2022-01-17 | [\#8383](https://github.com/airbytehq/airbyte/issues/8383) | Support dataset-id prefixed by project-id |
157158
| 0.6.3 | 2022-01-12 | [\#9415](https://github.com/airbytehq/airbyte/pull/9415) | BigQuery Destination : Fix GCS processing of Facebook data |
158159
| 0.6.2 | 2022-01-10 | [\#9121](https://github.com/airbytehq/airbyte/pull/9121) | Fixed check method for GCS mode to verify if all roles assigned to user |
@@ -173,6 +174,7 @@ Therefore, Airbyte BigQuery destination will convert any invalid characters into
173174
174175
| Version | Date | Pull Request | Subject |
175176
|:--------|:-----------|:-----------------------------------------------------------| :--- |
177+
| 0.2.5 | 2022-01-18 | [\#9573](https://github.com/airbytehq/airbyte/pull/9573) | BigQuery Destination : update description for some input fields |
176178
| 0.2.4 | 2022-01-17 | [\#8383](https://github.com/airbytehq/airbyte/issues/8383) | BigQuery/BiqQuery denorm Destinations : Support dataset-id prefixed by project-id |
177179
| 0.2.3 | 2022-01-12 | [\#9415](https://github.com/airbytehq/airbyte/pull/9415) | BigQuery Destination : Fix GCS processing of Facebook data |
178180
| 0.2.2 | 2021-12-22 | [\#9039](https://github.com/airbytehq/airbyte/pull/9039) | Added part_size configuration to UI for GCS staging |

0 commit comments

Comments
 (0)