Skip to main content
Question

Control the workflow

  • February 18, 2022
  • 3 replies
  • 24 views

fme_hans
Contributor
Forum|alt.badge.img+5

 

 

 

Hi,

 

Is the following possible?

An FME workspace writes to a table. After the writers are ready I want that process to continue with other transformers and an other writer which must be writing last. I don't want to create 2 workspaces.

 

3 replies

david_r
Celebrity
  • 8391 replies
  • February 18, 2022

Look into using multiple FeatureWriter transformers, rather than the "classic" writers. You can chain them together to get the desired workflow.


nielsgerrits
VIP
Forum|alt.badge.img+60
  • 2938 replies
  • February 18, 2022

Use FeatureWriters instead of Writers. These have a summary outputport. Connect a Sampler to the summary outputports, set the sampler to last 1 feature, and use that for following transformers and FeatureReaders.


fme_hans
Contributor
Forum|alt.badge.img+5
  • Author
  • Contributor
  • 44 replies
  • February 20, 2022

Hi,

 

Multiple Featurewriters all connected to a FeartureHolder via Summary seems to work. Thanks for the tips.