. How can you run a graph continuously without using
continuous components ?

Answers were Sorted based on User's Feedback



. How can you run a graph continuously without using continuous components ?..

Answer / niroj kumar pattnaik

We can try one approach by calling the graph's own deployed
script name from its end script call.

For Example:
Suppose, we have a graph my_graph.mp and its deployed
script my_graph.ksh in $AI_RUN.

Now in the end script of our graph we can call the deployed
scripts as given below:

if [ $mpjret -eq 0 ]; then
$AI_RUN/my_graph.ksh
else
echo "Graph Failed"
fi

-----------------
Though this approach mimics the style of a continuous
graph, it can't replace the benefits of it. This approach
can be further enhanced to take care of roll-back and
failure handlings by using "trap" command with a user
defined unix script/function.

Thanks,
Niroj@Thbs

Is This Answer Correct ?    5 Yes 0 No

. How can you run a graph continuously without using continuous components ?..

Answer / niroj

If you call the deployed script inside the start script, it
will kick start one script from another like the butterfly
effect and may crash the system.

Is This Answer Correct ?    0 Yes 0 No

. How can you run a graph continuously without using continuous components ?..

Answer / prajna

Call the deployed script in start.ksh

Is This Answer Correct ?    0 Yes 2 No

Post New Answer

More Ab Initio Interview Questions

difference betwween check point and phase?

2 Answers   IBM,


what is meant by fancing in abinitio ?

3 Answers  


What does edp stand for?

0 Answers  


In which scenario, .rec files will not get created even if graph fails ? How to use in abinitio graph?

2 Answers   IBM, TCL,


What is the function you would use to transfer a string into a decimal?

0 Answers  






We know rollup component in abinitio is used to summarize group of data record then why do we use aggregation?

0 Answers  


how to calculate EME version using unix ?

6 Answers   Accenture, IBM,


What are the functions of the replicate and dedup component?

0 Answers  


How you can test a dbc file ?

1 Answers   TCL,


Can anyone give me an exaple of realtime start script in the graph?

0 Answers  


How does the bre work with the co>operating system?

0 Answers  


i have input like this TABA 1 TABA 2 TABA 3 TABA 4 TABB 7 TABB 8 TABC 1 TABC 2 TABC 5 OUT PUT NAME COL1 COL2 COL3 COL4 TABA 1 2 3 4 TABB 7 8 TABC 1 2 5

0 Answers  


Categories