I am getting Cassandra task timeout error while executing
CREATE TABLE IF NOT EXISTS subscriber.packagestats (packageid text PRIMARY KEY, numaccounts counter);
LOGS
Cassandra.ServerErrorException: java.lang.RuntimeException: java.util.concurrent.ExecutionException: java.lang.NullPointerException at Cassandra.Tasks.TaskHelper.WaitToComplete(Task task, Int32 timeout) at Cassandra.Session.Execute(IStatement statement)
Query Consistency level is set to ALL
Used Cassandra c# driver version is 3.0.5
It was working fine until now but suddenly it starts throwing the exception , I also tried to increase the timeout upto 1 minute but still the problem persists.
Any help would be appreciated ?
system.log- Ashraful IslamCassandra.ServerErrorExceptionmeans that there was an unexpected exception server side, as said by @AshrafulIslam, you should check the system.log file for the server side error log. - jorgebg