Skip to content

Commit

Permalink
destination-bigquery: Increase staging file upload timeout to 5 min…
Browse files Browse the repository at this point in the history
…utes (#31185)
  • Loading branch information
evantahler authored Oct 9, 2023
1 parent 7284b5a commit f4f97e3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void copyIntoTableFromStage(final String datasetId,
.setFormatOptions(FormatOptions.csv())
.setSchema(tableSchema)
.setWriteDisposition(WriteDisposition.WRITE_APPEND)
.setJobTimeoutMs(180000L)
.setJobTimeoutMs(300000L) // 5min
.build();

final Job loadJob = this.bigQuery.create(JobInfo.of(configuration));
Expand Down
3 changes: 2 additions & 1 deletion docs/integrations/destinations/bigquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down

0 comments on commit f4f97e3

Please sign in to comment.