From: <tho...@us...> - 2014-05-06 19:52:06
|
Revision: 8211 http://sourceforge.net/p/bigdata/code/8211 Author: thompsonbry Date: 2014-05-06 19:51:59 +0000 (Tue, 06 May 2014) Log Message: ----------- Disabling the jetty-jmx configuration in jetty.xml. This is breaking CI. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-06 19:02:38 UTC (rev 8210) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-06 19:51:59 UTC (rev 8211) @@ -40,6 +40,7 @@ <!-- =========================================================== --> <!-- Initialize the Jetty MBean container --> <!-- =========================================================== --> + <!-- Note: This breaks CI if it is enabled <Call name="addBean"> <Arg> <New id="MBeanContainer" class="org.eclipse.jetty.jmx.MBeanContainer"> @@ -48,16 +49,16 @@ </Arg> </New> </Arg> - </Call> + </Call>--> - <!-- Add the static log to the MBean server. --> + <!-- Add the static log to the MBean server. <Call name="addBean"> <Arg> <New class="org.eclipse.jetty.util.log.Log" /> </Arg> - </Call> + </Call>--> - <!-- For remote MBean access (optional) --> + <!-- For remote MBean access (optional) <New id="ConnectorServer" class="org.eclipse.jetty.jmx.ConnectorServer"> <Arg> <New class="javax.management.remote.JMXServiceURL"> @@ -69,7 +70,7 @@ </Arg> <Arg>org.eclipse.jetty.jmx:name=rmiconnectorserver</Arg> <Call name="start" /> - </New> + </New>--> <!-- =========================================================== --> <!-- Http Configuration. --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tho...@us...> - 2014-05-14 19:22:29
|
Revision: 8322 http://sourceforge.net/p/bigdata/code/8322 Author: thompsonbry Date: 2014-05-14 19:22:27 +0000 (Wed, 14 May 2014) Log Message: ----------- removed empty comment blocks. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-14 18:52:23 UTC (rev 8321) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-14 19:22:27 UTC (rev 8322) @@ -21,9 +21,7 @@ <!-- Consult the javadoc of o.e.j.util.thread.QueuedThreadPool --> <!-- for all configuration that may be set here. --> <!-- =========================================================== --> - <!-- uncomment to change type of threadpool --> <Arg name="threadpool"><New id="threadpool" class="org.eclipse.jetty.util.thread.QueuedThreadPool"/></Arg> - <!-- --> <Get name="ThreadPool"> <Set name="minThreads" type="int"><SystemProperty name="jetty.threads.min" default="10"/></Set> <Set name="maxThreads" type="int"><SystemProperty name="jetty.threads.max" default="64"/></Set> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tho...@us...> - 2014-05-18 14:56:00
|
Revision: 8356 http://sourceforge.net/p/bigdata/code/8356 Author: thompsonbry Date: 2014-05-18 14:55:58 +0000 (Sun, 18 May 2014) Log Message: ----------- attempting workaround for SystemProperty vs Property WARN : 634 2014-05-18 10:52:01,945 com.bigdata.journal.jini.ha.HAJournalServer org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.configure(XmlConfiguration.java:440): Config error at <Set name="minThreads" type="int"><SystemProperty name="jetty.threads.min" default="10"/></Set> WARN : 634 2014-05-18 10:52:01,945 com.bigdata.journal.jini.ha.HAJournalServer org.eclipse.jetty.xml.XmlConfiguration$JettyXmlConfiguration.configure(XmlConfiguration.java:440): Config error at <Get name="ThreadPool"><Set name="minThreads" type="int"><SystemProperty name="jetty.threads.min" default="10"/></Set><Set name="maxThreads" type="int"><SystemProperty name="jetty.threads.max" default="64"/></Set><Set name="idleTimeout" type="int"><SystemProperty name="jetty.threads.timeout" default="60000"/></Set><Set name="detailedDump">false</Set></Get> Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-18 14:51:12 UTC (rev 8355) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-18 14:55:58 UTC (rev 8356) @@ -23,9 +23,9 @@ <!-- =========================================================== --> <Arg name="threadpool"><New id="threadpool" class="org.eclipse.jetty.util.thread.QueuedThreadPool"/></Arg> <Get name="ThreadPool"> - <Set name="minThreads" type="int"><SystemProperty name="jetty.threads.min" default="10"/></Set> - <Set name="maxThreads" type="int"><SystemProperty name="jetty.threads.max" default="64"/></Set> - <Set name="idleTimeout" type="int"><SystemProperty name="jetty.threads.timeout" default="60000"/></Set> + <Set name="minThreads" type="int"><Property name="jetty.threads.min" default="10"/></Set> + <Set name="maxThreads" type="int"><Property name="jetty.threads.max" default="64"/></Set> + <Set name="idleTimeout" type="int"><Property name="jetty.threads.timeout" default="60000"/></Set> <Set name="detailedDump">false</Set> </Get> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tho...@us...> - 2014-05-23 19:11:34
|
Revision: 8418 http://sourceforge.net/p/bigdata/code/8418 Author: thompsonbry Date: 2014-05-23 19:11:29 +0000 (Fri, 23 May 2014) Log Message: ----------- rolling back changes from Property to SystemProperty in jetty.xml. This broken the build. The HA test suites were not starting correctly. See #951 and #958 Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-23 16:08:41 UTC (rev 8417) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-05-23 19:11:29 UTC (rev 8418) @@ -62,8 +62,8 @@ <New class="javax.management.remote.JMXServiceURL"> <Arg type="java.lang.String">rmi</Arg> <Arg type="java.lang.String" /> - <Arg type="java.lang.Integer"><Property name="jetty.jmxrmiport" default="1090"/></Arg> - <Arg type="java.lang.String">/jndi/rmi://<Property name="jetty.jmxrmihost" default="localhost"/>:<Property name="jetty.jmxrmiport" default="1099"/>/jmxrmi</Arg> + <Arg type="java.lang.Integer"><SystemProperty name="jetty.jmxrmiport" default="1090"/></Arg> + <Arg type="java.lang.String">/jndi/rmi://<SystemProperty name="jetty.jmxrmihost" default="localhost"/>:<SystemProperty name="jetty.jmxrmiport" default="1099"/>/jmxrmi</Arg> </New> </Arg> <Arg>org.eclipse.jetty.jmx:name=rmiconnectorserver</Arg> @@ -110,9 +110,9 @@ </Item> </Array> </Arg> - <Set name="host"><Property name="jetty.host" /></Set> - <Set name="port"><Property name="jetty.port" default="8080" /></Set> - <Set name="idleTimeout"><Property name="http.timeout" default="30000"/></Set> + <Set name="host"><SystemProperty name="jetty.host" /></Set> + <Set name="port"><SystemProperty name="jetty.port" default="8080" /></Set> + <Set name="idleTimeout"><SystemProperty name="http.timeout" default="30000"/></Set> </New> </Arg> </Call> @@ -142,12 +142,12 @@ <Arg> <!-- This is the bigdata web application. --> <New id="WebAppContext" class="org.eclipse.jetty.webapp.WebAppContext"> - <Set name="war"><Property name="jetty.resourceBase" default="bigdata-war/src"/></Set> + <Set name="war"><SystemProperty name="jetty.resourceBase" default="bigdata-war/src"/></Set> <Set name="contextPath">/bigdata</Set> <Set name="descriptor">WEB-INF/web.xml</Set> <Set name="parentLoaderPriority">true</Set> <Set name="extractWAR">false</Set> - <Set name="overrideDescriptor"><Property name="jetty.overrideWebXml" default="bigdata-war/src/WEB-INF/override-web.xml"/></Set> + <Set name="overrideDescriptor"><SystemProperty name="jetty.overrideWebXml" default="bigdata-war/src/WEB-INF/override-web.xml"/></Set> </New> </Arg> </Call> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tob...@us...> - 2014-06-16 21:12:33
|
Revision: 8490 http://sourceforge.net/p/bigdata/code/8490 Author: tobycraig Date: 2014-06-16 21:12:25 +0000 (Mon, 16 Jun 2014) Log Message: ----------- Added max form size jetty setting to accommodate 10mb files Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-06-16 21:02:08 UTC (rev 8489) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-06-16 21:12:25 UTC (rev 8490) @@ -148,6 +148,7 @@ <Set name="parentLoaderPriority">true</Set> <Set name="extractWAR">false</Set> <Set name="overrideDescriptor"><SystemProperty name="jetty.overrideWebXml" default="bigdata-war/src/WEB-INF/override-web.xml"/></Set> + <Set name="maxFormContentSize">105000000</Set> </New> </Arg> </Call> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <tho...@us...> - 2014-06-17 12:16:57
|
Revision: 8492 http://sourceforge.net/p/bigdata/code/8492 Author: thompsonbry Date: 2014-06-17 12:16:47 +0000 (Tue, 17 Jun 2014) Log Message: ----------- Changed the max form size for jetty to 10M rather than the somewhat strange default it was given. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-06-16 22:10:27 UTC (rev 8491) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata-war/src/jetty.xml 2014-06-17 12:16:47 UTC (rev 8492) @@ -148,7 +148,7 @@ <Set name="parentLoaderPriority">true</Set> <Set name="extractWAR">false</Set> <Set name="overrideDescriptor"><SystemProperty name="jetty.overrideWebXml" default="bigdata-war/src/WEB-INF/override-web.xml"/></Set> - <Set name="maxFormContentSize">105000000</Set> + <Set name="maxFormContentSize">10485760</Set> </New> </Arg> </Call> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |