tags:

views:

114

answers:

2

I am working on a solution where I will have a Hadoop cluster with Hive running and I want to send jobs and hive queries from a .NET application to be processed and get notified when they are done. I can't find any solutions for interfacing with Hadoop other than directly from a Java app, is there an API I can access that I am just not finding?

+1  A: 

Apparently it is possible to connect to Hadoop with non-Java solutions - see Do I have to write my application in Java?

Matthew Hegarty
Ah, I knew about streaming (but that works from the command-line) - but I didn't know about the Hadoop Pipes which is SWIG compatible so I should be able to generate a C# api on top of it.
James Avery
+2  A: 

Thrift API is also another way for other language to access hdfs and hive

zjffdu