1) i have a script sp19.sh in the path /home/killer/Desktop/alok/scripts/test1 #script to copy file 1 in test dir a=`ls -t|cut -c 1,4|head -1` b=`expr $a + 1` cp "$a" "$b" 2) i scheduled a task to copy a file named 1 in the same locati
I would like to build a job scheduler. So this job scheduler allows the user to configure: Job start time. (datetime value) Job frequency: minutes, hours, days, months, years (any integer value) I have 2 options on how to build this scheduler: Use th
I have currently scheduled a job to backup all my database files. I know that the script works because I can manually run the job. I've also scheduled it to run everyday at midnight, and made sure it is enabled. However, the scheduler does not seem t
Goal: learn how to run or co-schedule or execute executables/applications with a sbatch job submission using either srun or mpirun Research: Code snippet: #!/bin/bash #SBATCH --job-name LEBT #SBATCH --partition=angel #SBATCH --nodelist=node38 #SBATCH
I'm using resque gem, and I'm running the jobs through the following command: rake resque:work QUEUE='*' But the problem is: As my SSH connection with remote server gets disconnected, or I close the SSH session window that is running the process rake
I am making a auction web app. When a ad is created, I automatically add expiration date into database. before_create :set_expiration_date def set_expiration_date self.expiration_date = Time.now + 60.days end How can I add a background task/job, so w
I have a portlet that launches a scheduled job. But when I try to pause or stop it, the job continues executing. I don't know if I'm doing something wrong when creating the scheduled job or when I'm trying to stop/pause it. Here is how I launch the j
I have a requirement to run multiple mapreduce jobs based on different set of files that hit the same table. I was exploring Oozie but I am not aware of Oozie completely. My requirement is like 1. To run jobs based on time bound (and/or) File bound.
We have a Java process, which we want to perform load testing on. This process makes a REST call to an external vendor. We want to monitor the performance over the weekend. It should be tested with around 1000 instances of the process running. What a
Say, for example, I want to run the following program double x = 15.6 System.out.println(x); But I wanted to repeat the program until a certain time has elapsed, such as the following: do{ double x = 15.6 System.out.println(x); }while (current time i
Here's a description of what the program should do. The program should create a file and five threads to write in that file... The first thread should write from 1 to 5 into that file. The second thread should write from 1 to 10. The third thread sho
I am on my way for becoming a cloudera Hadoop administrator. Since my start, I am hearing a lot about computing slots per machine in a Hadoop Cluster like defining number of Map Slots and Reduce slots. I have searched internet for a log time for gett
I would like to create a system that would eventually store data in a table from another table automatically (daily/hourly). However, they are in two different databases as well, Oracle and MySQL. Simple process would be: Get data in Oracle Database
I am trying to setup a DBMS_SCHEDULER Job to run exactly at 1 AM on 1st of January every year on Oracle 11g. How to setup its attributes to be absolutely sure it wont get executed in wrong hour, because of timezone differences nor Daylight Savings Ti
Are there any open source Job Scheduler with REST API for commercial use which will support features like: Tree like Job dependency Hold & Release Rerun failed steps Parallelism Help would be appreciated :) NOTE: we are looking for open source altern
I have an agent job set to run log backups every two hours from 2:00 AM to 11:59 PM (leaving a window for running a full or differential backup). A similar job is set up in every one of my 50 or so instances. I may be adding several hundred instances
In a job submission script (Cray XE6) what is the difference between 'number of parallel tasks' (-n) and 'number of parallel tasks per node' (-N)?Im inexperienced in this but some googling gave: It looks like a MPI parameter in an example: # Launch t
I am trying to execute a php file from sos-berlin jobscheduler. My OS is windows 7. I am following the documentation http://www.sos-berlin.com/mediawiki/index.php/How_to_execute_a_PHP_script_with_JS #!/usr/bin/php <?php echo "hello"; ?> Bu
I've got some background jobs that run for a long time (hours). If I deploy my app while those background jobs are running, will the dynos those jobs are attached to get restarted (thus killing the jobs)? More specifically, those background jobs deal
Problem: I have 3 machines, each machine have a limit of 30 ms time, each machine have 3 zones that a task can't be executed there. The tasks have a P (priority) and W (weight, which is the time to complete the task in this setup), tasks must be firs
I am new to the oracle job scripts. I wrote some purge procedure to clean all the old data and retain the last 3 months data... procedure is executed successfully. its working when im calling manually also. procedure is as follows: CREATE OR REPLACE
In GAE we can add cron job manually by editing the cron.xml file <?xml version="1.0" encoding="UTF-8"?> <cronentries> <cron> <url>/cron/addCount/1</url> <description>Add count + 1 every 1 minutes<
i want to schedule a job in SAS-DIS. i tried the process using sas management console,bt an error is popping up saying scheluing server not found. can anyone help me how to setup a scheduling server? or is it a software to be installed? ThanksI think
Obviously I can set the delay to the number of miliseconds until the date I want, but that's not really going to work well in some cases, max int values are going to be a problem. If Kue can't do it, I can store date-specific jobs that are too far aw
We are using Magento as our eCommerce platform. We have Oracle apps in which we store our Customer,Price, Product etc. details. Our requirement is that , we have so many customer groups & each customer is having different prices for products. So for
I just figured out how to send jobs to be processed on machines on the cluster by using Condor. Since we have a lot of machines and not each of those machines are configured the same, I was wondering: Is it possible to tell condor only to dispatch my
I am managing a Hadoop cluster that is shared between a number of users. We frequently run jobs with extremely slow mappers. For example, we might have a 32 GB file of sentences (one sentence per line) that we want to NLP parse (which takes say 100 m
I have an application that has to launch jobs repeatingly. But (yes, that would have been to easy without a but...) I would like users to define their backup frequency in application. In worst case, they would have to choose between : weekly, daily,
I am creating a library system. When a book is reserved, i want it to automatically change the status back to "Available" in 3 days if the reserved user does not borrow it. I can create a trigger to fire when the status is changed to "Reser
some short and probably stupid questions about PBS: 1- I submit jobs using qsub job_file is it possible to submit a (sub)job inside a job file? 2- I have the following script: qsub job_a qsub job_b For launching job_b, it would be great to have befor