Replies: 1 comment 2 replies
-
@cgubbin can you share some details on the exceptions which are returned? Without more information we will struggle to offer insight. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to execute a Tensorflow Transform pipeline implemented in Apache Beam from Rust. If I call the algorithm once everything works as expected, however if I try to call it a second time without restarting the Rust program an exception is returned.
I fixed the issue in the end by reloading both the logging and apache beam modules at the beginning of my Python entrypoint.
It seems that some state from the first call to python is being maintained, which is then seen by any subsequent call. Is this a bug or a feature? If the latter is there a way to clear the state from rust, without having to reload individual modules?
Beta Was this translation helpful? Give feedback.
All reactions