cozos commented on issue #24470: URL: https://github.com/apache/beam/issues/24470#issuecomment-1426908368
Some thoughts: * In `boot.go` we only have `stdout` and `stderr` but no application level information regarding the severity of the logs. So basically, we don't know what severity of `stderr` should be - it could contain the root cause for failure (i.e. process termination) but it could also contain warnings and random diagnostic output as per POSIX standard. * One way to do this is to send `stderr` as ERROR or FATAL if the process crashed, and INFO otherwise, although I don't love this. * We also lose some context in boot.go - things bundle_id and transform_id that could tell you where the error happened. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
