Currently I succeed to create an Ubuntu virtual machine and install Hadoop, Zookeeper and Accumulo. Now I need to create a test ASP.NET MVC application that reads and writes data to the Accumulo.
I've been looking around for .NET clients or some kind of rest API but my searches where unsuccessful. Any snippet I could find was in Java. So one of the options I am considering at the moment is to convert Java client into .NET library using IKVM.NET.
So my question are
- Is there any .NET provider for Apache Accumulo?
- If no provider, does it expose some kind of REST API to program against?
- If no REST what is the endpoint that I could use (and documentation links if possible) to create .NET provider myself?
- Is converting Java lib a good idea?