✨feat(source-s3): Increase individual file size limit to 1.5 GB (#49824)
This commit is contained in:
@@ -10,7 +10,7 @@ data:
|
||||
connectorSubtype: file
|
||||
connectorType: source
|
||||
definitionId: 69589781-7828-43c5-9f63-8925b1c1ccc2
|
||||
dockerImageTag: 4.10.2
|
||||
dockerImageTag: 4.11.0
|
||||
dockerRepository: airbyte/source-s3
|
||||
documentationUrl: https://docs.airbyte.com/integrations/sources/s3
|
||||
githubIssueLabel: source-s3
|
||||
|
||||
@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.poetry]
|
||||
version = "4.10.2"
|
||||
version = "4.11.0"
|
||||
name = "source-s3"
|
||||
description = "Source implementation for S3."
|
||||
authors = [ "Airbyte <contact@airbyte.io>",]
|
||||
|
||||
@@ -31,7 +31,7 @@ AWS_EXTERNAL_ID = getenv("AWS_ASSUME_ROLE_EXTERNAL_ID")
|
||||
|
||||
|
||||
class SourceS3StreamReader(AbstractFileBasedStreamReader):
|
||||
FILE_SIZE_LIMIT = 1_000_000_000
|
||||
FILE_SIZE_LIMIT = 1_500_000_000
|
||||
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
@@ -361,6 +361,7 @@ This connector utilizes the open source [Unstructured](https://unstructured-io.g
|
||||
|
||||
| Version | Date | Pull Request | Subject |
|
||||
|:--------|:-----------|:----------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------|
|
||||
| 4.11.0 | 2024-12-17 | [49824](https://github.com/airbytehq/airbyte/pull/49824) | Increase file size limit to 1.5GB |
|
||||
| 4.10.2 | 2024-11-25 | [48613](https://github.com/airbytehq/airbyte/pull/48613) | Starting with this version, the Docker image is now rootless. Please note that this and future versions will not be compatible with Airbyte versions earlier than 0.64 |
|
||||
| 4.10.1 | 2024-11-12 | [48346](https://github.com/airbytehq/airbyte/pull/48346) | Implement file-transfer capabilities |
|
||||
| 4.9.2 | 2024-11-04 | [48259](https://github.com/airbytehq/airbyte/pull/48259) | Update dependencies |
|
||||
|
||||
Reference in New Issue
Block a user