I'm working on project that require distributing worker services framework in .net core
description example:
I have a .netcore prime server web app mvc that has a millions of work item to done for example 1 million of urls should be crawlered
also I have 10 web apis with the same logic to crawl received urls. each api deployed on it's own server
what I'm looking for?
I'm looking for frameworks or tool help me the following
prime server
web app mvc1- has a queue of work items
2- Load Balancing to forward items to
worker service3- health check of all
worker servicesreal time reporting4- real time communication of all Nodes
worker serviceof current processing items5- plus handling errors
(connectivity, outage)
so I have notice akka.net but didn't get in depth of it yet
Is there any framework/tool help me do this ?
