You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@asterixdb.apache.org by "Taewoo Kim (Code Review)" <do...@asterixdb.incubator.apache.org> on 2016/10/13 20:45:15 UTC

Change in asterixdb[master]: Added more explanations for two config parameters

Taewoo Kim has uploaded a new change for review.

  https://asterix-gerrit.ics.uci.edu/1281

Change subject: Added more explanations for two config parameters
......................................................................

Added more explanations for two config parameters

 - Added more planataions for storage.memorycomponent.numpages and
   storage.memorycomponent.globalbudget

Change-Id: Idea269eec4d89f665772267588ce2b019327de04
---
M asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
M asterixdb/asterix-docker/docker/asterix-configuration.xml
M asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
M asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
M asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
M asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
M asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
7 files changed, 65 insertions(+), 31 deletions(-)


  git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/81/1281/1

diff --git a/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml b/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
index 142b93a..21d2e64 100644
--- a/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
+++ b/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
@@ -88,8 +88,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>8</value>
-    <description>The number of pages to allocate for a memory component.
-      (Default = 8)
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
   <property>
diff --git a/asterixdb/asterix-docker/docker/asterix-configuration.xml b/asterixdb/asterix-docker/docker/asterix-configuration.xml
index ea43da9..ec4fad5 100644
--- a/asterixdb/asterix-docker/docker/asterix-configuration.xml
+++ b/asterixdb/asterix-docker/docker/asterix-configuration.xml
@@ -100,8 +100,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
-    <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
   <property>
@@ -123,9 +126,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>512MB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory 
+      components cannot exceed. Consider this as the buffer cache for all memory 
+      components of all indexes in a node. When this budget is fully used, a victim 
+      dataset will be chosen. The chosen dataset must be evicted and closed to make 
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml b/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
index c642cbb..fdcfe1a 100644
--- a/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
+++ b/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
@@ -72,7 +72,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>8192</value>
-    <description>
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
   <!--// Buffer size per dataset for in-memory components -->
@@ -96,9 +100,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>4196MB</value>
-    <description>[4GB + 100MB]The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory 
+      components cannot exceed. Consider this as the buffer cache for all memory 
+      components of all indexes in a node. When this budget is fully used, a victim 
+      dataset will be chosen. The chosen dataset must be evicted and closed to make 
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml b/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
index aa8ad8d..b2653d8 100644
--- a/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
+++ b/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
@@ -75,8 +75,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
-    <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>1GB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory 
+      components cannot exceed. Consider this as the buffer cache for all memory 
+      components of all indexes in a node. When this budget is fully used, a victim 
+      dataset will be chosen. The chosen dataset must be evicted and closed to make 
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml b/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
index e36c33b..07bb895 100644
--- a/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
+++ b/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
@@ -75,8 +75,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
-    <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>1GB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory 
+      components cannot exceed. Consider this as the buffer cache for all memory 
+      components of all indexes in a node. When this budget is fully used, a victim 
+      dataset will be chosen. The chosen dataset must be evicted and closed to make 
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml b/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
index 788cb76..f6ba49e 100644
--- a/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
+++ b/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
@@ -75,8 +75,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
-    <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>512MB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory 
+      components cannot exceed. Consider this as the buffer cache for all memory 
+      components of all indexes in a node. When this budget is fully used, a victim 
+      dataset will be chosen. The chosen dataset must be evicted and closed to make 
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml b/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
index 788cb76..f6ba49e 100644
--- a/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
+++ b/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
@@ -75,8 +75,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
-    <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+    <description>The number of pages to allocate for a memory component. 
+      This budget is shared by all the memory components of the primary 
+      index and all its secondary indexes across all I/O devices on a node. 
+      Note: in-memory components usually has fill factor of 75% since 
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256) 
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>512MB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory 
+      components cannot exceed. Consider this as the buffer cache for all memory 
+      components of all indexes in a node. When this budget is fully used, a victim 
+      dataset will be chosen. The chosen dataset must be evicted and closed to make 
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Taewoo Kim (Code Review)" <do...@asterixdb.incubator.apache.org>.
Taewoo Kim has submitted this change and it was merged.

Change subject: Added more explanations for two config parameters
......................................................................


Added more explanations for two config parameters

 - Added more planataions for storage.memorycomponent.numpages and
   storage.memorycomponent.globalbudget

Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Reviewed-on: https://asterix-gerrit.ics.uci.edu/1281
Sonar-Qube: Jenkins <je...@fulliautomatix.ics.uci.edu>
Reviewed-by: Ian Maxon <im...@apache.org>
Tested-by: Jenkins <je...@fulliautomatix.ics.uci.edu>
---
M asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
M asterixdb/asterix-docker/docker/asterix-configuration.xml
M asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
M asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
M asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
M asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
M asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
7 files changed, 59 insertions(+), 25 deletions(-)

Approvals:
  Ian Maxon: Looks good to me, approved
  Jenkins: Verified; No violations found



diff --git a/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml b/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
index 142b93a..ef0cdf2 100644
--- a/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
+++ b/asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
@@ -89,7 +89,10 @@
     <name>storage.memorycomponent.numpages</name>
     <value>8</value>
     <description>The number of pages to allocate for a memory component.
-      (Default = 8)
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
   <property>
diff --git a/asterixdb/asterix-docker/docker/asterix-configuration.xml b/asterixdb/asterix-docker/docker/asterix-configuration.xml
index ea43da9..fe9827c 100644
--- a/asterixdb/asterix-docker/docker/asterix-configuration.xml
+++ b/asterixdb/asterix-docker/docker/asterix-configuration.xml
@@ -101,7 +101,10 @@
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
     <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
   <property>
@@ -123,9 +126,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>512MB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory
+      components cannot exceed. Consider this as the buffer cache for all memory
+      components of all indexes in a node. When this budget is fully used, a victim
+      dataset will be chosen. The chosen dataset must be evicted and closed to make
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml b/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
index c642cbb..f4bb47a 100644
--- a/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
+++ b/asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
@@ -72,7 +72,11 @@
   <property>
     <name>storage.memorycomponent.numpages</name>
     <value>8192</value>
-    <description>
+    <description>The number of pages to allocate for a memory component.
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
   <!--// Buffer size per dataset for in-memory components -->
@@ -96,9 +100,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>4196MB</value>
-    <description>[4GB + 100MB]The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory
+      components cannot exceed. Consider this as the buffer cache for all memory
+      components of all indexes in a node. When this budget is fully used, a victim
+      dataset will be chosen. The chosen dataset must be evicted and closed to make
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml b/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
index aa8ad8d..ed8e70a 100644
--- a/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
+++ b/asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
@@ -76,7 +76,10 @@
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
     <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>1GB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory
+      components cannot exceed. Consider this as the buffer cache for all memory
+      components of all indexes in a node. When this budget is fully used, a victim
+      dataset will be chosen. The chosen dataset must be evicted and closed to make
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml b/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
index e36c33b..9992009 100644
--- a/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
+++ b/asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
@@ -76,7 +76,10 @@
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
     <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>1GB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory
+      components cannot exceed. Consider this as the buffer cache for all memory
+      components of all indexes in a node. When this budget is fully used, a victim
+      dataset will be chosen. The chosen dataset must be evicted and closed to make
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml b/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
index 788cb76..a1b369e 100644
--- a/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
+++ b/asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
@@ -76,7 +76,10 @@
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
     <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>512MB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory
+      components cannot exceed. Consider this as the buffer cache for all memory
+      components of all indexes in a node. When this budget is fully used, a victim
+      dataset will be chosen. The chosen dataset must be evicted and closed to make
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 
diff --git a/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml b/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
index 788cb76..a1b369e 100644
--- a/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
+++ b/asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
@@ -76,7 +76,10 @@
     <name>storage.memorycomponent.numpages</name>
     <value>256</value>
     <description>The number of pages to allocate for a memory component.
-      (Default = 256)
+      This budget is shared by all the memory components of the primary
+      index and all its secondary indexes across all I/O devices on a node.
+      Note: in-memory components usually has fill factor of 75% since
+      the pages are 75% full and the remaining 25% is un-utilized. (Default = 256)
     </description>
   </property>
 
@@ -99,9 +102,11 @@
   <property>
     <name>storage.memorycomponent.globalbudget</name>
     <value>512MB</value>
-    <description>The total size of memory in bytes that the sum of all
-      open memory
-      components cannot exceed. (Default = "536870192" // 512MB)
+    <description>The total size of memory in bytes that the sum of all open memory
+      components cannot exceed. Consider this as the buffer cache for all memory
+      components of all indexes in a node. When this budget is fully used, a victim
+      dataset will be chosen. The chosen dataset must be evicted and closed to make
+      a space for another dataset. (Default = 512MB)
     </description>
   </property>
 

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 3
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: Taewoo Kim <wa...@yahoo.com>

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: Added more explanations for two config parameters
......................................................................


Patch Set 1:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-notopic/3009/

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 1
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: Added more explanations for two config parameters
......................................................................


Patch Set 2:

Integration Tests Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-integration-tests/915/

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Taewoo Kim (Code Review)" <do...@asterixdb.incubator.apache.org>.
Taewoo Kim has uploaded a new patch set (#2).

Change subject: Added more explanations for two config parameters
......................................................................

Added more explanations for two config parameters

 - Added more planataions for storage.memorycomponent.numpages and
   storage.memorycomponent.globalbudget

Change-Id: Idea269eec4d89f665772267588ce2b019327de04
---
M asterixdb/asterix-app/src/main/resources/asterix-build-configuration.xml
M asterixdb/asterix-docker/docker/asterix-configuration.xml
M asterixdb/asterix-experiments/src/main/resources/ingestion-experiment-binary-and-configs/configs/asterix-configuration.xml
M asterixdb/asterix-installer/src/main/resources/conf/asterix-configuration.xml
M asterixdb/asterix-installer/src/test/resources/integrationts/asterix-configuration.xml
M asterixdb/asterix-yarn/src/main/resources/base-asterix-configuration.xml
M asterixdb/asterix-yarn/src/main/resources/configs/base-asterix-configuration.xml
7 files changed, 59 insertions(+), 25 deletions(-)


  git pull ssh://asterix-gerrit.ics.uci.edu:29418/asterixdb refs/changes/81/1281/2
-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: newpatchset
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: Added more explanations for two config parameters
......................................................................


Patch Set 2:

Build Started https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-notopic/3010/

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Jenkins (Code Review)" <do...@asterixdb.incubator.apache.org>.
Jenkins has posted comments on this change.

Change subject: Added more explanations for two config parameters
......................................................................


Patch Set 2:

Integration Tests Successful

https://asterix-jenkins.ics.uci.edu/job/asterix-gerrit-integration-tests/915/ : SUCCESS

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-Reviewer: Taewoo Kim <wa...@yahoo.com>
Gerrit-HasComments: No

Change in asterixdb[master]: Added more explanations for two config parameters

Posted by "Ian Maxon (Code Review)" <do...@asterixdb.incubator.apache.org>.
Ian Maxon has posted comments on this change.

Change subject: Added more explanations for two config parameters
......................................................................


Patch Set 2: Code-Review+2

-- 
To view, visit https://asterix-gerrit.ics.uci.edu/1281
To unsubscribe, visit https://asterix-gerrit.ics.uci.edu/settings

Gerrit-MessageType: comment
Gerrit-Change-Id: Idea269eec4d89f665772267588ce2b019327de04
Gerrit-PatchSet: 2
Gerrit-Project: asterixdb
Gerrit-Branch: master
Gerrit-Owner: Taewoo Kim <wa...@yahoo.com>
Gerrit-Reviewer: Ian Maxon <im...@apache.org>
Gerrit-Reviewer: Jenkins <je...@fulliautomatix.ics.uci.edu>
Gerrit-HasComments: No