1
0
mirror of synced 2025-12-25 02:09:19 -05:00

destination-bigquery: Increase staging file upload timeout to 5 minutes (#31185)

This commit is contained in:
Evan Tahler
2023-10-09 10:28:48 -07:00
committed by GitHub
parent 7284b5a23e
commit f4f97e3e65
4 changed files with 5 additions and 4 deletions

View File

@@ -25,5 +25,5 @@ ENV AIRBYTE_NORMALIZATION_INTEGRATION bigquery
COPY --from=build /airbyte /airbyte
LABEL io.airbyte.version=2.0.24
LABEL io.airbyte.version=2.0.25
LABEL io.airbyte.name=airbyte/destination-bigquery

View File

@@ -2,7 +2,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: 22f6c74f-5699-40ff-833c-4a879ea40133
dockerImageTag: 2.0.24
dockerImageTag: 2.0.25
dockerRepository: airbyte/destination-bigquery
githubIssueLabel: destination-bigquery
icon: bigquery.svg

View File

@@ -140,7 +140,7 @@ public class BigQueryGcsOperations implements BigQueryStagingOperations {
.setFormatOptions(FormatOptions.csv())
.setSchema(tableSchema)
.setWriteDisposition(WriteDisposition.WRITE_APPEND)
.setJobTimeoutMs(180000L)
.setJobTimeoutMs(300000L) // 5min
.build();
final Job loadJob = this.bigQuery.create(JobInfo.of(configuration));

View File

@@ -125,7 +125,8 @@ Now that you have set up the BigQuery destination connector, check out the follo
## Changelog
| Version | Date | Pull Request | Subject |
|:--------|:-----------|:-----------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| :------ | :--------- | :--------------------------------------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 2.0.25 | 2023-10-09 | [\#31185](https://github.com/airbytehq/airbyte/pull/31185) | Increase staging file upload timeout to 5 minutes |
| 2.0.24 | 2023-10-06 | [\#31139](https://github.com/airbytehq/airbyte/pull/31139) | Bump CDK version |
| 2.0.23 | 2023-10-06 | [\#31129](https://github.com/airbytehq/airbyte/pull/31129) | Reduce async buffer size |
| 2.0.22 | 2023-10-04 | [\#31082](https://github.com/airbytehq/airbyte/pull/31082) | Revert null PK checks |