Hello, I'm encountering an issue while running mul...
# troubleshooting
r
Hello, I'm encountering an issue while running multiple calls concurrently within a single tap. When I attempt this, I receive the following error:
Copy code
Run invocation could not be completed as block failed: Another 'xxxxxxxx' pipeline is already running which started at 2024-08-30
Has anyone else experienced this, or does anyone have suggestions on how to resolve it? Thanks in advance for your help!
v
https://docs.meltano.com/reference/command-line-interface/#run:~:text=is%20also%20specified.-,%2D%2Dforce,-will%20force%20a --force should solve this for you, but just make sure that's what you want. Concurrency just has to be thought about carefully with Incremental syncs
r
@visch Thank you for the information. I have multiple accounts, and I need to sync data daily. Will using the
--force
option cause any issues in production? Are there any disadvantages to using
--force
?
v
yes there is issues with that which is why I said you need to be careful. Going to take me a bit to explain it all so I can't easily and it all comes down to concurrency being hard. Definitely doable just you need to understand how state works. If you can get different state id's for each run that would be the easiest way to go then you wouldn't need force and life would be easy
👍 1