Due to recent updates, all users are required to create an Altair One account to login to the RapidMiner community. Click the Register button to create your account using the same email that you have previously used to login to the RapidMiner community. This will ensure that any previously created content will be synced to your Altair One account. Once you login, you will be asked to provide a username that identifies you to other Community users. Email us at Community with questions.
Request stop in Rapidminer Server
Hello everyone,
I was running a process in Rapidminer server. When i wanted to stop it, i pressed the "Request stop" button. But still, this process is encountered among the "Running" processes. How can i stop this process and delete it from the Executions tab?
Thanks in advance
I was running a process in Rapidminer server. When i wanted to stop it, i pressed the "Request stop" button. But still, this process is encountered among the "Running" processes. How can i stop this process and delete it from the Executions tab?
Thanks in advance
Tagged:
0
Best Answer
-
aschaferdiek Employee, Member Posts: 76 RM EngineeringHi. Unfortunately there's currently no other way. Please ask your administrator to do those steps if you absolutely need it.
5
Answers
SELECT * FROM jobservice_job WHERE state = 'RUNNING';
// Use the ID column to update the state
UPDATE jobservice_job SET state = 'STOPPED' WHERE id = 'The-ID-You-Found-Out-In-The-Query-Above';
<i>rmsdb=> SELECT * FROM jobservice_job</i><br><i>jobservice_job jobservice_job_context_in jobservice_job_error</i><br><i>jobservice_job_agent jobservice_job_context_macro jobservice_job_log</i><br><i>jobservice_job_context jobservice_job_context_out </i>