Hi
could someone tell me how do I update an autosys job?
i was trying something like:
$ jil < solarCleaning.jil -V none
______________________________________________________________________________
Insert/Updating Job: solarCleaning
*** CANNOT INSERT Job: solarCleaning, because... (3 Replies)
autorep -J dfile_252500_U_HSP_f2purge -w
Job Name Last Start Last End ST Run Pri/Xit
________________________________________________________________ ____________________ ____________________ __ _______ ___
... (1 Reply)
My project uses Autosys.
I am new to this product and I don't know where to start from.
Q1. Please provide me the link where I can get Autosys documentation
Q2. Please refer a good book on Autosys. (Beginner/Intermediate Level) (0 Replies)
Hi,
I am trying to schedule an autosys job for weblogic server reboot. When i run the job it is failing with the following error:
/bin/sh: /path/stop_wls instancename: not found
The following is my jil and i dont refer to /bin/sh at all
update_job: mgd_shutdown_cmd.jil job_type: c ... (3 Replies)
We need to configure autosys that when a job fails continously for 3 times, we need to call another job.
Is this possible in Autosys, or can anyone advice on the alternative. (2 Replies)
Hi Can any one tell me free online good book for autosys job.
Also whats the basic difference between Autosys job and cron job.
Thanks in advance. (2 Replies)
I need to know the list of autosys job that run between given time.
I have the following command.
job_depends -t -J abc% -F "12/25/2010 03:00" -T "12/26/2010 05:00"
Above command will give the list of job that run between time 3 AM and 5 AM.
But the it gives me in random order how to... (1 Reply)
I have submitted an autosys job and force start it. Autosys hit the job 4 times to restart but it did not start and finally I terminate the job. Any idea why the job did not start. Below is the code I executed.
1214 missun0ap /export/home/bzn97r/develop/dswi/jil$ sendevent -E FORCE_STARTJOB... (0 Replies)
Hi Gurus,
I am newbie for autosys scheduler. I am wondering is there a command to list all job boxes or list all autosys jobs?
Thanks in advance. (0 Replies)
Discussion started by: ken6503
0 Replies
LEARN ABOUT DEBIAN
fec
FEC(3) BSD Library Functions Manual FEC(3)NAME
fec_new, fec_encode, fec_encode, fec_free -- An erasure code in GF(2^m)
SYNOPSIS
#include <fec.h>
void *
fec_new(int k, int n);
void
fec_encode(void *code, void *data[], void *dst, int i, int sz);
int
fec_decode(void *code, void *data[], int i[], int sz);
void *
fec_free(void *code);
DESCRIPTION
This library implements a simple (n,k) erasure code based on Vandermonde matrices. The encoder takes k packets of size sz each, and is able
to produce up to n different encoded packets, numbered from 0 to n-1, such that any subset of k of them permits reconstruction of the origi-
nal data.
The data structures necessary for the encoding/decoding must first be created using calling fec_new() with the desired parameters. The code
descriptor returned by the function must be passed to other functions, and destroyed calling fec_free()
Allowed values for k and n depend on a compile-time value of GF_BITS and must be k <= n <= 2^GF_BITS. Best performance is achieved with
GF_BITS=8, although the code supports also GF_BITS=16.
Encoding is done by calling fec_encode() and passing it pointers to the code descriptor, the source and destination data packets, the index
of the packet to be produced, and the size of the packet.
fec_decode() with pointers to the code, received packets, indexes of received packets, and packet size. Decoding is done in place, possibly
shuffling the arrays passed as parameters. Decoding is deterministic as long as the received packets are different. The decoding procedure
does some limited testing on this and returns if parameters are invalid.
EXAMPLE
#include <fec.h>
/*
* example of sender code
*/
void *code ;
int n, k ;
void *src[] ;
void *pkt ;
code = new_code (k, n );
for (i = 0 ; i < k ; i++ )
src[i] = .. pointer to i-th source packet ..
for (each packet to transmit) {
i = ... index of the packet ;
fec_encode(code, src, pkt, i, size) ;
.. use packet in pkt
}
fec_free(code) ;
/*
* example of receiver code
*/
void *code ;
int n, k ;
void *data[] ;
int *ix[] ;
code = new_code (k, n );
for (i = 0 ; i < k ; i++ ) {
... receive a new packet ...
data[i] = .. pointer to i-th source packet ..
ix[i] = .. index of i-th source packet ..
}
fec_decode(code, data, ix, size) ;
/*
* now data[] has pointers to the source packets
*/
Please direct bug reports to luigi@iet.unipi.it .
BSD July 15, 1998 BSD