Can I use Azure Service Fabric reliable stateful actors for geo mapping issues? Let's say I have an actor representing an event. This event is created by a user, who set such an event on a map. A lot of users can create a lot of events. Each event representing actor stores a geo coordinate and one another state. That will cause I can have millions of events distributed over a map.
So now I want have a grouping actor representing event actors based on an area of the map, or based on a rectangle of coordinates. The grouping actor stores a list of all event actors in this map area. In view of performance issues, is it possible and recommended to create dynamically such a grouping actor? The area will be determined by user input.