Apache original requests through C #

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

+5
source share
1 answer

What exactly are you trying to achieve? If you want to write programs that use the apis spark, you are probably out of luck, as only scala, java and python apis. But if you want to request information about spark storage, you can see how a thrifty server comes with spark light and transmits your requests through it. Essentially, it should support any jdbc connection (see the beeline example in the documentation)

0
source

All Articles