Hi there, I'm trying to set up a ETL between a sh...
# singer-targets
m
Hi there, I'm trying to set up a ETL between a shopify tap and a aws S3 target and I'm receiving an error [error ] Loading failed code=1 message=KeyError: 'batch_start_time' name=meltano run_id=883988d7-f821-4cda-a620-1df. Anyone can give me any help?
Copy code
this error occurs after running this command for clarity: meltano elt tap-shopify target-s3
r
That's coming from `target-s3`: https://github.com/crowemi/target-s3/blob/c6d00e2cb807cc8b79eae89638c37b7a40fad1d0/target_s3/formats/format_base.py#L108 I'm not familiar with the target so I'm not sure how
batch_start_time
is set in context. Looks like you could maybe get around it by setting
use_raw_stream_name: true
in config? https://github.com/crowemi/target-s3/blob/c6d00e2cb807cc8b79eae89638c37b7a40fad1d0/target_s3/formats/format_base.py#L74-L76
👍 2
m
thank you