>From Michael Blow <mb...@apache.org>: Michael Blow has uploaded this change for review. ( https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/20143 )
Change subject: [NO ISSUE][*DB][STO] Support MinIO S3 compatible cloud storage ...................................................................... [NO ISSUE][*DB][STO] Support MinIO S3 compatible cloud storage MinIO does not accept lists on a . directory. Fix the GLOBAL_TXN_DIR_NAME to use instead of . to avoid this incompatibility Ext-ref: MB-67814 Change-Id: I8e6ffb62ef1c412e263388b8dabb9f2d3bb66db5 --- M asterixdb/asterix-common/src/main/java/org/apache/asterix/common/utils/StorageConstants.java 1 file changed, 15 insertions(+), 1 deletion(-) git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/43/20143/1 diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/utils/StorageConstants.java b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/utils/StorageConstants.java index 627f170..0f18536 100644 --- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/utils/StorageConstants.java +++ b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/utils/StorageConstants.java @@ -33,7 +33,7 @@ public class StorageConstants { public static final String METADATA_TXN_NOWAL_DIR_NAME = "mtd-txn-logs"; - public static final String GLOBAL_TXN_DIR_NAME = "."; + public static final String GLOBAL_TXN_DIR_NAME = ""; public static final String STORAGE_ROOT_DIR_NAME = "storage"; public static final String APPLICATION_ROOT_DIR_NAME = APP_DIR_NAME; public static final String INGESTION_LOGS_DIR_NAME = "ingestion_logs"; -- To view, visit https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/20143 To unsubscribe, or for help writing mail filters, visit https://asterix-gerrit.ics.uci.edu/settings Gerrit-Project: asterixdb Gerrit-Branch: phoenix Gerrit-Change-Id: I8e6ffb62ef1c412e263388b8dabb9f2d3bb66db5 Gerrit-Change-Number: 20143 Gerrit-PatchSet: 1 Gerrit-Owner: Michael Blow <mb...@apache.org> Gerrit-MessageType: newchange