Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
public class S3CoreExtension implements ServiceExtension {

public static final String NAME = "S3";
@Setting(value = "The key of the secret where the AWS Access Key Id is stored")
@Setting(description = "The key of the secret where the AWS Access Key Id is stored")
private static final String AWS_ACCESS_KEY = "edc.aws.access.key";
@Setting(value = "The key of the secret where the AWS Secret Access Key is stored")
@Setting(description = "The key of the secret where the AWS Secret Access Key is stored")
private static final String AWS_SECRET_KEY = "edc.aws.secret.access.key";
@Setting(value = "If valued, the AWS clients will point to the specified endpoint")
@Setting(description = "If valued, the AWS clients will point to the specified endpoint")
private static final String AWS_ENDPOINT_OVERRIDE = "edc.aws.endpoint.override";
@Setting(value = "The size of the thread pool used for the async clients")
@Setting(description = "The size of the thread pool used for the async clients")
private static final String AWS_ASYNC_CLIENT_THREAD_POOL_SIZE = "edc.aws.client.async.thread-pool-size";
@Inject
private Vault vault;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class DataPlaneS3Extension implements ServiceExtension {

private static final int DEFAULT_CHUNK_SIZE_IN_MB = 500; // 500MB chunk size

@Setting(value = "The maximum chunk of stream to be read, in mb", defaultValue = DEFAULT_CHUNK_SIZE_IN_MB + "", type = "int")
@Setting(description = "The maximum chunk of stream to be read, in mb", defaultValue = DEFAULT_CHUNK_SIZE_IN_MB + "")
private static final String EDC_DATAPLANE_S3_SINK_CHUNK_SIZE_MB = "edc.dataplane.aws.sink.chunk.size.mb";

@Inject
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ aws-s3 = { module = "software.amazon.awssdk:s3", version.ref = "aws" }
aws-secretsmanager = { module = "software.amazon.awssdk:secretsmanager", version.ref = "aws" }

[plugins]
edc-build = { id = "org.eclipse.edc.edc-build", version = "1.2.0" }
edc-build = { id = "org.eclipse.edc.edc-build", version = "1.4.0" }
shadow = { id = "com.gradleup.shadow", version = "9.4.1" }
Loading