I'm using Cassandra unit with Spark to do some testing, the problem that I have it's that it takes really long time from I finish my tests until Cassandra gets down. Besides the cpu gets pretty high in the last steps. I have override the yaml file to change the 9142 port and set another one, but my configuration is the same that the default one. Another quick question it's, how coiuld I disable the debug log in cassandra unit?
I'm using this version:
<dependency>
<groupId>org.cassandraunit</groupId>
<artifactId>cassandra-unit</artifactId>
<version>3.3.0.2</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
</exclusions>
</dependency>