Build failed in Jenkins: Cassandra #2147

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu3 in workspace 

Checkout:Cassandra /  - 
hudson.remoting.Channel@698097ce:ubuntu3
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_10-01-08 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean release test
Buildfile: /x1/jenkins/jenkins-slave/workspace/Cassandra/build.xml

clean:
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/gen-java
   [delete] Deleting: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/internode.avpr

maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/build-dependencies.xml

init:
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/main
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/thrift
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test/lib
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test/classes
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/gen-java

check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cli/Cli.g
  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cql/Cql.g
  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cql3/Cql.g
  ...

build-project:
 [echo] apache-cassandra: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build.xml
[javac] Compiling 40 source files to 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/thrift
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/main
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/utils/FastByteComparisons.java:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/utils/FastByteComparisons.java:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = (sun.misc.Unsafe) field.get(null);
[javac]   ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra

customizable size tiered compaction

2012-09-22 Thread Radim Kolar
I am interested in experiments with size tiered compaction, because i 
get sstables which are never compacted because no other sstable is close 
to their size, i have plans to experiment with bucket ratio which is 
currently 50-150 percent to make it 33-200 percent.


Its all about changing constants at lines 170-171

https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/db/compaction/SizeTieredCompactionStrategy.java

if ((size > (oldAverageSize / 2) && size < (3 * oldAverageSize) / 2)

|| (size < minSSTableSize && oldAverageSize < minSSTableSize))

to make these constant configurable, i suppose something similar to 
"min_sstable_size" is needed. Its min_sstable_size configurable by CF or 
its node wide setup?


Build failed in Jenkins: Cassandra #2148

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu3 in workspace 

Checkout:Cassandra /  - 
hudson.remoting.Channel@62df859d:ubuntu3
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_11-02-32 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean release test
Buildfile: /x1/jenkins/jenkins-slave/workspace/Cassandra/build.xml

clean:
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/gen-java
   [delete] Deleting: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/internode.avpr

maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/build-dependencies.xml

init:
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/main
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/thrift
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test/lib
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test/classes
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/gen-java

check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cli/Cli.g
  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cql/Cql.g
  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cql3/Cql.g
  ...

build-project:
 [echo] apache-cassandra: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build.xml
[javac] Compiling 40 source files to 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/thrift
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/main
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/utils/FastByteComparisons.java:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/utils/FastByteComparisons.java:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = (sun.misc.Unsafe) field.get(null);
[javac]   ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra

Build failed in Jenkins: Cassandra #2149

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu3 in workspace 

Checkout:Cassandra /  - 
hudson.remoting.Channel@30b53750:ubuntu3
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_13-01-31 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean release test
Buildfile: /x1/jenkins/jenkins-slave/workspace/Cassandra/build.xml

clean:
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes
   [delete] Deleting directory 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/gen-java
   [delete] Deleting: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/internode.avpr

maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/build-dependencies.xml

init:
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/main
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/thrift
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test/lib
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/test/classes
[mkdir] Created dir: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/gen-java

check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cli/Cli.g
  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cql/Cql.g
  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/cql3/Cql.g
  ...

build-project:
 [echo] apache-cassandra: 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build.xml
[javac] Compiling 40 source files to 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/thrift
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 
/x1/jenkins/jenkins-slave/workspace/Cassandra/build/classes/main
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/utils/FastByteComparisons.java:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/utils/FastByteComparisons.java:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra/src/java/org/apache/cassandra/io/util/Memory.java:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = (sun.misc.Unsafe) field.get(null);
[javac]   ^
[javac] 
/x1/jenkins/jenkins-slave/workspace/Cassandra

Re: customizable size tiered compaction

2012-09-22 Thread Jonathan Ellis
It's a compaction strategy option, so it's cluster-wide for that strategy.

On Sat, Sep 22, 2012 at 5:46 AM, Radim Kolar  wrote:
> I am interested in experiments with size tiered compaction, because i get
> sstables which are never compacted because no other sstable is close to
> their size, i have plans to experiment with bucket ratio which is currently
> 50-150 percent to make it 33-200 percent.
>
> Its all about changing constants at lines 170-171
>
> https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/db/compaction/SizeTieredCompactionStrategy.java
>
> if ((size > (oldAverageSize / 2) && size < (3 * oldAverageSize) / 2)
>
> || (size < minSSTableSize && oldAverageSize < minSSTableSize))
>
> to make these constant configurable, i suppose something similar to
> "min_sstable_size" is needed. Its min_sstable_size configurable by CF or its
> node wide setup?



-- 
Jonathan Ellis
Project Chair, Apache Cassandra
co-founder of DataStax, the source for professional Cassandra support
http://www.datastax.com


Build failed in Jenkins: Cassandra-quick #1394

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu2 in workspace 

Checkout:Cassandra-quick /  
- hudson.remoting.Channel@6ffb33fb:ubuntu2
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra-quick] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_15-01-40 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean test
Buildfile: 

clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting: 


maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 


init:
[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 


check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 

  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 

  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 

  ...

build-project:
 [echo] apache-cassandra: 

[javac] Compiling 40 source files to 

[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 

[javac] 
:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = 

Build failed in Jenkins: Cassandra-quick #1395

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu4 in workspace 

Checkout:Cassandra-quick /  
- hudson.remoting.Channel@42899ef3:ubuntu4
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra-quick] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_15-15-42 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean test
Buildfile: 

clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting: 


maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 


init:
[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 


check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 

  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 

  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 

  ...

build-project:
 [echo] apache-cassandra: 

[javac] Compiling 40 source files to 

[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 

[javac] 
:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = 

Build failed in Jenkins: Cassandra #2150

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu1 in workspace 

Checkout:Cassandra /  - 
hudson.remoting.Channel@7b8691b0:ubuntu1
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_16-03-39 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean release test
Buildfile: 

clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting: 


maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 


init:
[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 


check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 

  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 

  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 

  ...

build-project:
 [echo] apache-cassandra: 

[javac] Compiling 40 source files to 

[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 

[javac] 
:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = (sun.misc.Unsafe) field.get(null);
[javac]   ^
[javac] 


Build failed in Jenkins: Cassandra #2151

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu1 in workspace 

Checkout:Cassandra /  - 
hudson.remoting.Channel@4bef3cd:ubuntu1
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_17-02-38 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean release test
Buildfile: 

clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting: 


maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 


init:
[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 


check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 

  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 

  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 

  ...

build-project:
 [echo] apache-cassandra: 

[javac] Compiling 40 source files to 

[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 

[javac] 
:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = (sun.misc.Unsafe) field.get(null);
[javac]   ^
[javac] 


Re: customizable size tiered compaction

2012-09-22 Thread Radim Kolar

Dne 22.9.2012 16:01, Jonathan Ellis napsal(a):

It's a compaction strategy option, so it's cluster-wide for that strategy.

coded in https://issues.apache.org/jira/browse/CASSANDRA-4704


Build failed in Jenkins: Cassandra-quick #1396

2012-09-22 Thread Apache Jenkins Server
See 

--
Started by an SCM change
Building remotely on ubuntu5 in workspace 

Checkout:Cassandra-quick /  
- hudson.remoting.Channel@749a6cdc:ubuntu5
Using strategy: Default
Last Built Revision: Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Fetching changes from 1 remote Git repository
Fetching upstream changes from 
https://git-wip-us.apache.org/repos/asf/cassandra.git
Commencing build of Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a 
(origin/trunk)
Checking out Revision d634f05161ba5b7524c743e5ac5d18f4e8a6282a (origin/trunk)
[Cassandra-quick] $ /home/hudson/tools/ant/latest/bin/ant 
-Dversion=2012-09-22_20-15-42 -Dtest.timeout=9 
-Dcobertura.dir=/usr/share/java clean test
Buildfile: 

clean:
   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting directory 

   [delete] Deleting: 


maven-ant-tasks-localrepo:

maven-ant-tasks-download:

maven-ant-tasks-init:

maven-declare-dependencies:

maven-ant-tasks-retrieve-build:

init-dependencies:
 [echo] Loading dependency paths from file: 


init:
[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 

[mkdir] Created dir: 


check-avro-generate:

avro-interface-generate-internode:
 [echo] Generating Avro internode code...

avro-generate:

build-subprojects:

check-gen-cli-grammar:

gen-cli-grammar:
 [echo] Building Grammar 

  

check-gen-cql2-grammar:

gen-cql2-grammar:
 [echo] Building Grammar 

  ...

check-gen-cql3-grammar:

gen-cql3-grammar:
 [echo] Building Grammar 

  ...

build-project:
 [echo] apache-cassandra: 

[javac] Compiling 40 source files to 

[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] Compiling 686 source files to 

[javac] 
:20:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:26:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] private static final Unsafe unsafe;
[javac]  ^
[javac] 
:25:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] import sun.misc.Unsafe;
[javac]^
[javac] 
:114:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac]   static final Unsafe theUnsafe;
[javac]^
[javac] 
:32:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] Field field = 
sun.misc.Unsafe.class.getDeclaredField("theUnsafe");
[javac]   ^
[javac] 
:34:
 warning: sun.misc.Unsafe is Sun proprietary API and may be removed in a future 
release
[javac] unsafe = 

Build failed in Jenkins: Cassandra-quick #1397

2012-09-22 Thread Apache Jenkins Server
See 

Changes:

[jbellis] update error messages for setX to setInputX change

[jbellis] fix build

--
[...truncated 446 lines...]
[junit] 
[junit] - Standard Error -
[junit]  WARN 20:38:52,483 No host ID found, created 
a1bf25c0-abf9-4cfc-ab02-3eec798b6324 (Note: This should happen exactly once per 
node).
[junit]  WARN 20:38:52,566 Generated random token 
[Token(bytes[4bcf35fb3ca92641f94fe345d8a72913])]. Random tokens will result in 
an unbalanced ring; see http://wiki.apache.org/cassandra/Operations
[junit] -  ---
[junit] Testsuite: 
org.apache.cassandra.service.AntiEntropyServiceStandardTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 5.111 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 20:38:58,740 No host ID found, created 
55658ffd-f587-4c6b-8a7a-1e84be506895 (Note: This should happen exactly once per 
node).
[junit]  WARN 20:38:58,871 Generated random token 
[Token(bytes[dee766dc3bf3e172b89879a9181b4bd4])]. Random tokens will result in 
an unbalanced ring; see http://wiki.apache.org/cassandra/Operations
[junit] -  ---
[junit] Testsuite: org.apache.cassandra.service.CassandraServerTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.062 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.service.EmbeddedCassandraServiceTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 4.014 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 20:39:09,571 Unable to lock JVM memory (ENOMEM). This can 
result in part of the JVM being swapped out, especially with mmapped I/O 
enabled. Increase RLIMIT_MEMLOCK or run Cassandra as root.
[junit]  WARN 20:39:09,806 No host ID found, created 
e8aa34c9-7c32-4c24-a5d8-324e47811cc8 (Note: This should happen exactly once per 
node).
[junit]  WARN 20:39:09,870 Generated random token 
[Token(bytes[cfb1ee651d88872ee62bc2cd344dd2f0])]. Random tokens will result in 
an unbalanced ring; see http://wiki.apache.org/cassandra/Operations
[junit] -  ---
[junit] Testsuite: org.apache.cassandra.service.InitClientTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.115 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.service.LeaveAndBootstrapTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 5.463 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 20:39:19,555 Node /127.0.0.3 'leaving' token mismatch. Long 
network partition?
[junit] -  ---
[junit] Testsuite: org.apache.cassandra.service.MoveTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 5.008 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.service.RelocateTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 21.889 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 20:39:30,493 setting live ratio to maximum of 64.0 instead of 
Infinity
[junit]  WARN 20:39:30,595 setting live ratio to maximum of 64.0 instead of 
Infinity
[junit]  WARN 20:39:30,815 setting live ratio to maximum of 64.0 instead of 
Infinity
[junit]  WARN 20:39:33,505 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:33,658 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:33,943 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:34,087 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:34,096 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:34,105 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:34,143 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:34,174 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:34,181 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,649 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,671 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,715 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,738 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,741 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,744 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,767 Token 10 changing ownership from /127.0.0.1 to 
/127.0.0.2
[junit]  WARN 20:39:42,782 Token 10 changi