Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: abhisekThere is unexpected issue that we face very often where the graph deployed in the server stops in the middle of execution.
I have tried to check the log and find the issue, but I could find the root cause of it.
Here the main graph call the sub graph from the BRX node. How will I know what is issue in sub graph that cause the issue?
Here is log below.
PHP Code:
<logEvent level="ERROR" timestamp="1462259206000"><message xsi:type="rawMessage"><![CDATA[BRX exited with non-zero status: 6]]></message><detail context="execute( ) - Exception" file="ls.brain.node.brainpython.python2implementationfile" line="136" xsi:type="cppDetail"/></logEvent><logEvent level="ERROR" timestamp="1462259206000"><message xsi:type="rawMessage"><![CDATA[BRX exited with non-zero status: 6]]></message><detail context="Salmon::NED::NodeMain::errorMsg()" file="build/linux-x86-64/release/code/source/brain/node/NodeMain.cpp" line="28" xsi:type="cppDetail"/></logEvent><logEvent level="ERROR" timestamp="1462259206000"><message xsi:type="rawMessage"><![CDATA[Error pumping node (Traceback (most recent call last):
File "/usr/local/lavastorm-4.6.1/lib/python/lavastorm/brain/python1.py", line 917, in Run
while n.pump(quant):
File "/usr/local/lavastorm-4.6.1/tmp/brain/SalesOrder_Load/default/temp.null.4788.2339977.1462249437554.54a15b606edc12b4.prop", line 222, in pump
(brdlogFile, status, headOfLog) = self.executor.execute(self.brx, self.username, self.password, props, self.doProps, self.continueOnError)
File "/usr/local/lavastorm-4.6.1/tmp/brain/SalesOrder_Load/default/temp.null.4788.2339977.1462249437554.54a15b606edc12b4.prop", line 136, in execute
raise Exception, "BRX exited with non-zero status: %d" % (exitCode)
Exception: BRX exited with non-zero status: 6
)]]></message><detail context="execute( ) - Exception" file="ls.brain.node.brainpython.python2implementationfile" line="136" xsi:type="cppDetail"/></logEvent><logEvent level="ERROR" timestamp="1462259206000"><message xsi:type="rawMessage"><![CDATA[Error pumping node (Traceback (most recent call last):
File "/usr/local/lavastorm-4.6.1/lib/python/lavastorm/brain/python1.py", line 917, in Run
while n.pump(quant):
File "/usr/local/lavastorm-4.6.1/tmp/brain/SalesOrder_Load/default/temp.null.4788.2339977.1462249437554.54a15b606edc12b4.prop", line 222, in pump
(brdlogFile, status, headOfLog) = self.executor.execute(self.brx, self.username, self.password, props, self.doProps, self.continueOnError)
File "/usr/local/lavastorm-4.6.1/tmp/brain/SalesOrder_Load/default/temp.null.4788.2339977.1462249437554.54a15b606edc12b4.prop", line 136, in execute
raise Exception, "BRX exited with non-zero status: %d" % (exitCode)
Exception: BRX exited with non-zero status: 6
)]]></message><detail context="Salmon::NED::NodeMain::errorMsg()" file="build/linux-x86-64/release/code/source/brain/node/NodeMain.cpp" line="28" xsi:type="cppDetail"/></logEvent><logEvent level="ERROR" timestamp="1462259206000"><message xsi:type="rawMessage"><![CDATA[Got Python exception]]></message><detail context="Salmon::NED::NodeMain::errorMsg()" file="build/linux-x86-64/release/code/source/brain/node/NodeMain.cpp" line="28" xsi:type="cppDetail"/></logEvent><logEvent timestamp="1462259208585" level="WARN"><message xsi:type="errorMessage"><code key="brain.unhandledLogging" bundle="com.lavastorm.brain.ErrorMessages"/><message xsi:type="i18nMessage" mKey="brain.unhandledLogging" bundle="com.lavastorm.brain.ErrorMessages"><arg type="string"><![CDATA[stderr]]></arg><arg type="string"><![CDATA[Error in sys.excepthook:Traceback (most recent call last): File "/usr/local/lavastorm-4.6.1/lib/python/lavastorm/brain/python1.py", line 952, in <lambda> return lambda ex]]></arg></message></message></logEvent>
Please let me know where can I find the log details with each node error till the point where it is executed.