. How can you run a graph continuously without using
continuous components ?
Answers were Sorted based on User's Feedback
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 ? | 6 Yes | 0 No |
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 |
What does de-partition mean in abinitio?
I installed AbInito in my PC.In components there is no "select" component.How can i get that component?and How we can create user defined components?
What is difference between force_error & force_abort? How to use in abinitio graph?
What is is a data flow graph?
Do you think effective communication is necessary for data processing? What is your strength in terms of same?
Name any two stages of the data processing cycle and provide your answer in terms of a comparative study of them?
Explain how you can run a graph infinitely in ab initio?
what does layout means in terms of Ab Initio?
What is the best way of creating huge test feeds?
I have $AI-SERIAL/DML------> (SERIAL FILE LOCATION) AND $BDS-SERIAL/DML---------->(what is the location what is mean)?
Can you run air sandbox run using pset ?
i have a scenario where i need to change the value of a sort order in my sort component whether ascending or descending depend on some input value... e.g if input_val = A then sort order should be ascending else descending I have to use PDL in this... Can you please tell me where do i have to make this change and how ?