Hellow fellow FME-users,
I'm trying to run FMEFactoryPipeline repeatedly within a PythonCaller.
After some iterations it stops running unexpectedly and FME is only providing me the unhelpful error message: "Error running translation".
I think the order of the function I'm calling on the pipeline factory is wrong.
This is the order I'm using right now:
# initialize pipeline
pipeline = fmeobjects.FMEFactoryPipeline()
# Add pipeline factory (spatialrelator in my case)
pipeline.addFactory()
# Push features through the pipeline
pipeline.processFeature()
# Execute the pipeline
pipeline.allDone()
Or I'm forgetting to call a certain function on the pipeline object.
Documentation on FMEFactoryPipeline can be found here: http://docs.safe.com/fme/html/FME_Objects_Python_A...
I attached an example workspace.
Has someone experience with this issue?
Thank you very much.