1
0
mirror of synced 2025-12-19 18:14:56 -05:00

Destination S3-V2: Rc 9 with bug fixes (#51048)

This commit is contained in:
Johnny Schmidt
2025-01-12 12:02:56 -08:00
committed by GitHub
parent 65b4d5754c
commit ba92625c6b
5 changed files with 10 additions and 5 deletions

View File

@@ -1,2 +1,2 @@
testExecutionConcurrency=-1
JunitMethodExecutionTimeout=35 m
JunitMethodExecutionTimeout=30 m

View File

@@ -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

View File

@@ -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,

View File

@@ -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

View File

@@ -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 |