Skip to main content

New to FME. I roughly know the first half, i.e. extract data to csv file is simple. But how to get the csv writer to trigger the next step of the workflow to upload it to s3 bucket? The writer has no output.

Thanks!

The easiest is to have two workspaces.

Workspace 1:

  • Creator
  • WorkspaceRunner to execute workspace 2
  • S3Uploader

Workspace 2:

  • Read from database
  • Write to CSV

You could use FeatureWriter which has output ports to trigger an S3 uploader when successful.

 

 

FeatureWriter is a transformer that works just like a writer but allows for the continuation of the workbench

 

 


You could use FeatureWriter which has output ports to trigger an S3 uploader when successful.

 

 

FeatureWriter is a transformer that works just like a writer but allows for the continuation of the workbench

 

 

Agreed, great solution. Even easier than using the WorkspaceRunner.

Thank you both David. Gonna give it a go.


Reply