Lior Naim Alon
03/27/2025, 3:51 PMtarget-s3
- I want to build an environment that has multiple sources that all write to the same S3 bucket
ideally, i would define the AWS credentials + bucket specifications once, however, i do want each source to write to a separate path in the bucket, for example
slackSource -> s3://my-data/data/slack/...
Github -> s3://my-data/data/github/....
etc...
how can this be achieved without duplicating many s3-targets ? can the prefix setting somehow be changed dynamically per source or per EL operation ?Edgar Ramírez (Arch.dev)
03/27/2025, 5:20 PMMELTANO_EXTRACTOR_NAMESPACE
plugins:
loaders:
- name: tap-s3
config:
prefix: $MELTANO_EXTRACTOR_NAMESPACE
Lior Naim Alon
03/31/2025, 12:24 PM