In documentation see below details for DSE 6.x.x
The o.a.c.triggers.ITrigger the interface was modified from augment to augmentNonBlocking for non-blocking internal architecture. Updated trigger implementations must be provided on upgraded nodes. If unsure, drop all existing triggers before upgrading to DataStax Enterprise (DSE) 6.0. Because a rewrite of this interface is required in DSE 6.0, DataStax can help you find a solution.
I'm looking to modify my code to comply above, however, could not able to find the jar which is having the interface having renamed method augmentNonBlocking
right now I'm using below dependency for this interface:
<dependency> <groupId>org.apache.cassandra</groupId> <artifactId>cassandra-all</artifactId> <version>3.11.6</version> </dependency>
still having an augment method in the code, any input will help.