joshuadevlin
05/09/2022, 6:35 AMstate_partitioning_keys
to reduce the state (ideally to zero) that's stored between invocations of the tap, and if so how?
2. Are there ways that I can purge some of the history of meltano.db
to reduce its size to something more sensible?joshuadevlin
05/09/2022, 6:45 AMstate_partitioning_keys = []
— Maybe I could update the docs with a. "If you wish to disable this behavior, you can set state_partitioning_keys
to `[]`"taylor
05/09/2022, 2:17 PMjoshuadevlin
05/09/2022, 10:13 PMtaylor
05/10/2022, 2:01 PMmeltano state
command might help with that https://docs.meltano.com/reference/command-line-interface#state but not sure what else you’re wanting to purgejoshuadevlin
05/10/2022, 10:51 PMtaylor
05/11/2022, 2:10 PMmeltano state clear
would just append a new record with an empty payload, so that wouldn’t achieve your goal. the only thing I can think of would be to print the latest state for each job_id in CI logs and then just delete the artifact. then on the next run you can use that state to start the job?joshuadevlin
05/12/2022, 5:09 AM