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
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-RapidMiner, 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>