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 Engineering
Hi. 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>