destination-bigquery: Increase staging file upload timeout to 5 minutes (#31185)
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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));
|
||||
|
||||
@@ -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 |
|
||||
|
||||
Reference in New Issue
Block a user