-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: configurable chunk size #117
feat: configurable chunk size #117
Conversation
Change chuck size from bytes to mb Add ReadMe
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We are always happy to welcome new contributors ❤️ To make things easier for everyone, please make sure to follow our contribution guidelines, check if you have already signed the ECA, and relate this pull request to an existing issue or discussion.
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #117 +/- ##
==========================================
- Coverage 80.29% 80.16% -0.13%
==========================================
Files 19 19
Lines 477 484 +7
Branches 15 17 +2
==========================================
+ Hits 383 388 +5
- Misses 92 93 +1
- Partials 2 3 +1
☔ View full report in Codecov by Sentry. |
...ne-aws-s3/src/main/java/org/eclipse/edc/connector/dataplane/aws/s3/DataPlaneS3Extension.java
Outdated
Show resolved
Hide resolved
...e/data-plane-aws-s3/src/main/java/org/eclipse/edc/connector/dataplane/aws/s3/S3DataSink.java
Outdated
Show resolved
Hide resolved
…ze in initialization of s3-dataplane.
What this PR changes/adds
Chunk size can be configured via the EDC configuration.
Why it does that
Currently, the chunk size in the data sink is hard coded to 500MB as CHUNK_SIZE_IN_BYTES. This could limit users in particular environments with constrained memory resources.
Linked Issue(s)
Closes #112