The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
Answers
So you could train a model to recognize languages, your user could use a website that allows a request to be send to the web service (like a French sentence) and rapidminer would respond with 'French sentence'
Bit of a stupid example but it gives a the basic idea. In case of webservices Rapidminer is just a Blackbox in the middle responding to external input.
It doesn't use the job agents to ensure low latency, but what processes are really used behind the scenes I don't know.
When you expose it through a Webservice it doesn't enter to the queue of any agent it goes directly to the server and the only things that affect the response time is the availability of the DB that handles the RM Server and the free RAM you assigned to the Server itself and the max concurrent calls you assigned on the configuration.
The only bad thing of the WS is that it may be affected by the workload of your Server and this may give you mixed results while consuming the service. I have a WS that for 90% of the requests answers under 1s but at certain hours the same call may take 24s thats why I'm thinking on trying the scoring agent that works similar to the agents for Server but also leaves behind part of the things that WS and Agents load by default and that are not always used.
Maybe @IngoRM, @sgenzer or @rfuentealba could help us understand more.
So as far as running a process on server is concerned the most important aspect is Job-Agent(s) apart from its RAM capabilities i.e, greater the number of job-agents for the ques latency period of processes decreases and the time period of process execution depends on the RAM of the job-agent.
As Job-Agents are independent RapidMiner Server instance so can we say that any job-agent not on machine where our server has been installed will execute a process faster or speed at which Job-Agents will execute the same processes depends on there RAM?
For webservices the execution engine remains same for all of them so there time of execution depends on the load on the server.So how the scoring-agent improves the speed and just like we can have multiple job-agents can we have multiple scoring-agents as well?