Devin Johnston
03/25/2024, 8:06 PMmeltano run tap-mycustomtap target-postgres --start '2024-01-01' --end '2024-01-08'
I know in my tap I can specify start/end params to the API in the Stream get_url_params
. Is there a way to somehow provide start/end values via the meltano CLI to the tap so they’re available in get_url_params
?visch
03/25/2024, 11:36 PMEdgar Ramírez (Arch.dev)
03/26/2024, 3:38 PMTAP_MY_CUSTOM_TAP_START_DATE=2024-01-01 TAP_MY_CUSTOM_TAP_END_DATE=2024-01-08 meltano run --no-state-update tap-mycustomtap target-postgres
visch
03/26/2024, 3:43 PMEdgar Ramírez (Arch.dev)
03/26/2024, 3:43 PM--full-refresh
Devin Johnston
03/26/2024, 4:08 PM