Less of a trouble-shooting question and more of a ...
# troubleshooting
b
Less of a trouble-shooting question and more of a sanity check. I am running our Meltano jobs in ECS, and working well so far, and now I am adding a PostgreSQL DB for stateful job runs. I am currently running
meltano upgrade database
as part of the container entrypoint for each job to make sure the DB is always up-to-date, but really I am guessing the best practice would have it be ran once as part of our CICD process. Until I can get around to moving it into our pipeline, is there any obvious drawbacks to running that command against the same database many times (apart from the 5-10 seconds when the no-op migrations run)?
v
I can't think of any