Repository: tajo Updated Branches: refs/heads/master 6c3ae723f -> 68d2c7020
TAJO-1896: Fix the travis test failure. Closes #851 Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/68d2c702 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/68d2c702 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/68d2c702 Branch: refs/heads/master Commit: 68d2c702074660bf45f60bfaf0b0bff1fbe7d5d5 Parents: 6c3ae72 Author: Jinho Kim <[email protected]> Authored: Fri Nov 6 15:11:14 2015 +0900 Committer: Jinho Kim <[email protected]> Committed: Fri Nov 6 15:11:14 2015 +0900 ---------------------------------------------------------------------- .travis.yml | 16 ++++++++++++++-- CHANGES | 2 ++ pom.xml | 2 +- tajo-algebra/pom.xml | 1 - tajo-catalog/tajo-catalog-client/pom.xml | 1 - tajo-catalog/tajo-catalog-common/pom.xml | 1 - tajo-catalog/tajo-catalog-drivers/tajo-hive/pom.xml | 2 +- tajo-catalog/tajo-catalog-server/pom.xml | 2 +- tajo-cli/pom.xml | 2 +- tajo-client-example/pom.xml | 2 +- tajo-client/pom.xml | 2 +- tajo-cluster-tests/pom.xml | 2 +- tajo-common/pom.xml | 1 - tajo-core-tests/pom.xml | 4 ++-- tajo-core/pom.xml | 2 -- tajo-jdbc/pom.xml | 2 +- tajo-metrics/pom.xml | 1 - tajo-plan/pom.xml | 1 - tajo-project/pom.xml | 11 ++++++++--- tajo-rpc/tajo-rpc-common/pom.xml | 2 -- tajo-rpc/tajo-rpc-protobuf/pom.xml | 2 -- tajo-rpc/tajo-ws-rs/pom.xml | 2 -- tajo-storage/tajo-storage-common/pom.xml | 3 +-- tajo-storage/tajo-storage-hbase/pom.xml | 3 +-- tajo-storage/tajo-storage-hdfs/pom.xml | 3 +-- tajo-storage/tajo-storage-jdbc/pom.xml | 3 +-- tajo-storage/tajo-storage-pgsql/pom.xml | 3 +-- 27 files changed, 39 insertions(+), 39 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index f8a6772..29b5e25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,8 +33,20 @@ notifications: - [email protected] irc: "chat.freenode.net#tajo" -before_install: ulimit -t 514029 -u 2048 -n 3000 +before_install: + # Disable services enabled by default + # http://docs.travis-ci.com/user/database-setup/#MySQL + - sudo /etc/init.d/mysql stop + - sudo /etc/init.d/postgresql stop + - ulimit -t unlimited -u 10000 -n 64000 + - ulimit -a + - free -m + - df -h + install: ./dev-support/travis-install-dependencies.sh script: - mvn clean install -q -ff -Dsurefire.useFile=false -Pparallel-test -DLOG_LEVEL=WARN -Dmaven.fork.count=2 -Ptest-storage-pgsql + - mvn clean install -q -ff -Dsurefire.useFile=false -Pparallel-test -DLOG_LEVEL=WARN -Dmaven.fork.count=2 -Ptest-storage-pgsql -Dtest=!TestHBaseTable,!**/ws/rs/**,!**/engine/eval/** -DfailIfNoTests=false + - mvn test -q -ff -Dsurefire.useFile=false -Pparallel-test -DLOG_LEVEL=WARN -Dtest=TestHBaseTable,**/ws/rs/**,**/engine/eval/** -pl tajo-core-tests + - sh -c "dmesg | grep -i OOM || exit 0" + - free -m http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index f8360f9..db7e2c7 100644 --- a/CHANGES +++ b/CHANGES @@ -33,6 +33,8 @@ Release 0.12.0 - unreleased BUG FIXES + TAJO-1896: Fix the travis test failure. (jinho) + TAJO-1964: TestKillQuery::testKillQueryFromInitState causes NPE. (jinho) TAJO-1578: User configuration for pull server port is ignored. http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 3e17e28..1ded49f 100644 --- a/pom.xml +++ b/pom.xml @@ -111,7 +111,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> + <version>2.19</version> <configuration> <aggregate>true</aggregate> </configuration> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-algebra/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-algebra/pom.xml b/tajo-algebra/pom.xml index 0e942bf..c963f9f 100644 --- a/tajo-algebra/pom.xml +++ b/tajo-algebra/pom.xml @@ -202,7 +202,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-catalog/tajo-catalog-client/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-catalog/tajo-catalog-client/pom.xml b/tajo-catalog/tajo-catalog-client/pom.xml index dfeb426..933ec82 100644 --- a/tajo-catalog/tajo-catalog-client/pom.xml +++ b/tajo-catalog/tajo-catalog-client/pom.xml @@ -178,7 +178,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-catalog/tajo-catalog-common/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-catalog/tajo-catalog-common/pom.xml b/tajo-catalog/tajo-catalog-common/pom.xml index d275600..27e87b8 100644 --- a/tajo-catalog/tajo-catalog-common/pom.xml +++ b/tajo-catalog/tajo-catalog-common/pom.xml @@ -199,7 +199,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-catalog/tajo-catalog-drivers/tajo-hive/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-catalog/tajo-catalog-drivers/tajo-hive/pom.xml b/tajo-catalog/tajo-catalog-drivers/tajo-hive/pom.xml index 095b80b..1a8a188 100644 --- a/tajo-catalog/tajo-catalog-drivers/tajo-hive/pom.xml +++ b/tajo-catalog/tajo-catalog-drivers/tajo-hive/pom.xml @@ -82,7 +82,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=152m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-catalog/tajo-catalog-server/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-catalog/tajo-catalog-server/pom.xml b/tajo-catalog/tajo-catalog-server/pom.xml index fe62576..4c585f9 100644 --- a/tajo-catalog/tajo-catalog-server/pom.xml +++ b/tajo-catalog/tajo-catalog-server/pom.xml @@ -120,7 +120,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=152m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-cli/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-cli/pom.xml b/tajo-cli/pom.xml index a7a3b91..e670529 100644 --- a/tajo-cli/pom.xml +++ b/tajo-cli/pom.xml @@ -71,7 +71,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -Dfile.encoding=UTF-8</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8</argLine> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-client-example/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-client-example/pom.xml b/tajo-client-example/pom.xml index d531f57..daee2f9 100644 --- a/tajo-client-example/pom.xml +++ b/tajo-client-example/pom.xml @@ -74,7 +74,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -Dfile.encoding=UTF-8</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8</argLine> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-client/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-client/pom.xml b/tajo-client/pom.xml index 015cbc7..90fcec6 100644 --- a/tajo-client/pom.xml +++ b/tajo-client/pom.xml @@ -75,7 +75,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -Dfile.encoding=UTF-8</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8</argLine> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-cluster-tests/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-cluster-tests/pom.xml b/tajo-cluster-tests/pom.xml index a12d6b0..7b537ff 100644 --- a/tajo-cluster-tests/pom.xml +++ b/tajo-cluster-tests/pom.xml @@ -67,7 +67,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=152m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1000m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-common/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-common/pom.xml b/tajo-common/pom.xml index 70fb08b..06703b3 100644 --- a/tajo-common/pom.xml +++ b/tajo-common/pom.xml @@ -183,7 +183,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </build> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-core-tests/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-core-tests/pom.xml b/tajo-core-tests/pom.xml index 6df3c04..2037f0b 100644 --- a/tajo-core-tests/pom.xml +++ b/tajo-core-tests/pom.xml @@ -73,7 +73,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=152m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1000m -XX:+CMSClassUnloadingEnabled -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> @@ -375,7 +375,7 @@ <forkCount>${maven.fork.count}</forkCount> <reuseForks>true</reuseForks> <trimStackTrace>false</trimStackTrace> - <argLine>-Xms512m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx800m -XX:+CMSClassUnloadingEnabled -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> <useSystemClassLoader>true</useSystemClassLoader> <useManifestOnlyJar>true</useManifestOnlyJar> <systemProperties> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-core/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-core/pom.xml b/tajo-core/pom.xml index a2a373d..ed006a7 100644 --- a/tajo-core/pom.xml +++ b/tajo-core/pom.xml @@ -335,7 +335,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> <configuration> <aggregate>true</aggregate> </configuration> @@ -417,7 +416,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-jdbc/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-jdbc/pom.xml b/tajo-jdbc/pom.xml index a014a78..b42d90d 100644 --- a/tajo-jdbc/pom.xml +++ b/tajo-jdbc/pom.xml @@ -99,7 +99,7 @@ <systemProperties> <tajo.test.enabled>true</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=152m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-metrics/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-metrics/pom.xml b/tajo-metrics/pom.xml index 5425d89..1361694 100644 --- a/tajo-metrics/pom.xml +++ b/tajo-metrics/pom.xml @@ -258,7 +258,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-plan/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-plan/pom.xml b/tajo-plan/pom.xml index a9a3f31..32a6df0 100644 --- a/tajo-plan/pom.xml +++ b/tajo-plan/pom.xml @@ -277,7 +277,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-project/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-project/pom.xml b/tajo-project/pom.xml index 84aeffd..f8a82d0 100644 --- a/tajo-project/pom.xml +++ b/tajo-project/pom.xml @@ -479,7 +479,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> + <version>2.19</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <version>2.19</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> @@ -1008,7 +1013,7 @@ <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> - <version>4.11</version> + <version>4.12</version> <type>jar</type> <scope>compile</scope> </dependency> @@ -1300,7 +1305,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> + <version>2.19</version> <configuration> <aggregate>true</aggregate> </configuration> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-rpc/tajo-rpc-common/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-rpc/tajo-rpc-common/pom.xml b/tajo-rpc/tajo-rpc-common/pom.xml index 187d2ff..80fb9ac 100644 --- a/tajo-rpc/tajo-rpc-common/pom.xml +++ b/tajo-rpc/tajo-rpc-common/pom.xml @@ -67,7 +67,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </build> @@ -207,7 +206,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-rpc/tajo-rpc-protobuf/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-rpc/tajo-rpc-protobuf/pom.xml b/tajo-rpc/tajo-rpc-protobuf/pom.xml index 4335d6a..4d9a62b 100644 --- a/tajo-rpc/tajo-rpc-protobuf/pom.xml +++ b/tajo-rpc/tajo-rpc-protobuf/pom.xml @@ -130,7 +130,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </build> @@ -266,7 +265,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-rpc/tajo-ws-rs/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-rpc/tajo-ws-rs/pom.xml b/tajo-rpc/tajo-ws-rs/pom.xml index 8868155..3064d62 100644 --- a/tajo-rpc/tajo-ws-rs/pom.xml +++ b/tajo-rpc/tajo-ws-rs/pom.xml @@ -63,7 +63,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </build> @@ -209,7 +208,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-storage/tajo-storage-common/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/tajo-storage-common/pom.xml b/tajo-storage/tajo-storage-common/pom.xml index 2af8371..c552ab5 100644 --- a/tajo-storage/tajo-storage-common/pom.xml +++ b/tajo-storage/tajo-storage-common/pom.xml @@ -75,7 +75,7 @@ limitations under the License. <systemProperties> <tajo.test.enabled>TRUE</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=128m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> @@ -343,7 +343,6 @@ limitations under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-storage/tajo-storage-hbase/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/tajo-storage-hbase/pom.xml b/tajo-storage/tajo-storage-hbase/pom.xml index ca6238d..ddb53ca 100644 --- a/tajo-storage/tajo-storage-hbase/pom.xml +++ b/tajo-storage/tajo-storage-hbase/pom.xml @@ -78,7 +78,7 @@ <systemProperties> <tajo.test.enabled>TRUE</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=128m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> @@ -366,7 +366,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-storage/tajo-storage-hdfs/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/tajo-storage-hdfs/pom.xml b/tajo-storage/tajo-storage-hdfs/pom.xml index cf14158..3b89e1c 100644 --- a/tajo-storage/tajo-storage-hdfs/pom.xml +++ b/tajo-storage/tajo-storage-hdfs/pom.xml @@ -81,7 +81,7 @@ <systemProperties> <tajo.test.enabled>TRUE</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=128m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8 -Dderby.storage.pageSize=1024 -Dderby.stream.error.file=/dev/null</argLine> </configuration> </plugin> <plugin> @@ -397,7 +397,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-storage/tajo-storage-jdbc/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/tajo-storage-jdbc/pom.xml b/tajo-storage/tajo-storage-jdbc/pom.xml index 1219df9..61481c7 100644 --- a/tajo-storage/tajo-storage-jdbc/pom.xml +++ b/tajo-storage/tajo-storage-jdbc/pom.xml @@ -77,7 +77,7 @@ <systemProperties> <tajo.test.enabled>TRUE</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=128m -Dfile.encoding=UTF-8</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8</argLine> </configuration> </plugin> <plugin> @@ -231,7 +231,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting> http://git-wip-us.apache.org/repos/asf/tajo/blob/68d2c702/tajo-storage/tajo-storage-pgsql/pom.xml ---------------------------------------------------------------------- diff --git a/tajo-storage/tajo-storage-pgsql/pom.xml b/tajo-storage/tajo-storage-pgsql/pom.xml index 50b7470..6f37ab6 100644 --- a/tajo-storage/tajo-storage-pgsql/pom.xml +++ b/tajo-storage/tajo-storage-pgsql/pom.xml @@ -234,7 +234,7 @@ <systemProperties> <tajo.test.enabled>TRUE</tajo.test.enabled> </systemProperties> - <argLine>-Xms512m -Xmx1024m -XX:MaxMetaspaceSize=128m -Dfile.encoding=UTF-8</argLine> + <argLine>-Xms128m -Xmx1024m -Dfile.encoding=UTF-8</argLine> </configuration> </plugin> </plugins> @@ -274,7 +274,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.15</version> </plugin> </plugins> </reporting>
