Re: Out of memory when putting many rows in an Acc table

2014-10-01 Thread Eric Newton
I realized this could be due to an inability by the JVM to create additional native threads You may need to increase the nproc limit on your systems. -Eric On Wed, Oct 1, 2014 at 11:12 AM, Geoffry Roberts threadedb...@gmail.com wrote: Thanks for the response. The only reason I was

Re: Out of memory when putting many rows in an Acc table

2014-10-01 Thread Josh Elser
Or nofile (too). ulimit is your friend :) Eric Newton wrote: I realized this could be due to an inability by the JVM to create additional native threads You may need to increase the nproc limit on your systems. -Eric On Wed, Oct 1, 2014 at 11:12 AM, Geoffry Roberts

Re: Out of memory when putting many rows in an Acc table

2014-10-01 Thread Geoffry Roberts
Apparently, my JDBC driver, no matter what settings one sets, always tries to load the entire table into memory. I tried using Groovy's page facility thinking it would fetch rows in an increment of say, 10k. It creates the impression that it's doing this, but behind the scenes, it still tries to

Removing 'accumulo' from Zookeeper

2014-10-01 Thread Ranjan Sen
Hi Accumulo users, I have a accumulo znode that I want to remove from zookeeper. I tried to use the setAcl digest accumulo:secret but it is not working when I try to remove it [zk: localhost:2181(CONNECTED) 11] rmr /accumulo/31d38c2a-3a26-49b3-a786-42d7e1e5d2b0/users/root

Re: Removing 'accumulo' from Zookeeper

2014-10-01 Thread craig w
I'd double check that secret is correct and perhaps do you mean to use addauth? On Wed, Oct 1, 2014 at 8:10 PM, Ranjan Sen ranjan_...@hotmail.com wrote: Hi Accumulo users, I have a accumulo znode that I want to remove from zookeeper. I tried to use the setAcl digest accumulo:secret but

Re: Removing 'accumulo' from Zookeeper

2014-10-01 Thread Josh Elser
You definitely want addauth, not setacl. secret is the value of instance.secret in accumulo-site.xml. craig w wrote: I'd double check that secret is correct and perhaps do you mean to use addauth? On Wed, Oct 1, 2014 at 8:10 PM, Ranjan Sen ranjan_...@hotmail.com