Trying to tune cassandra tests

This commit is contained in:
Martin Stockhammer 2021-08-29 15:19:37 +02:00
parent d0aa5dd637
commit 7c4835ba14
3 changed files with 13 additions and 7 deletions

View File

@ -398,13 +398,16 @@
<startNativeTransport>true</startNativeTransport>
<logLevel>INFO</logLevel>
<loadAfterFirstStart>false</loadAfterFirstStart>
<yaml>
broadcast_rpc_address: 127.0.0.1
</yaml>
<systemPropertyVariables>
<java.net.preferIPv4Stack>true</java.net.preferIPv4Stack>
<cassandra.jmx.local.port>${cassandra.jmxPort}</cassandra.jmx.local.port>
</systemPropertyVariables>
<yaml><![CDATA[rpc_address: 127.0.0.1
broadcast_rpc_address: 127.0.0.1
listen_address: 127.0.0.1
auto_snapshot: false
snapshot_before_compaction: false
num_tokens: 1
]]></yaml>
</configuration>
</execution>
<execution>

View File

@ -24,6 +24,6 @@ cassandra.writeConsistencyLevel=QUORUM
cassandra.replicationFactor=1
cassandra.keyspace.name=ArchivaKeySpace
cassandra.cluster.name=archiva
cassandra.driverTimeoutMs=20000
cassandra.driverTimeoutMs=60000
archiva.cassandra.configuration.file=./archiva-cassandra.properties

View File

@ -191,8 +191,11 @@ public class CassandraMetadataRepositoryTest
);
CompletableFuture.allOf( tables.stream( ).map( table -> session.executeAsync( truncate( table ).build( ) ) )
.map( CompletionStage::toCompletableFuture ).collect( Collectors.toList( ) ).toArray( new CompletableFuture[0] ) )
.thenAccept( ( c ) -> {
.whenComplete( ( c, e ) -> {
if ( clearedFlag != null ) clearedFlag.set( true );
if (e!=null) {
System.err.println( "TRUNCATE ERROR DETECTED: " + e.getMessage( ) );
}
} ).get( )
;
}