Re: conn.createTable hangs in MiniAccumuloCluster

2015-02-15 Thread Josh Elser
To clarify, do you mean that there is no content at all in the .out/.err files? Or just that there appear to be no exceptions in the files? Jeff Turner wrote: i'm playing with MiniAccumuloCluster, and can create a namespace, and list tables, but when i try to create a table

Re: conn.createTable hangs in MiniAccumuloCluster

2015-02-15 Thread Jeff Turner
good question. several of the .err files had the following, which i viewed as something-to-deal-with-later, versus the show-stopper that it is: log4j:WARN No appenders could be found for logger (org.apache.accumulo.start.classloader.AccumuloClassLoader). log4j:WARN Please initialize the

Iterators adding data: IteratorEnvironment.registerSideChannel?

2015-02-15 Thread Dylan Hutchison
Hello all, I've been toying with the registerSideChannel(iter) https://accumulo.apache.org/1.6/apidocs/org/apache/accumulo/core/iterators/IteratorEnvironment.html#registerSideChannel(org.apache.accumulo.core.iterators.SortedKeyValueIterator) method on the IteratorEnvironment passed to iterators

Re: Iterators adding data: IteratorEnvironment.registerSideChannel?

2015-02-15 Thread Andrew Wells
The main issue with adding data in an iterator is order. If you have can do a merge sort insertion, then you can guarantee order and its fine. But if you are inserting base on input you cannot guarantee order, and it can only be on scan iterator. On Feb 15, 2015 8:03 PM, Dylan Hutchison