use reasonable memory defaults for storage and compiler
diff --git a/asterix-installer/src/main/resources/conf/asterix-configuration.xml b/asterix-installer/src/main/resources/conf/asterix-configuration.xml
index 6c2b757..f0d76bf 100644
--- a/asterix-installer/src/main/resources/conf/asterix-configuration.xml
+++ b/asterix-installer/src/main/resources/conf/asterix-configuration.xml
@@ -55,10 +55,10 @@
<property>
<name>storage.memorycomponent.globalbudget</name>
- <value>263435456</value>
+ <value>536870192</value>
<description>The total size of memory in bytes that the sum of all
open memory
- components cannot exceed. (Default = "1073741824" // 1GB)
+ components cannot exceed. (Default = "536870192" // 512MB)
</description>
</property>
@@ -145,17 +145,17 @@
<property>
<name>compiler.sortmemory</name>
- <value>536870912</value>
+ <value>33554432</value>
<description>The amount of memory in bytes given to sort operations.
- (Default = "536870912" // 512mb)
+ (Default = "33554432" // 32mb)
</description>
</property>
<property>
<name>compiler.joinmemory</name>
- <value>536870912</value>
+ <value>33554432</value>
<description>The amount of memory in bytes given to join operations.
- (Default = "536870912" // 512mb)
+ (Default = "33554432" // 32mb)
</description>
</property>