Forecast of jobs


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Forecast of jobs
# 1  
Old 06-28-2017
Forecast of jobs

Hello,
I'm looking for forecast of Autosys Jobs, along with their status, in a specific time period.

I tried job_depends and autorep.
  1. Problem with autorep is, I Cannot use from and to time, like I can use with job_depends, but the results are in a simple single line format for each job, with when they were last run etc.

    Provided '-r 7' I can retrieve jobs for past 7 days, but I need for future or past, depending on the time, which the user specifies from the app.
  2. Problem with job_depends, is that, it gives me lot of unwanted(in my case) information, like dependant jobs and atomic conditions etc., which is really hard to filter the results.

All I need is JobName, current job status(hold, ice, terminated, etc.), in a specified time period.


Thanks, in advance.

Last edited by rbatte1; 06-29-2017 at 12:31 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Shell script to run multiple jobs and it's dependent jobs

I have multiple jobs and each job dependent on other job. Each Job generates a log and If job completed successfully log file end's with JOB ENDED SUCCESSFULLY message and if it failed then it will end with JOB ENDED with FAILURE. I need an help how to start. Attaching the JOB dependency... (3 Replies)
Discussion started by: santoshkumarkal
3 Replies

2. Shell Programming and Scripting

waiting on jobs in bash, allowing limited parallel jobs at one time, and then for all to finish

Hello, I am running GNU bash, version 3.2.39(1)-release (x86_64-pc-linux-gnu). I have a specific question pertaining to waiting on jobs run in sub-shells, based on the max number of parallel processes I want to allow, and then wait... (1 Reply)
Discussion started by: srao
1 Replies

3. Solaris

Cron jobs and at jobs

There are two jobs in Solaris , Cron and at jobs.. I know how to disable or enable cron jobs. How can I enable at jobs and disable it. Kindly help. Rj (2 Replies)
Discussion started by: jegaraman
2 Replies

4. Shell Programming and Scripting

Shell script for weather / forecast

#!/bin/sh #Argentina Only :s # This script requires curl and iconv, iconv is because they do not use Weather Service utf-8 ¬¬ # 87938 = Ushuaia # 87934 = Rio Grande # 87418 = Mendoza # 87582 = Capital Federal # 87692 = Mar del Plata # 87480 = Rosario # 87344 = Cordoba # 87371 = Santa Fe ... (8 Replies)
Discussion started by: yamirokuay
8 Replies

5. Shell Programming and Scripting

at jobs.

Please suggest how can i modify or change the at jobs ? (4 Replies)
Discussion started by: anupdas
4 Replies

6. Solaris

at jobs

how to schedule a reboot using the at jobs ? (3 Replies)
Discussion started by: priky
3 Replies

7. Shell Programming and Scripting

background jobs exit status and limit the number of jobs to run

i need to execute 5 jobs at a time in background and need to get the exit status of all the jobs i wrote small script below , i'm not sure this is right way to do it.any ideas please help. $cat run_job.ksh #!/usr/bin/ksh #################################### typeset -u SCHEMA_NAME=$1 ... (1 Reply)
Discussion started by: GrepMe
1 Replies

8. UNIX for Advanced & Expert Users

jobs

I am running this script below as a cron job for user root. In fact I set this job early last week and expected it to delete archive logs older than 7 days, but doesn't work - just displays the echo messages and no error. Can somebody advise me the probable causes ?? DAY_AFTER=7; export... (1 Reply)
Discussion started by: vbaskar
1 Replies
Login or Register to Ask a Question
IONRC(5)						      ICI configuration files							  IONRC(5)

NAME
ionrc - ION node management commands file DESCRIPTION
ION node management commands are passed to ionadmin either in a file of text lines or interactively at ionadmin's command prompt (:). Commands are interpreted line-by line, with exactly one command per line. The formats and effects of the ION node management commands are described below. TIME REPRESENTATION
For many ION node management commands, time values must be passed as arguments. Every time value may be represented in either of two formats. Absolute time is expressed as: yyyy/mm/dd-hh:mm:ss Relative time (a number of seconds following the current reference time, which defaults to the current time at the moment ionadmin began execution but which can be overridden by the at command described below) is expressed as: +ss COMMANDS
? The help command. This will display a listing of the commands and their formats. It is the same as the h command. # Comment line. Lines beginning with # are not interpreted. e { 1 | 0 } Echo control. Setting echo to 1 causes all output printed by ionadmin to be logged as well as sent to stdout. Setting echo to 0 disables this behavior. v Version number. Prints out the version of ION currently installed. HINT: combine with e 1 command to log the version number at startup. 1 node_number { ion_config_filename | '' } The initialize command. Until this command is executed, the local ION node does not exist and most ionadmin commands will fail. The command configures the local node to be identified by node_number, a CBHE node number which uniquely identifies the node in the delay-tolerant network. It also configures ION's data store (SDR) and shared working-memory region using either the settings found in the ion_config_filename file or, if '' is supplied as the ion_config_filename, a set of default settings. Please see ionconfig(5) for details. For example: 1 19 '' would initialize ION on the local computer, assigning the local ION node the node number 19 and using default values to configure the data store and shared working-memory region. @ time The at command. This is used to set the reference time that will be used for interpreting relative time values from now until the next revision of reference time. Note that the new reference time can be a relative time, i.e., an offset beyond the current reference time. a contact start_time stop_time source_node dest_node xmit_data_rate The add contact command. This command schedules a period of data transmission from source_node to dest_node. The period of transmission will begin at start_time and end at stop_time, and the rate of data transmission will be xmit_data_rate bytes/second. d contact start_time source_node dest_node The delete contact command. This command deletes the scheduled period of data transmission from source_node to dest_node starting at start_time. To delete all contacts between some pair of nodes, use '*' as start_time. i contact start_time source_node dest_node This command will print information (the stop time and data rate) about the scheduled period of transmission from source_node to dest_node that starts at start_time. l contact This command lists all scheduled periods of data transmission. a range start_time stop_time one_node the_other_node distance The add range command. This command predicts a period of time during which the distance from one_node to the_other_node will be constant to within one light second. The period will begin at start_time and end at stop_time, and the distance between the nodes during that time will be distance light seconds. d range start_time one_node the_other_node The delete range command. This command deletes the predicted period of constant distance between one_node and the_other_node starting at start_time. To delete all ranges between some pair of nodes, use '*' as start_time. i range start_time one_node the_other_node This command will print information (the stop time and range) about the predicted period of constant distance between one_node and the_other_node that starts at start_time. l range This command lists all predicted periods of constant distance. m utcdelta local_time_sec_after_UTC This management command sets ION's understanding of the current difference between correct UTC time and the time values reported by the clock for the local ION node's computer. This delta is automatically applied to locally obtained time values whenever ION needs to know the current time. For machines that use UTC natively and are synchronized by NTP, the value of this delta should be 0, the default. m clockerr known_maximum_clock_error This management command sets ION's understanding of the accuracy of the scheduled start and stop times of planned contacts, in seconds. The default value is 1. When revising local data transmission and reception rates, ionadmin will adjust contact start and stop times by this interval to be sure not to send bundles that arrive before the neighbor expects data arrival or to discard bundles that arrive slightly before they were expected. m production planned_data_production_rate This management command sets ION's expectation of the mean rate of continuous data origination by local BP applications throughout the period of time over which congestion forecasts are computed. For nodes that function only as routers this variable will normally be zero, which is the default. m consumption planned_data_consumption_rate This management command sets ION's expectation of the mean rate of continuous data delivery to local BP applications throughout the period of time over which congestion forecasts are computed. For nodes that function only as routers this variable will normally be zero, which is the default. m occupancy data_store_occupancy_limit This management command sets the maximum number of bytes of storage space in ION's SDR non-volatile data store that can be used for the storage of bundles. The default value is 60% of the SDR data store's total heap size. m horizon { 0 | end_time_for_congestion_forecasts } This management command sets the end time for computed congestion forecasts. Setting congestion forecast horizon to zero sets the congestion forecast end time to infinite time in the future: if there is any predicted net growth in bundle storage space occupancy at all, following the end of the last scheduled contact, then eventual congestion will be predicted. The default value is zero, i.e., no end time. m alarm 'congestion_alarm_command' This management command establishes a command which will automatically be executed whenever ionadmin predicts that the node will become congested at some future time. By default, there is no alarm command. m usage This management command simply prints ION's current data store occupancy (the number of bytes of space in the SDR non-volatile data store that are occupied by bundles), the limit on occupancy, and the maximum level of occupancy predicted by the most recent ionadmin congestion forecast computation. r 'command_text' The run command. This command will execute command_text as if it had been typed at a console prompt. It is used to, for example, run another administrative program. s The start command. This command starts the rfxclock task on the local ION node. x The stop command. This command stops the rfxclock task on the local ION node. h The help command. This will display a listing of the commands and their formats. It is the same as the ? command. EXAMPLES
@ 2008/10/05-11:30:00 Sets the reference time to 1130 (UTC) on 5 October 2008. a range +1 2009/01/01-00:00:00 1 2 12 Predicts that the distance between nodes 1 and 2 (endpoint IDs ipn:1.0 and ipn:2.0) will remain constant at 12 light seconds over the interval that begins 1 second after the reference time and ends at the end of calendar year 2009. a contact +60 +7260 1 2 10000 Schedules a period of transmission at 10,000 bytes/second from node 1 to node 2, starting 60 seconds after the reference time and ending exactly two hours (7200 seconds) after it starts. SEE ALSO
ionadmin(1), rfxclock(1) perl v5.14.2 2012-05-25 IONRC(5)