[teiid-commits] teiid SVN: r2349 - in trunk: runtime/src/main/java/org/teiid/services and 1 other directory.
teiid-commits at lists.jboss.org
teiid-commits at lists.jboss.org
Wed Jul 14 21:21:21 EDT 2010
Author: shawkins
Date: 2010-07-14 21:21:21 -0400 (Wed, 14 Jul 2010)
New Revision: 2349
Modified:
trunk/console/src/main/resources/META-INF/rhq-plugin.xml
trunk/runtime/src/main/java/org/teiid/services/BufferServiceImpl.java
Log:
correcting defaults and descriptions
Modified: trunk/console/src/main/resources/META-INF/rhq-plugin.xml
===================================================================
--- trunk/console/src/main/resources/META-INF/rhq-plugin.xml 2010-07-14 21:39:14 UTC (rev 2348)
+++ trunk/console/src/main/resources/META-INF/rhq-plugin.xml 2010-07-15 01:21:21 UTC (rev 2349)
@@ -311,15 +311,15 @@
hiddenByDefault="false">
<c:simple-property name="maxBufferSpace"
displayName="Max Buffer Space"
- description="Max file storage space, in MB, to be used for buffer files (default 256G)"
+ description="Max file storage space, in MB, to be used for buffer files (default 50G)"
required="false" readOnly="false" />
<c:simple-property name="processorBatchSize"
displayName="Processor Batch Size"
- description="The max row count of a batch sent internally within the query processor. Should be <= the connectorBatchSize. (default 256)"
+ description="The max row count of a batch sent internally within the query processor. Should be <= the connectorBatchSize. (default 512)"
required="false" readOnly="false" />
<c:simple-property name="connectorBatchSize"
displayName="Connector Batch Size"
- description="The max row count of a batch from a connector. Should be even multiple of processorBatchSize. (default 512)"
+ description="The max row count of a batch from a connector. Should be even multiple of processorBatchSize. (default 1024)"
required="false" readOnly="false" />
<c:simple-property name="maxProcessingBatchesColumns"
displayName="Max Processing Batches Columns"
Modified: trunk/runtime/src/main/java/org/teiid/services/BufferServiceImpl.java
===================================================================
--- trunk/runtime/src/main/java/org/teiid/services/BufferServiceImpl.java 2010-07-14 21:39:14 UTC (rev 2348)
+++ trunk/runtime/src/main/java/org/teiid/services/BufferServiceImpl.java 2010-07-15 01:21:21 UTC (rev 2349)
@@ -219,7 +219,7 @@
return maxReserveBatchColumns;
}
- @ManagementProperty(description="Max file storage space, in MB, to be used for buffer files (default 256G)")
+ @ManagementProperty(description="Max file storage space, in MB, to be used for buffer files (default 50G)")
public long getMaxBufferSpace() {
return maxBufferSpace;
}
More information about the teiid-commits
mailing list