I want to deploy a classifer I trained using mllib over http service. So, I am wondering whether if I load the serialized object in my code and send it some data is it necessary to run a local version of spark as well. And if so is there any effect of having multiple instances of a service running on a same machine (do I have to configure each spark separatelly).
Basically I want to avoid having a spark job startup each time a request for a new classification is made, and do not have a spark streaming setup.
cheers