I am on Linux VM. I know there is the command condor_submit hello.submit that will submit a job to cluster. However if I want to remove the jobs submitted. Is there a way? I created a user first using the command: sudo adduser user2 then logged in to user2 with command su user2 to then submit a job using the code above. How can I "unsubmit"/remove it?
remove a job form cluster
266 Views Asked by Mohammed At
1
There are 1 best solutions below
Related Questions in JOBS
- how to identify user who created a specific job on jenkins?
- Sort order for job steps in SQL Server 2008 R2
- Laravel 5.2 Job with delay fires instantly instead of waiting
- Qt5: How to do a cleanup manager (1 or more tasks) that run periodically to do cleaning-job?
- Scheduled job to copy data
- Why hadoop slave cannot run a job?
- Threadpool how to make a thread pool with queue in C?
- What is the role of the last argument ( $uniqueId ) in PHP Gearman's doNormal()?
- Defining node agenda jobs for these use cases
- Job not executing at fixed rate
- Jenkins jobs running on slaves
- Jenkins jobs configuration checking before run it
- Best way to check multiple tasks done in Celery?
- Chaining steps in spring batch
- Jenkins Permission's to user according to jobs
Related Questions in JOB-SCHEDULING
- Javascript: Schedule HTTP requests for later
- Scheduling multiple instance of a single java process
- Automate an Ant Script to run at set times
- How to integrate spring-xd batch jobs with Control-M scheduler
- quartz job suspended while creating httpclient
- Greedy algorithm: highest value first vs earliest deadline first
- Defining node agenda jobs for these use cases
- Cannot create bean when start the application
- If I use both @PostConstruct and @Scheduled on a bean method what will be the consequences
- Get feedback from a scheduled job while it is processed
- Is it possible to run jobs on remote executors with APScheduler?
- job scheduler not working in xiaomi android
- UC4 Job Execution with Webservice
- How can one store a mutable set of items `(t, p)` so that queries for the `k` items with minimized `(n-t)*p` for some `n` are efficient?
- How to create a async Oracle job to run in multiple instances
Related Questions in CONDOR
- condor: can't find address of local schedd
- Restart job in Condor after certain amount time
- Julia and HTCondor - ENV["HOME"] causes error on Condor
- Manually define ClusterID of HTCondor
- HTCondor job submission tags
- how can I test if any of my HTCondor jobs returned with a non-zero error code?
- Condor job - running shell script as executable
- HTCondor: "Process: not found [No such file or directory]" when passing $(Process) as an arguments to executable
- Code updates during submission of condor jobs
- How do I have condor automatically import my conda environment when running my python jobs?
- How to help condor find the file it should execute in a job?
- What type of installation shall I use to install Condor on 4 servers running CentOS
- How to use only one node for a Condor cluster job?
- How to get the queue number from CONDOR into your R job
- Condor Timeout for idle jobs
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
the
condor_rmcommand is what you are looking for. It takes either the job id thatcondor_submitprinted out, or-afor all jobs, or if you are root, the name of the user whose jobs you want to remove.