How many bots can an app have?

 

Let's say I have an application that has 10 users. Each user has their slice of data from the same table. And each user needs to create five different files every Monday: CSV, HTML, JSON, PDF, XLSX, and save them in 10 different folders.

The solution would be:
1) Create an event scheduled for Monday.
2) Create a new process containing five steps
3) Select for each step a task that creates a different type of file and its destination folder.
This is correct? If so it means that you would have to create 50 different tasks to cover the five files for each user.

Now let's pretend that my app can scale and reach 1000 users. Does that mean my app would have to have 5000 different tasks? Is that possible? What is the limit on number of tasks? How could I have these same results with a more efficient setup? Is there any limit on the server side for situations of this magnitude?

@MultiTech 

0 1 149
1 REPLY 1

A Process with 5 steps, one per file type, yes.

Then run your Event "ForEveryRecord" on a users table.

Top Labels in this Space