Apache spark implementation in Nodejs Application

7.8k Views Asked by At

I want to implement apache spark in my nodejs application,

I have tried implementing Eclairjs but having some issues implementing it.

1

There are 1 best solutions below

3
lev On BEST ANSWER

Eclairjs appears to be dead

if you want to access spark from node, I would recommend using livy
livy is a service that runs a spark session, and exposes a rest api to that session.

there seem to a be node client already: https://www.npmjs.com/package/node-livy-client
(I never used the node client, so I can't say if it's any good)