luis_vicente
06/28/2023, 1:34 PMjanis_puris
06/28/2023, 1:40 PMMELTANO_DATABASE_URI
as env var to container.
meltano library picks it up and communicates with state db in the specified postrgesql uriluis_vicente
06/28/2023, 1:41 PMjanis_puris
06/28/2023, 1:42 PMrun
then the tap and target names must remain the same for the same state to be used.
If you use elt
I believe you need to specify the same --state-id
value as before.luis_vicente
06/28/2023, 1:42 PMjanis_puris
06/28/2023, 1:43 PMstate
and run
tables to see what is the state_id
that it has registered.pat_nadolny
06/28/2023, 2:43 PMluis_vicente
06/28/2023, 8:24 PMluis_vicente
06/28/2023, 8:29 PMjanis_puris
06/29/2023, 5:46 AMinherit_from
in your meltano project
plugins:
extractors:
- name: my-named-source
inherit_from: tap-postgres
...
loaders:
- name: my-named-destination
inherit_from: target-redshift
...
then your `run`'s state will be created and maintained as
[
{
"state_id": "<environment>:my-named-source-my-named-destination",
"partial_state": {},
"completed_state": {..}
"updated_at": "2023-06-29 05:05:26.689325"
}
]
luis_vicente
06/29/2023, 7:01 AM