[ASTERIXDB-3387][STO] Fix inactive resource time threshold
- user model changes: no
- storage format changes: no
- interface changes: no
Details:
The default value of CLOUD_STORAGE_INDEX_INACTIVE_DURATION_THRESHOLD
should be 360 minites (6 hours) instead of 6 minutes.
Change-Id: Ic53bb6dc8f3cbbd642fc1711327f2bae806a8a5f
Reviewed-on: https://asterix-gerrit.ics.uci.edu/c/asterixdb/+/18294
Integration-Tests: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
Integration-Tests: Murtadha Hubail <mhubail@apache.org>
Reviewed-by: Murtadha Hubail <mhubail@apache.org>
Tested-by: Murtadha Hubail <mhubail@apache.org>
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm
index 4c06994..597b9ba 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1/cluster_state_1.1.regexadm
@@ -19,7 +19,7 @@
"cloud.storage.debug.sweep.threshold.size" : 1073741824,
"cloud.storage.disk.monitor.interval" : 60,
"cloud.storage.endpoint" : "",
- "cloud.storage.index.inactive.duration.threshold" : 6,
+ "cloud.storage.index.inactive.duration.threshold" : 360,
"cloud.storage.prefix" : "",
"cloud.storage.region" : "",
"cloud.storage.scheme" : "",
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_full/cluster_state_1_full.1.regexadm b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_full/cluster_state_1_full.1.regexadm
index 1d64ade..911732f 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_full/cluster_state_1_full.1.regexadm
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_full/cluster_state_1_full.1.regexadm
@@ -19,7 +19,7 @@
"cloud.storage.debug.sweep.threshold.size" : 1073741824,
"cloud.storage.disk.monitor.interval" : 60,
"cloud.storage.endpoint" : "",
- "cloud.storage.index.inactive.duration.threshold" : 6,
+ "cloud.storage.index.inactive.duration.threshold" : 360,
"cloud.storage.prefix" : "",
"cloud.storage.region" : "",
"cloud.storage.scheme" : "",
diff --git a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm
index aff2c77..001ec5f 100644
--- a/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm
+++ b/asterixdb/asterix-app/src/test/resources/runtimets/results/api/cluster_state_1_less/cluster_state_1_less.1.regexadm
@@ -19,7 +19,7 @@
"cloud.storage.debug.sweep.threshold.size" : 1073741824,
"cloud.storage.disk.monitor.interval" : 60,
"cloud.storage.endpoint" : "",
- "cloud.storage.index.inactive.duration.threshold" : 6,
+ "cloud.storage.index.inactive.duration.threshold" : 360,
"cloud.storage.prefix" : "",
"cloud.storage.region" : "",
"cloud.storage.scheme" : "",
diff --git a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/config/CloudProperties.java b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/config/CloudProperties.java
index 5c23f5c..4b80680 100644
--- a/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/config/CloudProperties.java
+++ b/asterixdb/asterix-common/src/main/java/org/apache/asterix/common/config/CloudProperties.java
@@ -53,7 +53,7 @@
// 90% of the allocated space for storage (i.e., 90% of the 80% of the total disk space)
CLOUD_STORAGE_SWEEP_THRESHOLD_PERCENTAGE(DOUBLE, 0.9d),
CLOUD_STORAGE_DISK_MONITOR_INTERVAL(POSITIVE_INTEGER, 60),
- CLOUD_STORAGE_INDEX_INACTIVE_DURATION_THRESHOLD(POSITIVE_INTEGER, 6),
+ CLOUD_STORAGE_INDEX_INACTIVE_DURATION_THRESHOLD(POSITIVE_INTEGER, 360),
CLOUD_STORAGE_DEBUG_MODE_ENABLED(BOOLEAN, false),
CLOUD_STORAGE_DEBUG_SWEEP_THRESHOLD_SIZE(LONG_BYTE_UNIT, StorageUtil.getLongSizeInBytes(1, GIGABYTE)),
CLOUD_PROFILER_LOG_INTERVAL(NONNEGATIVE_INTEGER, 0);