Skip to content

Commit

Permalink
Destination S3-V2: Rc 9 with bug fixes (#51048)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny-schmidt authored Jan 12, 2025
1 parent 65b4d57 commit ba92625
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
testExecutionConcurrency=-1
JunitMethodExecutionTimeout=35 m
JunitMethodExecutionTimeout=30 m
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ data:
connectorSubtype: file
connectorType: destination
definitionId: 4816b78f-1489-44c1-9060-4b19d5fa9362
dockerImageTag: 1.5.0-rc.8
dockerImageTag: 1.5.0-rc.9
dockerRepository: airbyte/destination-s3
githubIssueLabel: destination-s3
icon: s3.svg
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import org.junit.jupiter.api.Disabled
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.Timeout

@Timeout(35, unit = TimeUnit.MINUTES)
@Timeout(30, unit = TimeUnit.MINUTES)
abstract class S3V2WriteTest(
path: String,
expectedRecordMapper: ExpectedRecordMapper,
Expand Down
6 changes: 5 additions & 1 deletion buildSrc/src/main/groovy/airbyte-bulk-connector.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,11 @@ class AirbyteBulkConnectorPlugin implements Plugin<Project> {
environment "AIRBYTE_CONNECTOR_INTEGRATION_TEST_RUNNER", "docker"

jvmArgs = project.test.jvmArgs
systemProperties = project.test.systemProperties
systemProperties = project.test.systemProperties + [
'junit.jupiter.execution.parallel.enabled': 'true',
'junit.jupiter.execution.parallel.config.strategy': 'fixed',
'junit.jupiter.execution.parallel.config.fixed.parallelism': Math.max((Runtime.runtime.availableProcessors() / 2).toInteger(), 1).toString()
]
maxParallelForks = project.test.maxParallelForks
maxHeapSize = project.test.maxHeapSize

Expand Down
3 changes: 2 additions & 1 deletion docs/integrations/destinations/s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,8 @@ To see connector limitations, or troubleshoot your S3 connector, see more [in ou

| Version | Date | Pull Request | Subject |
|:-----------|:-----------|:-----------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------|
| 1.5.0-rc.8 | 2025-01-7 | [50960](https://github.com/airbytehq/airbyte/pull/50960) | Use `airbyte/java-connector-base` base image. |
| 1.5.0-rc.9 | 2025-01-10 | [50960](https://github.com/airbytehq/airbyte/pull/50960) | Bug fixes: variables respected in bucket path; sync does not hang on streams w/o state |
| 1.5.0-rc.8 | 2025-01-08 | [50960](https://github.com/airbytehq/airbyte/pull/50960) | Use `airbyte/java-connector-base` base image. |
| 1.5.0-rc.7 | 2025-01-09 | [51021](https://github.com/airbytehq/airbyte/pull/51021) | Bug fix: Use CRT HTTP client to avoid OkHttp idle connection handling errors |
| 1.5.0-rc.6 | 2025-01-06 | [50954](https://github.com/airbytehq/airbyte/pull/50954) | Bug fix: transient failure due to bug in generation tracker |
| 1.5.0-rc.5 | 2025-01-06 | [50954](https://github.com/airbytehq/airbyte/pull/50954) | Bug fix: transient failure due to bug in filename clash prevention |
Expand Down

0 comments on commit ba92625

Please sign in to comment.