Feature Request: Packaging a RapidMiner Process in executable form

rfuentealba
New Altair Community Member
Hello, RapidMiner people!
If the RapidMiner Job Agent is able to execute a process, even if it is in a different machine and connected to RapidMiner Server to retrieve the required information, would it be possible to create a "specific kind of Job Agent" to compile a small RapidMiner process and distribute it to be used in different computers with different settings?
It would be nice if it could:
What do people say about this? Copying to @sgenzer and @IngoRM.
All the best,
Rodrigo.
If the RapidMiner Job Agent is able to execute a process, even if it is in a different machine and connected to RapidMiner Server to retrieve the required information, would it be possible to create a "specific kind of Job Agent" to compile a small RapidMiner process and distribute it to be used in different computers with different settings?
It would be nice if it could:
- Read the .rmp process
- Identify the plugins required by the process
- Identify the connections required by the process
- Pack all of this in a fat jar
- Make a config file for the secrets
- Store all of this in a zip file with the process inside.
/Titanic Process/bin/process.bat /Titanic Process/bin/process.sh /Titanic Process/lib/process.jar /Titanic Process/etc/config.xml /Titanic Process/repository/Data.IOObjectThat way, the process itself can be executed without the need of a user having RapidMiner Studio/Server, useful for distributing small processes, integrating only the engine with other applications, etc.
What do people say about this? Copying to @sgenzer and @IngoRM.
All the best,
Rodrigo.
Tagged:
2
Best Answers
-
you can use the RTS and ship it to integrate via webservices into anything. The new python lib allows you to effectivly call these processes from jupyter. How much does this cover your needs?Best,Martin1
-
have a look at https://github.com/rapidminer/python-rapidminer-beta#scoring . That's what you can use.Best,Martin
1
Answers
-
Hi Rodrigo, is this for Linux or Windows or both? On Linux you can ssh remote@machine.com 'java -jar filename.jar'. On Windows you could try PSExec. As long as all your clients can see a shared database on the network, I don't see why this wouldn't be possible. As you said, you can pack everything into a fat jar inside something like IntelliJ. Once you have your fat jar, you could probably use a job sheduler to manage remote execution.
I would be very interested to have similar functionality so I like this topic. Thanks for bringing it up.
regards,
Alex0 -
Hello @hughesfleming68,
The idea behind this feature request is to be able to execute a single RapidMiner process in computers that don't have RapidMiner installed and where remote execution isn't a good idea. The idea of having something that doesn't depend on RM Studio or Server and that can help us distribute certain processes for users that don't have access or experience. It can make RapidMiner more ubiquitous.
It's more like having a RMRE (RapidMiner Runtime Execution) that works on the holy trinity (Windows, Mac, Linux) without giving the user the possibility of modifying the process (that would be bad), but flexible enough to let them configure usernames, passwords, etc.
All the best,
Rodrigo.2 -
you can use the RTS and ship it to integrate via webservices into anything. The new python lib allows you to effectivly call these processes from jupyter. How much does this cover your needs?Best,Martin1
-
0
-
have a look at https://github.com/rapidminer/python-rapidminer-beta#scoring . That's what you can use.Best,Martin
1 -
Yesss... This is exactly what I need. Didn't know about it!1
-
well, it's currently in BETA
will be officially released soon.
0 -
Let's try it then. Will let you know.0
-
Hi Rodrigo,if I understood correctly that is exactly what the scoring agent does! The only problem is that it has been designed for a specific use case (high number of calls with very low latency) and it has a price tag that goes along with that use case . . .I would welcome a cheaper/free version for the use cases that Rodrigo mentions.Kind regards,Sebastian0
-
Hi @SGolbert ,please always have a chat with our sales teams if those concerns arise. Usually one can find solutions.Best,Martin1