eduardovaldes
2 years agoQrew Member
pipelin
I want to run a pipeline that does three steps vi api request:
a.Run import opon trigger
b.Search some records and delete them or delete via api a certain search qid.
Need step a to have finis...
Is there something you found that makes you question the Pipelines solution? Pipelines by their nature operate synchronously (At least in my experience) given that they do interpret the prior step for us in the next as an option.
In your example - you would:
The pause would only be necessary if you had some other process, such as another pipeline or some other automation and you needed time for it to process. So long as this is all occurring in the same pipeline there should be no issue.
Chayce thanks for your reply.
It is working as you say but in a trial mode, (I am learning pipelines).
I am using tables with 50 examples. In operation I will be handling tables with 500 entries or more sometimes.
My doubt came reading the discussion forums, where someone suggested the pause method
Maybe I mis understood.
I understand that one sequential api request only starts after the other request ends, when in the same paipeline (same issue I had with promises and coded page.
I will retire de pauses, thanks a lot.
Sounds good - in general Imports are extremely efficient / quick to run so there should be no issues as you scale up the operation from 50 to 500.