Groot
Groot

Reputation: 311

Apache spark queries through C#

I was wondering if there is a way I can use C# to write queries to run on Apache spark. I know spark SQL queries can be written in java/scala/python. Is there any interface for c#?

Upvotes: 6

Views: 3834

Answers (1)

ayan guha
ayan guha

Reputation: 1257

What exactly you are trying to achieve? If you want to write programs which uses spark apis, probably you are out of luck as only scala,java and python apis are exposed. But if you want to query spark storage data then you can see the thriftserver comes with spark and pass your queries through it. Essentially it should support any jdbc connection (see beeline example in documentation)

Upvotes: 0

Related Questions