Skip to content

Commit

Permalink
Merge pull request pentaho#9020 from bcostahitachivantara/PDI-19732
Browse files Browse the repository at this point in the history
[PDI-19732] - Transformation connecting to S3 fails when using URL s3n://s3n/{s3_bucket_name}
  • Loading branch information
smmribeiro authored Sep 19, 2023
2 parents 9d75f73 + ba3f4a0 commit 828468b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/org/pentaho/di/core/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -1413,6 +1413,10 @@ public static boolean checkXlsxZipBomb() {
*/
public static final String KETTLE_USE_AWS_DEFAULT_CREDENTIALS = "KETTLE_USE_AWS_DEFAULT_CREDENTIALS";

/**
* This environment variable allows to enable s3 legacy URI. Please check: PDI-19732.
*/
public static final String KETTLE_COMPATIBILITY_ALLOW_S3_LEGACY_URI = "KETTLE_COMPATIBILITY_ALLOW_S3_LEGACY_URI";
/**
* <p>This environment variable is used by streaming consumer steps to limit the total of concurrent batches across transformations.</p>
*/
Expand Down
6 changes: 6 additions & 0 deletions engine/src/main/resources/kettle-variables.xml
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@
<default-value>17</default-value>
</kettle-variable>

<kettle-variable>
<description>This environment variable allows to enable s3 legacy URI. Please check: PDI-19732.</description>
<variable>KETTLE_COMPATIBILITY_ALLOW_S3_LEGACY_URI</variable>
<default-value>N</default-value>
</kettle-variable>

<kettle-variable>
<description>This environment variable is used by streaming consumer steps to limit the total of concurrent batches across transformations. Leave 0 for unlimited.</description>
<variable>SHARED_STREAMING_BATCH_POOL_SIZE</variable>
Expand Down

0 comments on commit 828468b

Please sign in to comment.