Dear developers,
I have a performance problem with my multithreading java application.
My Application puts documents to an couchbase bucket.
To put the documents into the bucket i open a thread, insert 100 documents and interrupt this thread after working.
Before interrupting the thread i shutdown the defaultcouchbaseenvironment, close the bucket and disconnect the cluster.
Also after interrupting the thread and stopping all couchbase activities a couchbase thread names cb-computations-(number) is waiting. For every thread this couchbase thread will be started and not ending.
bucket.close();
cluster.disconnect();
env.shutdown();
this.interrupt();
Here is a print screen from the java visualvm tool:
https://drive.google.com/file/d/0B64BQHqdU6i8VUlOZ09RNmg4aTA/view?usp=sharing
How can i stop or interrupt this cb-computations threads?
I’m using the java sdk 2.1.3 and the couchbase server 3.0.3-1716
Thanks for your help
Regards
stnik