Re: proxy

2013-08-19 Thread Jason Trost
You may want to give pyaccumulo a try if you are using python. I designed it to be a little more python friendly. It uses the python thrift code and the proxy. github.com/accumulo/pyaccumulo Feedback and pull requests are welcome. --Jason sent from my DROID On Aug 19, 2013 11:01 AM, "Eric Newto

Re: How do I use scan

2013-08-19 Thread Jared Winick
Per Bill's suggestion, there is some documentation on common indexing techniques at http://accumulo.apache.org/1.5/accumulo_user_manual.html#_indexing. On Mon, Aug 19, 2013 at 3:55 PM, David Medinets wrote: > Are you familiar with the RegExFilter? > > http://affy.blogspot.com/2013/03/exampe-usin

Re: How do I use scan

2013-08-19 Thread David Medinets
Are you familiar with the RegExFilter? http://affy.blogspot.com/2013/03/exampe-using-accumulos-regexfilter-class.htmlhas an example. On Mon, Aug 19, 2013 at 4:44 PM, William Slacum < wilhelm.von.cl...@accumulo.net> wrote: > You could use an indexing strategy such as a term index or a sharded ind

Re: How do I use scan

2013-08-19 Thread William Slacum
You could use an indexing strategy such as a term index or a sharded index. I know there's an example for the sharded index packaged with Accumulo. On Mon, Aug 19, 2013 at 4:28 PM, Richard DeVita wrote: > I have Accumulo version 1.4.3 > > I wrote a java program to create an accumulo table from

How do I use scan

2013-08-19 Thread Richard DeVita
I have Accumulo version 1.4.3 I wrote a java program to create an accumulo table from a csv file of call data records columns in csv file are: callingPhone, calledPhone startTime crd-id The crd id is unique. there are multiple records for callingPhone and calledPhone Created a table with : r

Re: proxy

2013-08-19 Thread Eric Newton
You can just build at the top level. Ensure that the thrift command is in your path: $ thrift --version Thrift version 0.9.0 Build accumulo: $ mvn -Pthrift -DskipTests package Start accumulo: $ ./bin/start-all.sh Start the proxy: $ ./bin/accumulo proxy -p proxy/proxy.properties Run a py

Re: Implementing MultiOutputs with Accumulo

2013-08-19 Thread Billie Rinaldi
I think you can already write to multiple tables from the same reducer. The AccumuloOutputFormat outputs Text, Mutation where the Text is the name of the table. Is that not working? Billie On Fri, Aug 16, 2013 at 12:20 PM, HankWarLock wrote: > Need some sample code to get AccumuloOutputFormat