Multiple bots run project without Orchestrator

Hey everyone,

So I’m working on a project in REFramework, using enterprise edition 2020.10.2. We are planning to run the final automation simultaneously on multiple machines (no VMs, just personal computers), and we will be using Excel queues (not Orchestrator) per project requirements.

Since this is my first time building a project of such scale, I want to make sure I am covering my bases thoroughly when it comes to designing the multi-bot architecture, which is what I am coming here for guidance on.

So far, I have built out a check so that the transaction items are tracked by status in the Excel queue, to prevent bots from duplicating work queue items (bots will only take the next transaction item if it is marked as “new” status).

Since the bot will be scraping data for each transaction item and writing the scraped data table into an excel report, I am planning to next build out a lock mechanism so that once a bot opens the Excel file, the other bots will have to wait and retry until the lock is released. (My lock will be a text file that the bot will make on opening the excel file and delete on closing the excel file)

Besides these two checks I covered above, are there any other considerations I should take into account while preparing the REFramework for such a multi-bot architecture using Excel queues?

I’ve read about the idea of having each robot write their results to individual files to prevent conflicts, and then combine those files into one at the very end. But I am not sure if this will be necessary given that I will be using the lock mechanism I described to prevent multiple bots from being in the same Excel file at once. I also want to design the project so that it can accommodate any number of bots, and, while I could be wrong, I am not sure that the effort to assign each bot their own output file will be worth it if I use the lock mechanism approach to the main output file.

What do you all think?

1 Like

Hello @oliviamga2!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

Hi @oliviamga2 ,

Did you able to achieve this one without using queues ?, please share the solution if it worked.

Regards,
AK

dd u solve it?share