[teiid-commits] teiid SVN: r2348 - in trunk/console/src/main: resources/META-INF and 1 other directory.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Wed Jul 14 17:39:14 EDT 2010


Author: tejones
Date: 2010-07-14 17:39:14 -0400 (Wed, 14 Jul 2010)
New Revision: 2348

Modified:
   trunk/console/src/main/java/org/teiid/rhq/plugin/PlatformComponent.java
   trunk/console/src/main/resources/META-INF/rhq-plugin.xml
Log:
TEIID-958 -  Added max buffer size property to Buffer Service properties on the Teiid Engine configuration panel 

Modified: trunk/console/src/main/java/org/teiid/rhq/plugin/PlatformComponent.java
===================================================================
--- trunk/console/src/main/java/org/teiid/rhq/plugin/PlatformComponent.java	2010-07-14 21:20:54 UTC (rev 2347)
+++ trunk/console/src/main/java/org/teiid/rhq/plugin/PlatformComponent.java	2010-07-14 21:39:14 UTC (rev 2348)
@@ -61,8 +61,8 @@
 public class PlatformComponent extends Facet {
 	private final Log LOG = LogFactory.getLog(PluginConstants.DEFAULT_LOGGER_CATEGORY);
 
-	String[] PLATFORM_SERVICES_NAMES = { "org.teiid.jboss.deployers.RuntimeEngineDeployer",
-			"org.teiid.services.BufferServiceImpl", "org.teiid.services.SessionServiceImpl", "org.teiid.transport.SocketConfiguration" };
+	String[] PLATFORM_SERVICES_NAMES = { "RuntimeEngineDeployer",
+			"BufferService", "SessionService", "AdminSocketConfiguration" };
 
 	/*
 	 * (non-Javadoc)
@@ -168,7 +168,7 @@
 											PluginConstants.ComponentType.Platform.Metrics.LONG_RUNNING_QUERIES)) {
 								report.addData(new MeasurementDataNumeric(
 										request, (Double) metricReturnObject));
-							}
+							} 
 
 						}
 					}

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:20:54 UTC (rev 2347)
+++ trunk/console/src/main/resources/META-INF/rhq-plugin.xml	2010-07-14 21:39:14 UTC (rev 2348)
@@ -309,6 +309,10 @@
 			</c:group>
 			<c:group name="bufferServiceProperties" displayName="Buffer Service Properties"
 				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)"
+					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 &lt;= the connectorBatchSize. (default 256)"



More information about the teiid-commits mailing list