ingest csv file

2014-10-07 Thread donald.fossouo
Hi, I am beginner with Accumulo, and I would like to know if someone can give me a sample of ingesting file to accumulo. I found out an example but I am running the hadoop 2.4.0 so the same code with accumulo-pig gives me an error Regards

Re: ingest csv file

2014-10-07 Thread David Medinets
https://github.com/medined/D4M_Schema/blob/master/schema/src/main/java/com/codebits/examples/d4m/CreateTablesAndLoadData.java shows a working example of loading three different CSV files into Accumulo. You can easily extend the code to read other CSV files. With a little bit of work, the CSV

RE: ingest csv file

2014-10-07 Thread donald.fossouo
Thanks for your answer, sorry but I am not familiar with java so can you just give me a line of how I can use this class In my operating system ? I supposed that I have to compile it first with maven or just download the java file but how to call that and specify my input csv file. Regards

Re: Remotely Accumulo

2014-10-07 Thread Geoffry Roberts
All, Thanks for the responses. Is this a problem for Accumulo? Reverse DNS is yielding my ISP's host name. You know the drill, my IP in reverse followed by their domain name, as opposed to my FQDN, which what I use in my config files. - Running Accumulo 1.5.1 - I have only one interface.

Re: Remotely Accumulo

2014-10-07 Thread Josh Elser
Can you provide the output from netstat, lsof or /proc/$pid/fd for the tserver? Assuming you haven't altered tserv.port.client in accumulo-site.xml, we want the line for port 9997. From my laptop running a tserver on localhost: $ netstat -na | grep 9997 tcp4 0 0 127.0.0.1.9997

Re: Remotely Accumulo

2014-10-07 Thread Geoffry Roberts
...it's when you make a Connector, and your client will talk to a tabletserver to authenticate, that your program should hang. It would be good to verify that. My program should hang? Would you expand? That is exactly what it is doing. I am able to get a connector. But when I try to iterate

Re: Remotely Accumulo

2014-10-07 Thread Josh Elser
Ok, this record: tcp0 0 0.0.0.0:99970.0.0.0:* LISTEN Means that your is listening on the correct port on all interfaces. There shouldn't be issues connecting to the tserver. This is also confirmed by the fact that you authenticated and got a Connector (this does