Build failed in Jenkins: Cassandra-Coverage #1

2011-03-09 Thread Apache Hudson Server
See https://hudson.apache.org/hudson/job/Cassandra-Coverage/1/

--
[...truncated 1961 lines...]
[junit] Testsuite: org.apache.cassandra.service.LeaveAndBootstrapTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 3.505 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 09:36:02,214 Node /127.0.0.3 'leaving' token mismatch. Long 
network partition?
[junit] -  ---
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 798 classes.
[junit] Cobertura: Saved information on 798 classes.
[junit] Testsuite: org.apache.cassandra.service.MoveTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 2.343 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 798 classes.
[junit] Cobertura: Saved information on 798 classes.
[junit] Testsuite: org.apache.cassandra.service.RemoveTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 5.555 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 798 classes.
[junit] Cobertura: Saved information on 798 classes.
[junit] Testsuite: org.apache.cassandra.service.RowResolverTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.517 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 798 classes.
[junit] Cobertura: Saved information on 798 classes.
[junit] Testsuite: org.apache.cassandra.service.SerializationsTest
[junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 0.576 sec
[junit] 
[junit] Testcase: 
testTreeResponseRead(org.apache.cassandra.service.SerializationsTest):
Caused an ERROR
[junit] java.io.InvalidClassException: 
org.apache.cassandra.dht.BigIntegerToken; local class incompatible: stream 
classdesc serialVersionUID = -5833589141319293006, local class serialVersionUID 
= 2280189098581028124
[junit] java.lang.RuntimeException: java.io.InvalidClassException: 
org.apache.cassandra.dht.BigIntegerToken; local class incompatible: stream 
classdesc serialVersionUID = -5833589141319293006, local class serialVersionUID 
= 2280189098581028124
[junit] at 
org.apache.cassandra.service.AntiEntropyService$TreeResponseVerbHandler.deserialize(AntiEntropyService.java:639)
[junit] at 
org.apache.cassandra.service.SerializationsTest.testTreeResponseRead(SerializationsTest.java:91)
[junit] Caused by: java.io.InvalidClassException: 
org.apache.cassandra.dht.BigIntegerToken; local class incompatible: stream 
classdesc serialVersionUID = -5833589141319293006, local class serialVersionUID 
= 2280189098581028124
[junit] at 
java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:562)
[junit] at 
java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:1583)
[junit] at 
java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1496)
[junit] at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1732)
[junit] at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
[junit] at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
[junit] at 
java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
[junit] at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
[junit] at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
[junit] at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
[junit] at 
java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
[junit] at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
[junit] at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
[junit] at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
[junit] at 
java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
[junit] at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
[junit] at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
[junit] at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
[junit] at 
java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1871)
[junit] at 
java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1753)
[junit] at 
java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1329)
[junit] at 
java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:1947)
[junit] at 

Re: 2GB rows and errros

2011-03-09 Thread Muga Nishizawa
Hi,

I filed a ticket on this problem.
https://issues.apache.org/jira/browse/CASSANDRA-2297

Thanks
Muga Nishizawa,

On Sat, Mar 5, 2011 at 6:10 AM, Jonathan Ellis jbel...@gmail.com wrote:
 Can you open a ticket with the exception you saw?

 On Fri, Mar 4, 2011 at 2:51 PM, Terje Marthinussen
 tmarthinus...@gmail.com wrote:
 Ah, yes, I should have noticed that distinction.
 We actually hit this overflow on a row that was more than 60GB (yes, we had
 to count the number of digits a few times to make sure).
 Terje
 On Sat, Mar 5, 2011 at 5:41 AM, Jonathan Ellis jbel...@gmail.com wrote:

 Second try:

 - this isn't used in row size (which is not limited to 2GB)
 - it's used both for the column index summary and index-block reading,
 both of which should be well under 2GB
 - however, I don't see any technical reason this method should return
 an int instead of a long
 - if we make that change we should probably do additional sanity
 checks in the callers, which will have the necessary context to
 provide better error messages

 On Fri, Mar 4, 2011 at 1:36 PM, Terje Marthinussen
 tmarthinus...@gmail.com wrote:
  Hi,
 
  Any good reason this guy
   public int bytesPastMark(FileMark mark)
     {
         assert mark instanceof BufferedRandomAccessFileMark;
         long bytes = getFilePointer() - ((BufferedRandomAccessFileMark)
  mark).pointer;
 
         assert bytes = 0;
         if (bytes  Integer.MAX_VALUE)
             throw new UnsupportedOperationException(Overflow:  +
  bytes);
         return (int) bytes;
     }
 
  does not show an error more like Overflow: Maximum row size 2GB.
  Currently: + bytes?
 
  Error you get today is not exactly self explaining :)
 
  Terje
 



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





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



Re: Code coverage Jenkins Job

2011-03-09 Thread Stephen Connolly
Hmm failure due to some difference when the code is instrumented... points
to some threading issue that might need to be looked at.

In any case, in order to get Code Coverage to work consistently, it would be
good if somebody could apply

https://issues.apache.org/jira/browse/CASSANDRA-2298

Thanks

-Stephen

On 9 March 2011 09:27, Stephen Connolly stephen.alan.conno...@gmail.comwrote:

 FYI,

 I am trialling enabling the Cassandra Coverage job I created on Jenkins.

 I'm setting the schedule to daily.

 We'll see how it works out

 -Stephen



Build failed in Jenkins: Cassandra #766

2011-03-09 Thread Apache Hudson Server
See https://hudson.apache.org/hudson/job/Cassandra/766/changes

Changes:

[gdusbabek] move all java cql into jdbc package and only expose a few bits. 
patch by gdusbabek, reviewed by eevans. CASSANDRA-2124

[gdusbabek] more comments in ColumnDecoder. patch by gdusbabek, reviewed by 
eevans. CASSANDRA-2124

[gdusbabek] implements getXXX methods to return values of the correct types. 
rearranges the JdbcDriverTest. renames SchemaDecoder. patch by gdusbabek, 
reviewed by eevans. CASSANDRA-2124

[gdusbabek] clean up JdbcDriverTest. patch by gdusbabek, reviewed by eevans. 
CASSANDRA-2124

[gdusbabek] first pass at column decoding. patch by gdusbabek, reviewed by 
eevans. CASSANDRA-2124

[jbellis] merge from 0.7

--
[...truncated 1857 lines...]
[junit] Testsuite: 
org.apache.cassandra.dht.CollatingOrderPreservingPartitionerTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.313 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.OrderPreservingPartitionerTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 1.128 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.RandomPartitionerTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.776 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.RangeTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 0.64 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.ArrivalWindowTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.12 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.GossipDigestTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.054 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.SerializationsTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.441 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.hadoop.ColumnFamilyInputFormatTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.193 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.BloomFilterTrackerTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.494 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.CompactSerializerTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.392 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.LazilyCompactedRowTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 28.762 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.DescriptorTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.054 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.IndexHelperTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.06 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.LegacySSTableTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.434 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 21:00:23,108 Invalid file '.svn' in data directory 
https://hudson.apache.org/hudson/job/Cassandra/ws/cassandra/test/data/legacy-sstables/e/Keyspace1.
[junit]  WARN 21:00:23,703 Invalid file '.svn' in data directory 
https://hudson.apache.org/hudson/job/Cassandra/ws/cassandra/test/data/legacy-sstables/b/Keyspace1.
[junit] -  ---
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableReaderTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 4.555 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.515 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.io.sstable.SSTableWriterAESCommutativeTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.824 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableWriterTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.035 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.util.BufferedRandomAccessFileTest
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 2.792 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.DynamicEndpointSnitchTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 6.179 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.NetworkTopologyStrategyTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.431 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.locator.OldNetworkTopologyStrategyTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.444 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.locator.ReplicationStrategyEndpointCacheTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.598 sec
[junit] 
[junit] Testsuite: 

Build failed in Jenkins: Cassandra #767

2011-03-09 Thread Apache Hudson Server
See https://hudson.apache.org/hudson/job/Cassandra/767/changes

Changes:

[eevans] update JDBC driver and tests for BytesType columns

Patch by eevans for CASSANDRA-2027

[eevans] column families of expected type (JDBC tests)

Patch by eevans for CASSANDRA-2027

[eevans] handle NumberFormatExceptions from BytesType.fromString

Patch by eevans for CASSANDRA-2027

[eevans] create column families of expected type (tests)

Patch by eevans for CASSANDRA-2027

[eevans] use AbstractType.fromString methods to marshal to BB

Patch by eevans for CASSANDRA-2027

[eevans] remove long term type

Patch by eevans for CASSANDRA-2027

[eevans] uuid term type (hyphenated hex string)

Patch by eevans for CASSANDRA-2027

[eevans] CASSANDRA-2027 single-quoted string literals

Patch by eevans for CASSANDRA-2027

--
[...truncated 1857 lines...]
[junit] Testsuite: 
org.apache.cassandra.dht.CollatingOrderPreservingPartitionerTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.31 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.OrderPreservingPartitionerTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 1.119 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.RandomPartitionerTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.768 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.RangeTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 0.422 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.ArrivalWindowTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.119 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.GossipDigestTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.053 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.SerializationsTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.432 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.hadoop.ColumnFamilyInputFormatTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.196 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.BloomFilterTrackerTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.423 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.CompactSerializerTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.379 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.LazilyCompactedRowTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 2.26 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.DescriptorTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.054 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.IndexHelperTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.06 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.LegacySSTableTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.394 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 14:24:34,933 Invalid file '.svn' in data directory 
https://hudson.apache.org/hudson/job/Cassandra/ws/cassandra/test/data/legacy-sstables/b/Keyspace1.
[junit]  WARN 14:24:35,528 Invalid file '.svn' in data directory 
https://hudson.apache.org/hudson/job/Cassandra/ws/cassandra/test/data/legacy-sstables/e/Keyspace1.
[junit] -  ---
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableReaderTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.809 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.138 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.io.sstable.SSTableWriterAESCommutativeTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.32 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableWriterTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.613 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.util.BufferedRandomAccessFileTest
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 0.507 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.DynamicEndpointSnitchTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 6.176 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.NetworkTopologyStrategyTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.428 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.locator.OldNetworkTopologyStrategyTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.45 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.locator.ReplicationStrategyEndpointCacheTest
[junit] Tests run: 2, Failures: 0, Errors: 

Build failed in Jenkins: Cassandra-Coverage #2

2011-03-09 Thread Apache Hudson Server
See https://hudson.apache.org/hudson/job/Cassandra-Coverage/2/changes

Changes:

[eevans] update JDBC driver and tests for BytesType columns

Patch by eevans for CASSANDRA-2027

[eevans] column families of expected type (JDBC tests)

Patch by eevans for CASSANDRA-2027

[eevans] handle NumberFormatExceptions from BytesType.fromString

Patch by eevans for CASSANDRA-2027

[eevans] create column families of expected type (tests)

Patch by eevans for CASSANDRA-2027

[eevans] use AbstractType.fromString methods to marshal to BB

Patch by eevans for CASSANDRA-2027

[eevans] remove long term type

Patch by eevans for CASSANDRA-2027

[eevans] uuid term type (hyphenated hex string)

Patch by eevans for CASSANDRA-2027

[eevans] CASSANDRA-2027 single-quoted string literals

Patch by eevans for CASSANDRA-2027

[gdusbabek] move all java cql into jdbc package and only expose a few bits. 
patch by gdusbabek, reviewed by eevans. CASSANDRA-2124

[gdusbabek] more comments in ColumnDecoder. patch by gdusbabek, reviewed by 
eevans. CASSANDRA-2124

[gdusbabek] implements getXXX methods to return values of the correct types. 
rearranges the JdbcDriverTest. renames SchemaDecoder. patch by gdusbabek, 
reviewed by eevans. CASSANDRA-2124

[gdusbabek] clean up JdbcDriverTest. patch by gdusbabek, reviewed by eevans. 
CASSANDRA-2124

[gdusbabek] first pass at column decoding. patch by gdusbabek, reviewed by 
eevans. CASSANDRA-2124

[jbellis] merge from 0.7

[gdusbabek] force time zone to eastern in RoundTripTest

[jbellis] fix #2 for counter replication NPE
patch by Stu Hood; reviewed by slebresne for CASSANDRA-2289

--
[...truncated 1826 lines...]
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.204 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.EmbeddedCassandraServiceTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.937 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 00:48:17,011 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 00:48:18,108 Generated random token 
Token(bytes[3eb4c1d226cfd05d5373a349a5f79519]). Random tokens will result in an 
unbalanced ring; see http://wiki.apache.org/cassandra/Operations
[junit] -  ---
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.InitClientTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 5.489 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.LeaveAndBootstrapTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 3.908 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 00:48:31,727 Node /127.0.0.3 'leaving' token mismatch. Long 
network partition?
[junit] -  ---
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.MoveTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 2.414 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.RemoveTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 3.639 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.RowResolverTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.587 sec
[junit] 
[junit] Flushing results...
[junit] Flushing results done
[junit] Cobertura: Loaded information on 799 classes.
[junit] Cobertura: Saved information on 799 classes.
[junit] Testsuite: org.apache.cassandra.service.SerializationsTest
[junit] Tests run: 2, Failures: 0, Errors: 1, Time elapsed: 0.632 sec
[junit] 
[junit] Testcase: 
testTreeResponseRead(org.apache.cassandra.service.SerializationsTest):
Caused an ERROR

Build failed in Jenkins: Cassandra #768

2011-03-09 Thread Apache Hudson Server
See https://hudson.apache.org/hudson/job/Cassandra/768/changes

Changes:

[eevans] remove incremental backups between runs

This is crap, but without it consecutive test runs fail when we try
to create a link for a target that already exists.

Patch by eevans for CASSANDRA-2027

[eevans] enable commented BytesType tests missed in earlier commit

Patch by eevans for CASSANDRA-2027

--
[...truncated 1857 lines...]
[junit] Testsuite: 
org.apache.cassandra.dht.CollatingOrderPreservingPartitionerTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 1.394 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.OrderPreservingPartitionerTest
[junit] Tests run: 6, Failures: 0, Errors: 0, Time elapsed: 1.121 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.RandomPartitionerTest
[junit] Tests run: 5, Failures: 0, Errors: 0, Time elapsed: 0.779 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.dht.RangeTest
[junit] Tests run: 13, Failures: 0, Errors: 0, Time elapsed: 0.432 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.ArrivalWindowTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.122 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.GossipDigestTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.054 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.gms.SerializationsTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.438 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.hadoop.ColumnFamilyInputFormatTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.193 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.BloomFilterTrackerTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.425 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.CompactSerializerTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.735 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.LazilyCompactedRowTest
[junit] Tests run: 7, Failures: 0, Errors: 0, Time elapsed: 31.985 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.DescriptorTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.054 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.IndexHelperTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.061 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.LegacySSTableTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.392 sec
[junit] 
[junit] - Standard Error -
[junit]  WARN 02:18:44,035 Invalid file '.svn' in data directory 
https://hudson.apache.org/hudson/job/Cassandra/ws/cassandra/test/data/legacy-sstables/e/Keyspace1.
[junit]  WARN 02:18:44,605 Invalid file '.svn' in data directory 
https://hudson.apache.org/hudson/job/Cassandra/ws/cassandra/test/data/legacy-sstables/b/Keyspace1.
[junit] -  ---
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableReaderTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 5.539 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 1.378 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.io.sstable.SSTableWriterAESCommutativeTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.934 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.sstable.SSTableWriterTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 1.123 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.io.util.BufferedRandomAccessFileTest
[junit] Tests run: 17, Failures: 0, Errors: 0, Time elapsed: 2.658 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.DynamicEndpointSnitchTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 6.181 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.NetworkTopologyStrategyTest
[junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.431 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.locator.OldNetworkTopologyStrategyTest
[junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.443 sec
[junit] 
[junit] Testsuite: 
org.apache.cassandra.locator.ReplicationStrategyEndpointCacheTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.68 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.SimpleStrategyTest
[junit] Tests run: 4, Failures: 0, Errors: 0, Time elapsed: 0.748 sec
[junit] 
[junit] Testsuite: org.apache.cassandra.locator.TokenMetadataTest
[junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.423 sec
[junit] 
[junit] Testsuite: