Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: burkeI have a simple graph which runs perfectly fine in BRE, however running as a BRX it consistently fails.
[code:1]
Node Multiple_BRD_Files (496b769f7ece1aa5) errored: Error while starting execution of node 'Multiple_BRD_Files'
caused by: Waiting for outputs.
[/code:1]
The graph uses a directory list node to find all files in the directory.
A filter to extract file name info (files are named in a structured manner which includes a date for the data they contain).
Another filter to build a list of file names which meet the date requirements for data requested.
Then the Multiple_BRD_Files node to read and output the data based on above filters.
The output is then sent to an Output BRD File node.
This runs perfectly and as expected from within the BRE yet when run on the server as a BRX it fails as per above message, any ideas?
Also to me it seems (see output below) this graph when run as a BRX does not wait for the preceding nodes to compete before running the following node as it does in the BRE.
[code:1]
[brain@abnsolava01 scripted]$ ./E2E_run_YYZ_Daily_v2.sh
Graph YYZ_daily Started.
Node Directory_List (496b769f7cf24042) Started.
Node Directory_List (496b769f7cf24042) Node Processing.
Node Extract_File_Name_Date (496b769f2adb7024) Started.
Node Extract_File_Name_Date (496b769f2adb7024) Node Processing.
Node Directory_List (496b769f7cf24042) Node Completed.
Node Multiple_BRD_Files (496b769f7ece1aa5) Started.
Node Multiple_BRD_Files (496b769f7ece1aa5) errored: Error while starting execution of node 'Multiple_BRD_Files'
caused by: Waiting for outputs.
Graph YYZ_daily errored: Error in execution
caused by: Still executing.
Graph Completed with Errors.
Graph YYZ_daily errored: Error handling message
caused by: Error handling null message: Error in execution: Still executing.
State File: file:/data2/tmp/brain/YYZ_daily/temp.abnsolava01.26794.0.1231870199516.brs
BRAIN Controller exit status: 6
There may be no data or data with errors.
[/code:1]