Workflows and actions

This article series on workload will sometimes reference documentation shared in other parts of the series, as well as the core reference entry for workload. We recommend you get to know the core reference entry, and proceed to read the series as a whole (in that order).

Reference: Pricing and workload Article series: Optimizing for workload

In the earlier article Understanding workload calculation, we explored the theme park entry ticket metaphor to illustrate that the activity type/cost table reflects the cost of entry, but you can still add additional workload by accessing different rides inside of the park.

This is especially true for ; each workflow can have a very low or even zero entry cost, but as you add to it, the number and complexity of server requests can go up accordingly.

In this article, we'll continue looking at how different workflows – and the operations that you add to a workflow – contribute to the net total.

Workflow volume

Before we dive in, we'll repeat a point from earlier: each workflow in isolation does not usually incur a substantial workload cost. Of course, it still makes sense to optimize each and every workflow to be as efficient as it can be without compromizing on UX or features, but there are also deadlines and developer resources to think about.

The way to prioritize, is to look at workflows that have two similarities in common:

  • They contain operations that typically consume a relatively high amount of workload, such as:

    • Database searches

    • Changing/copying/deleting a list of things

    • Scheduling bulk operations (API workflows on a list or recursive workflows)

  • They are repeated frequently, such as:

    • Many times per user

    • Many times as a result of user growth

What we can learn from this is that a "heavy" operation that runs infrequently is not necessarily a big consumer of workload. Likewise, a frequent operation that is very lightweight is not necessarily worth optimizing. As you plan your workloads, try to identify those that spend a high amount over time. These are the ones that you want to try to optimize.

The total calculation of an action

Like we've done a few times in this article series, we'll have a look at how running an action is akin to the "entry ticket" metaphor.

In the example above, we want a list of Products to have a price that's an average of another list of products. Let's look at what we're doing:

  • First, we're starting the Make changes to a list of things action

    • The total cost of the operation depends on the volume of the list and the number of changes being made

  • Then, we perform a Do a search for to find the list of Products we want to make changes to

  • Then, to make the requested change, we use another Do a search for and add the average operator to calculate the final price.

As we've seen in some of the earlier examples, it's important to be aware of the total work we're asking the server to do. We are not just running the Make changes to a list action, but also performing two database queries (Do a search for).

There are not necessarily any more efficient ways to do this: Make changes to a list of things is still more WU-friendly than and . Make changes to a list of things works well for smaller lists (up to a few hundred things), but may if the list is too long.

The purpose is not to caution against the use of this action or its searches, but to further illustrate that WU consumption does not only depend on the specific action, but on other factors, as we listed above.

Number of actions

The number of actions in a workflow has an impact on WU. With that in mind, when you develop your app and plan for WU consumption, it makes sense to think of each action in isolation rather than each workflow. A workflow in itself doesn't incur any cost; it's just the combination of a trigger and a collection of actions – a folder, if you will.

There are a few things you can do to reduce the number of actions running in a workflow:

  • Consider each action and see if it's needed

  • Can one or more action be combined into one?

  • Do all actions have to be executed every time the workflow runs, or could you stop one or more of them from running by using the action?

Working with lists of things

Some actions work with a list of database things, as opposed to just one thing. Although these actions can be very useful, it's worth noting that processing a list of things demands more from the server compared to handling a single item, resulting in a greater WU cost. Actions include:

  • Make changes to a list of things

  • Delete a list of things

  • Copy a list of things

Using these actions is still less costly than using Schedule API workflow on a list or a recursive workflow. As such, it's important to note that we're not cautioning against their use – but merely pointing out that working with lists gives the server more work to do than working with a single item. Knowing that, you can make informed design and development decisions.

Do when condition is true and conditions

Do when condition is true works by checking a condition to see if it's true, and executing a workflow if it is. Do when condition is true is based on dynamic expressions, that can happen client-side or server-side, depending on what the condition is checking. Let's quickly look at a few examples.

As you plan your app's design and logic for WU, remember that WU management shouldn't be your sole focus. Server-side conditions offer more security compared to client-side ones. Therefore, for processes requiring heightened security, prioritizing security over WU considerations is often the smarter choice. You can read more about this in the article below:

Article: Page security Article series: Security

1. Checking something in the database (server-side)

The database is stored and maintained securely on Bubble's servers. As such, any condition that requires communication with the database (whether it's creating, reading, updating or deleting something) will incur a slight WU cost.

It should be noted that this communication with the server can happen more often than you think:

  • As the condition is first checked, Bubble performs a database query

  • As your database is updated (by that user or anyone else), Bubble's server may send the updated information to the user's device, again incurring a small WU cost

Knowing this, we can again ask a few questions to optimize:

  • Is the workflow needed at all?

  • Does Run this - every time need to be selected, or can I reduce its frequency by instead selecting Just once?

  • Is there some way we can trigger it by something other than a server-side condition? Such as a client-side condition or user action?

  • The condition will usually be checked on page load. In other words, it will be checked every time a user loads a page. Can we avoid this somehow?

There are two lessons you should take away from this. The first is that the condition itself might incur a workload cost. The second is that the actions inside of that workflow may execute more often than you intended if you are not careful when setting up the Do when condition is true conditional expression.

2. Checking if an element is visible (client-side)

Let's have a look at another example. In this one, we are checking if a group element is visible in order to trigger the workflow:

Bubble can verify if a condition holds true directly on the user's device, meaning the check is done client-side and doesn't involve Workload Units (WU). This kind of condition is executed swiftly as it doesn't require server communication, but it's less secure.

Employ client-side conditions for workflows where security isn't a major concern.

The order in a conditional expression

The order in which you place multiple conditions in a dynamic expression can make a difference in your WU consumption (as well as the speed at which Bubble will complete checking the condition). Before we dive into the example, let's summarize the logic with two simple rules:

  • Bubble reads conditions from left to right

  • If any step connected with the and operator in the conditional expression returns a "no", Bubble will not check the rest of the conditions

In other words, Bubble doesn't do more work than it has to when checking conditions. If a condition has two steps (connected with the and operator, as opposed to the or operator), and the first condition returns a "no", the second step will be disregarded. You can use this to your advantage. Let's combine the two conditions from our earlier example to see how this can work in practice.

In the example above, the condition has two steps, combined with the and operator:

  1. Is the element called Group example visible?

    • and

  2. Is the number of users in the database more than 100?

If the first condition returns a "no", Bubble will not check the second, meaning that in that case, the condition has not incurred any WU cost. If you used the or operator, Bubble would have to check both of them, since any of them being true would return a "yes."

The example above would also be secure than only using a client-side condition. If a user was able to somehow manipulate the first step to return a "yes" you didn't intend, the second server-side condition still cannot be tampered with and will return the correct response.

Summary

Summary: Workflows, actions and workload

Let's go over the points we've covered in this article:

  • Workflows start with low impact but can increase in workload with added expressions and server-side actions.

  • Prioritize workflows that are both high in workload and frequently executed.

  • Consider overall workload, including associated database queries, not just the action itself.

  • Merge actions when possible and use "Terminate this workflow" to stop unnecessary operations.

  • Operations on lists are more demanding than single items.

  • Faster and don't add to workload but offer less security.

  • Bubble stops evaluating "and" conditions after a "no," which can reduce workload.

  • Optimize workflows for workload without compromising security or user experience.

Other ways to learn

Articles
Videos

Last updated