Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I run F# agents on multiple machines?

Tags:

.net

f#

mapreduce

Is it possible to run F# agents on multiple machines as cluster?

like image 408
Venkat Avatar asked Jul 11 '12 08:07

Venkat


People also ask

Can my PC run F1 2021?

An Intel Core i3-2130 CPU is required at a minimum to run F1® 2021. However, the developers recommend a CPU greater or equal to an Intel Core i5-9600K to play the game. F1® 2021 will run on PC system with Windows 10 64-bit (Version 1709) | For Ray Tracing: Windows 10 64-bit (Version 2004) and upwards.

Can I run fist?

To play F.I.S.T.: Forged In Shadow Torch you will need a minimum CPU equivalent to an Intel Core i5-6400. The cheapest graphics card you can play it on is an AMD Radeon R9 280. Furthermore, an NVIDIA GeForce GTX 1060 is recommended in order to run F.I.S.T.: Forged In Shadow Torch with the highest settings.

Can you run it F1 22?

Can I Run F1® 22? Provided that you have at least an AMD Radeon RX 470 graphics card you can play the game. But, according to the developers the recommended graphics card is an AMD Radeon RX 590. To play F1® 22 you will need a minimum CPU equivalent to an Intel Core i5-9600K.


1 Answers

Yes, it's definitely possible to run agents in a map-reduce algorithm on many machines, but there's nothing built into F# that does it automatically.

You'll need to implement a map-reduce algorithm, have the agents running on the cluster, likely as windows services, and then communicate between the source and the agents, likely via WCF.

like image 177
Samuel Neff Avatar answered Sep 19 '22 22:09

Samuel Neff