About order of operations in workflows and best practices

I tried on my mac (chrome and Safari) and on the iphone. Same behaviour.

ezgif.com-gif-maker (1)

I also tested the test app with debugger set to SLOW.
As expected it works perfectly, all 3 solutions.: slowing the process I think that all the actions are executed in the proper order, without client side machine speed overtaking server side actions.

IE: it’s a matter of speed and timing.
If the computer is powerful all the client side actions will happen quickly and chances are that they will generate outputs faster than server side actions (involving calls to DB).

According to Bubble guidelines SOLUTION 2 should work, but doesn’t.

Another interesting statement in the document is:

Custom events run in sequence, not parallel [ok, no problem understanding this]. If Workflow 1 triggers a custom event that starts Workflow 2, Workflow 2 will complete before the remaining actions in Workflow 1 run.

I get confused by the second part: as far as I know a workflow can start an API workflow or a custom event.
If everything stays client side I could interpret the statement as: If Workflow 1 triggers a custom event that starts CUSTOM EVENT 2, CUSTOM EVENT 2 will complete before the remaining actions in Workflow 1 run.

But actually this is not true.

I’ll ask Bubble support to examine the case and hopefully get to understand a little more.

1 Like

A couple of weeks passed since the last post, thus a little update.

I put the test app offline since its behaviour changed. I think this statement recently found on the official bubble docs is connected (I’m pretty sure it’s been recently added):

Tip: If an end-user does something that kicks off the same workflow many times within a short window of time (e.g. clicking on a button repeatedly very quickly), Bubble tries to be smart about executing that workflow: any actions that make sense to repeat (e.g. changing a thing) will be repeated and any actions that don’t make sense to repeat (e.g. navigating to another page) should not be repeated.

A lot has been written in this forum about sequence in workflows, I suggest reading this post to understand a little more about what is triggered before (and actually yes, it’s API workflows) and what after.

The use of custom events is fundamental to control order of execution.
But another thing has to be kept in mind, taken from this post of @keith :pray::

… Bubble has kind of an interesting optimization around database operations. When you ā€œCreate a New Thingā€, the unique ID of the Thing is created client side and the values of the fields of the Thing actually do exist for that user’s session . However, the actual creation of the Things (back on the server) might be substantially delayed.

Here’s why ā€œresult of step Xā€ is generally safe. But be careful that it doesn’t represent the modified underlying DB value, that could (and generally will be) updated later.

With so many constraint to consider, my conclusion is that the best way of organising complex workflows (ie with API calls, changes to DB, custom events) is using custom events and ā€œdo when condition is trueā€ (as also Bubble support suggested me after being asked).

3 Likes