-
Notifications
You must be signed in to change notification settings - Fork 1k
/
ClusterSharding.cs
1376 lines (1288 loc) · 73.4 KB
/
ClusterSharding.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//-----------------------------------------------------------------------
// <copyright file="ClusterSharding.cs" company="Akka.NET Project">
// Copyright (C) 2009-2018 Lightbend Inc. <http://www.lightbend.com>
// Copyright (C) 2013-2018 .NET Foundation <https://github.com/akkadotnet/akka.net>
// </copyright>
//-----------------------------------------------------------------------
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Runtime.ExceptionServices;
using System.Threading.Tasks;
using Akka.Actor;
using Akka.Cluster.Tools.Singleton;
using Akka.Configuration;
using Akka.Dispatch;
using Akka.Pattern;
using Akka.Util;
namespace Akka.Cluster.Sharding
{
using Msg = Object;
using EntityId = String;
using ShardId = String;
/// <summary>
/// Marker trait for remote messages and persistent events/snapshots with special serializer.
/// </summary>
public interface IClusterShardingSerializable { }
/// <summary>
/// TBD
/// </summary>
public class ClusterShardingExtensionProvider : ExtensionIdProvider<ClusterSharding>
{
/// <summary>
/// TBD
/// </summary>
/// <param name="system">TBD</param>
/// <returns>TBD</returns>
public override ClusterSharding CreateExtension(ExtendedActorSystem system)
{
var extension = new ClusterSharding(system);
return extension;
}
}
/// <summary>
/// Convenience implementation of <see cref="IMessageExtractor"/> that
/// construct ShardId based on the <see cref="object.GetHashCode"/> of the EntityId.
/// The number of unique shards is limited by the given MaxNumberOfShards.
/// </summary>
public abstract class HashCodeMessageExtractor : IMessageExtractor
{
/// <summary>
/// TBD
/// </summary>
public readonly int MaxNumberOfShards;
/// <summary>
/// TBD
/// </summary>
/// <param name="maxNumberOfShards">TBD</param>
protected HashCodeMessageExtractor(int maxNumberOfShards)
{
MaxNumberOfShards = maxNumberOfShards;
}
/// <summary>
/// TBD
/// </summary>
/// <param name="message">TBD</param>
/// <returns>TBD</returns>
public abstract string EntityId(object message);
/// <summary>
/// TBD
/// </summary>
/// <param name="message">TBD</param>
/// <returns>TBD</returns>
public virtual object EntityMessage(object message)
{
return message;
}
/// <summary>
/// TBD
/// </summary>
/// <param name="message">TBD</param>
/// <returns>TBD</returns>
public virtual string ShardId(object message)
{
EntityId id;
if (message is ShardRegion.StartEntity se)
id = se.EntityId;
else
id = EntityId(message);
return (Math.Abs(MurmurHash.StringHash(id)) % MaxNumberOfShards).ToString();
}
}
/// <summary>
/// <para>
/// This extension provides sharding functionality of actors in a cluster.
/// The typical use case is when you have many stateful actors that together consume
/// more resources (e.g. memory) than fit on one machine. You need to distribute them across
/// several nodes in the cluster and you want to be able to interact with them using their
/// logical identifier, but without having to care about their physical location in the cluster,
/// which might also change over time. It could for example be actors representing Aggregate Roots in
/// Domain-Driven Design terminology. Here we call these actors "entities". These actors
/// typically have persistent (durable) state, but this feature is not limited to
/// actors with persistent state.
/// </para>
/// <para>
/// In this context sharding means that actors with an identifier, so called entities,
/// can be automatically distributed across multiple nodes in the cluster. Each entity
/// actor runs only at one place, and messages can be sent to the entity without requiring
/// the sender to know the location of the destination actor. This is achieved by sending
/// the messages via a <see cref="Sharding.ShardRegion"/> actor provided by this extension, which knows how
/// to route the message with the entity id to the final destination.
/// </para>
/// <para>
/// This extension is supposed to be used by first, typically at system startup on each node
/// in the cluster, registering the supported entity types with the <see cref="ClusterShardingGuardian.Start"/>
/// method and then the <see cref="Sharding.ShardRegion"/> actor for a named entity type can be retrieved with
/// <see cref="ClusterSharding.ShardRegion"/>. Messages to the entities are always sent via the local
/// <see cref="Sharding.ShardRegion"/>. Some settings can be configured as described in the `akka.contrib.cluster.sharding`
/// section of the `reference.conf`.
/// </para>
/// <para>
/// The <see cref="Sharding.ShardRegion"/> actor is started on each node in the cluster, or group of nodes
/// tagged with a specific role. The <see cref="Sharding.ShardRegion"/> is created with two application specific
/// functions to extract the entity identifier and the shard identifier from incoming messages.
/// A shard is a group of entities that will be managed together. For the first message in a
/// specific shard the <see cref="Sharding.ShardRegion"/> request the location of the shard from a central coordinator,
/// the <see cref="PersistentShardCoordinator"/>. The <see cref="PersistentShardCoordinator"/> decides which <see cref="Sharding.ShardRegion"/> that
/// owns the shard. The <see cref="Sharding.ShardRegion"/> receives the decided home of the shard
/// and if that is the <see cref="Sharding.ShardRegion"/> instance itself it will create a local child
/// actor representing the entity and direct all messages for that entity to it.
/// If the shard home is another <see cref="Sharding.ShardRegion"/> instance messages will be forwarded
/// to that <see cref="Sharding.ShardRegion"/> instance instead. While resolving the location of a
/// shard incoming messages for that shard are buffered and later delivered when the
/// shard home is known. Subsequent messages to the resolved shard can be delivered
/// to the target destination immediately without involving the <see cref="PersistentShardCoordinator"/>.
/// </para>
/// <para>
/// To make sure that at most one instance of a specific entity actor is running somewhere
/// in the cluster it is important that all nodes have the same view of where the shards
/// are located. Therefore the shard allocation decisions are taken by the central
/// <see cref="PersistentShardCoordinator"/>, which is running as a cluster singleton, i.e. one instance on
/// the oldest member among all cluster nodes or a group of nodes tagged with a specific
/// role. The oldest member can be determined by <see cref="Member.IsOlderThan"/>.
/// </para>
/// <para>
/// The logic that decides where a shard is to be located is defined in a pluggable shard
/// allocation strategy. The default implementation <see cref="LeastShardAllocationStrategy"/>
/// allocates new shards to the <see cref="Sharding.ShardRegion"/> with least number of previously allocated shards.
/// This strategy can be replaced by an application specific implementation.
/// </para>
/// <para>
/// To be able to use newly added members in the cluster the coordinator facilitates rebalancing
/// of shards, i.e. migrate entities from one node to another. In the rebalance process the
/// coordinator first notifies all <see cref="Sharding.ShardRegion"/> actors that a handoff for a shard has started.
/// That means they will start buffering incoming messages for that shard, in the same way as if the
/// shard location is unknown. During the rebalance process the coordinator will not answer any
/// requests for the location of shards that are being rebalanced, i.e. local buffering will
/// continue until the handoff is completed. The <see cref="Sharding.ShardRegion"/> responsible for the rebalanced shard
/// will stop all entities in that shard by sending `PoisonPill` to them. When all entities have
/// been terminated the <see cref="Sharding.ShardRegion"/> owning the entities will acknowledge the handoff as completed
/// to the coordinator. Thereafter the coordinator will reply to requests for the location of
/// the shard and thereby allocate a new home for the shard and then buffered messages in the
/// <see cref="Sharding.ShardRegion"/> actors are delivered to the new location. This means that the state of the entities
/// are not transferred or migrated. If the state of the entities are of importance it should be
/// persistent (durable), e.g. with `Akka.Persistence`, so that it can be recovered at the new
/// location.
/// </para>
/// <para>
/// The logic that decides which shards to rebalance is defined in a pluggable shard
/// allocation strategy. The default implementation <see cref="LeastShardAllocationStrategy"/>
/// picks shards for handoff from the <see cref="Sharding.ShardRegion"/> with most number of previously allocated shards.
/// They will then be allocated to the <see cref="Sharding.ShardRegion"/> with least number of previously allocated shards,
/// i.e. new members in the cluster. There is a configurable threshold of how large the difference
/// must be to begin the rebalancing. This strategy can be replaced by an application specific
/// implementation.
/// </para>
/// <para>
/// The state of shard locations in the <see cref="PersistentShardCoordinator"/> is persistent (durable) with
/// `Akka.Persistence` to survive failures. Since it is running in a cluster `Akka.Persistence`
/// must be configured with a distributed journal. When a crashed or unreachable coordinator
/// node has been removed (via down) from the cluster a new <see cref="PersistentShardCoordinator"/> singleton
/// actor will take over and the state is recovered. During such a failure period shards
/// with known location are still available, while messages for new (unknown) shards
/// are buffered until the new <see cref="PersistentShardCoordinator"/> becomes available.
/// </para>
/// <para>
/// As long as a sender uses the same <see cref="Sharding.ShardRegion"/> actor to deliver messages to an entity
/// actor the order of the messages is preserved. As long as the buffer limit is not reached
/// messages are delivered on a best effort basis, with at-most once delivery semantics,
/// in the same way as ordinary message sending. Reliable end-to-end messaging, with
/// at-least-once semantics can be added by using <see cref="Persistence.AtLeastOnceDeliveryActor"/> in `Akka.Persistence`.
/// </para>
/// Some additional latency is introduced for messages targeted to new or previously
/// unused shards due to the round-trip to the coordinator. Rebalancing of shards may
/// also add latency. This should be considered when designing the application specific
/// shard resolution, e.g. to avoid too fine grained shards.
/// <para>
/// The <see cref="Sharding.ShardRegion"/> actor can also be started in proxy only mode, i.e. it will not
/// host any entities itself, but knows how to delegate messages to the right location.
/// A <see cref="Sharding.ShardRegion"/> starts in proxy only mode if the roles of the node does not include
/// the node role specified in `akka.contrib.cluster.sharding.role` config property
/// or if the specified `EntityProps` is <see langword="null"/>.
/// </para>
/// <para>
/// If the state of the entities are persistent you may stop entities that are not used to
/// reduce memory consumption. This is done by the application specific implementation of
/// the entity actors for example by defining receive timeout (<see cref="IActorContext.SetReceiveTimeout"/>).
/// If a message is already enqueued to the entity when it stops itself the enqueued message
/// in the mailbox will be dropped. To support graceful passivation without loosing such
/// messages the entity actor can send <see cref="Passivate"/> to its parent <see cref="Sharding.ShardRegion"/>.
/// The specified wrapped message in <see cref="Passivate"/> will be sent back to the entity, which is
/// then supposed to stop itself. Incoming messages will be buffered by the <see cref="Sharding.ShardRegion"/>
/// between reception of <see cref="Passivate"/> and termination of the entity. Such buffered messages
/// are thereafter delivered to a new incarnation of the entity.
/// </para>
/// </summary>
public class ClusterSharding : IExtension
{
private readonly Lazy<IActorRef> _guardian;
private readonly ConcurrentDictionary<string, IActorRef> _regions = new ConcurrentDictionary<string, IActorRef>();
private readonly ConcurrentDictionary<string, IActorRef> _proxies = new ConcurrentDictionary<string, IActorRef>();
private readonly ExtendedActorSystem _system;
private readonly Cluster _cluster;
/// <summary>
/// TBD
/// </summary>
/// <param name="system">TBD</param>
/// <returns>TBD</returns>
public static ClusterSharding Get(ActorSystem system)
{
return system.WithExtension<ClusterSharding, ClusterShardingExtensionProvider>();
}
/// <summary>
/// TBD
/// </summary>
/// <param name="system">TBD</param>
public ClusterSharding(ExtendedActorSystem system)
{
_system = system;
_system.Settings.InjectTopLevelFallback(DefaultConfig());
_system.Settings.InjectTopLevelFallback(ClusterSingletonManager.DefaultConfig());
_system.Settings.InjectTopLevelFallback(DistributedData.DistributedData.DefaultConfig());
_cluster = Cluster.Get(_system);
Settings = ClusterShardingSettings.Create(system);
_guardian = new Lazy<IActorRef>(() =>
{
var guardianName = system.Settings.Config.GetString("akka.cluster.sharding.guardian-name");
var dispatcher = system.Settings.Config.GetString("akka.cluster.sharding.use-dispatcher");
if (string.IsNullOrEmpty(dispatcher)) dispatcher = Dispatchers.DefaultDispatcherId;
return system.SystemActorOf(Props.Create(() => new ClusterShardingGuardian()).WithDispatcher(dispatcher), guardianName);
});
}
/// <summary>
/// Gets object representing settings for the current cluster sharding plugin.
/// </summary>
public ClusterShardingSettings Settings { get; }
/// <summary>
/// Default HOCON settings for cluster sharding.
/// </summary>
/// <returns>TBD</returns>
public static Config DefaultConfig()
{
return ConfigurationFactory.FromResource<ClusterSharding>("Akka.Cluster.Sharding.reference.conf");
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffStopMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <exception cref="IllegalStateException">
/// This exception is thrown when the cluster member doesn't have the role specified in <paramref name="settings"/>.
/// </exception>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(
string typeName,
Props entityProps,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId,
IShardAllocationStrategy allocationStrategy,
object handOffStopMessage)
{
if (settings.ShouldHostShard(_cluster))
{
var timeout = _system.Settings.CreationTimeout;
var startMsg = new ClusterShardingGuardian.Start(typeName, _ => entityProps, settings, extractEntityId, extractShardId, allocationStrategy, handOffStopMessage);
var reply = _guardian.Value.Ask(startMsg, timeout).Result;
switch (reply)
{
case ClusterShardingGuardian.Started started:
var shardRegion = started.ShardRegion;
_regions.TryAdd(typeName, shardRegion);
return shardRegion;
case Status.Failure failure:
ExceptionDispatchInfo.Capture(failure.Cause).Throw();
return ActorRefs.Nobody;
default:
throw new ActorInitializationException($"Unsupported guardian response: {reply}");
}
}
else
{
_cluster.System.Log.Debug("Starting Shard Region Proxy [{0}] (no actors will be hosted on this node)...", typeName);
return StartProxy(typeName, settings.Role, extractEntityId, extractShardId);
}
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffStopMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <exception cref="IllegalStateException">
/// This exception is thrown when the cluster member doesn't have the role specified in <paramref name="settings"/>.
/// </exception>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public async Task<IActorRef> StartAsync(
string typeName,
Props entityProps,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId,
IShardAllocationStrategy allocationStrategy,
object handOffStopMessage)
{
if (settings.ShouldHostShard(_cluster))
{
var timeout = _system.Settings.CreationTimeout;
var startMsg = new ClusterShardingGuardian.Start(typeName, _ => entityProps, settings, extractEntityId, extractShardId, allocationStrategy, handOffStopMessage);
var reply = await _guardian.Value.Ask(startMsg, timeout);
switch (reply)
{
case ClusterShardingGuardian.Started started:
var shardRegion = started.ShardRegion;
_regions.TryAdd(typeName, shardRegion);
return shardRegion;
case Status.Failure failure:
ExceptionDispatchInfo.Capture(failure.Cause).Throw();
return ActorRefs.Nobody;
default:
throw new ActorInitializationException($"Unsupported guardian response: {reply}");
}
}
else
{
_cluster.System.Log.Debug("Starting Shard Region Proxy [{0}] (no actors will be hosted on this node)...", typeName);
return await StartProxyAsync(typeName, settings.Role, extractEntityId, extractShardId);
}
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(
string typeName,
Props entityProps,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId)
{
var allocationStrategy = DefaultShardAllocationStrategy(settings);
return Start(typeName, entityProps, settings, extractEntityId, extractShardId, allocationStrategy, PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public Task<IActorRef> StartAsync(
string typeName,
Props entityProps,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId)
{
var allocationStrategy = DefaultShardAllocationStrategy(settings);
return StartAsync(typeName, entityProps, settings, extractEntityId, extractShardId, allocationStrategy, PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(string typeName, Props entityProps, ClusterShardingSettings settings,
IMessageExtractor messageExtractor, IShardAllocationStrategy allocationStrategy, object handOffMessage)
{
ExtractEntityId extractEntityId = messageExtractor.ToExtractEntityId();
ExtractShardId extractShardId = messageExtractor.ShardId;
return Start(typeName, entityProps, settings, extractEntityId, extractShardId, allocationStrategy, handOffMessage);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public Task<IActorRef> StartAsync(string typeName, Props entityProps, ClusterShardingSettings settings,
IMessageExtractor messageExtractor, IShardAllocationStrategy allocationStrategy, object handOffMessage)
{
ExtractEntityId extractEntityId = messageExtractor.ToExtractEntityId();
ExtractShardId extractShardId = messageExtractor.ShardId;
return StartAsync(typeName, entityProps, settings, extractEntityId, extractShardId, allocationStrategy, handOffMessage);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(string typeName, Props entityProps, ClusterShardingSettings settings,
IMessageExtractor messageExtractor)
{
return Start(typeName,
entityProps,
settings,
messageExtractor,
DefaultShardAllocationStrategy(settings),
PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityProps">
/// The <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public Task<IActorRef> StartAsync(string typeName, Props entityProps, ClusterShardingSettings settings,
IMessageExtractor messageExtractor)
{
return StartAsync(typeName,
entityProps,
settings,
messageExtractor,
DefaultShardAllocationStrategy(settings),
PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffStopMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <exception cref="IllegalStateException">
/// This exception is thrown when the cluster member doesn't have the role specified in <paramref name="settings"/>.
/// </exception>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(
string typeName,
Func<string, Props> entityPropsFactory,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId,
IShardAllocationStrategy allocationStrategy,
object handOffStopMessage)
{
if (settings.ShouldHostShard(_cluster))
{
var timeout = _system.Settings.CreationTimeout;
var startMsg = new ClusterShardingGuardian.Start(typeName, entityPropsFactory, settings, extractEntityId, extractShardId, allocationStrategy, handOffStopMessage);
var reply = _guardian.Value.Ask(startMsg, timeout).Result;
switch (reply)
{
case ClusterShardingGuardian.Started started:
var shardRegion = started.ShardRegion;
_regions.TryAdd(typeName, shardRegion);
return shardRegion;
case Status.Failure failure:
ExceptionDispatchInfo.Capture(failure.Cause).Throw();
return ActorRefs.Nobody;
default:
throw new ActorInitializationException($"Unsupported guardian response: {reply}");
}
}
else
{
_cluster.System.Log.Debug("Starting Shard Region Proxy [{0}] (no actors will be hosted on this node)...", typeName);
return StartProxy(typeName, settings.Role, extractEntityId, extractShardId);
}
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffStopMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <exception cref="IllegalStateException">
/// This exception is thrown when the cluster member doesn't have the role specified in <paramref name="settings"/>.
/// </exception>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public async Task<IActorRef> StartAsync(
string typeName,
Func<string, Props> entityPropsFactory,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId,
IShardAllocationStrategy allocationStrategy,
object handOffStopMessage)
{
if (settings.ShouldHostShard(_cluster))
{
var timeout = _system.Settings.CreationTimeout;
var startMsg = new ClusterShardingGuardian.Start(typeName, entityPropsFactory, settings, extractEntityId, extractShardId, allocationStrategy, handOffStopMessage);
var reply = await _guardian.Value.Ask(startMsg, timeout);
switch (reply)
{
case ClusterShardingGuardian.Started started:
var shardRegion = started.ShardRegion;
_regions.TryAdd(typeName, shardRegion);
return shardRegion;
case Status.Failure failure:
ExceptionDispatchInfo.Capture(failure.Cause).Throw();
return ActorRefs.Nobody;
default:
throw new ActorInitializationException($"Unsupported guardian response: {reply}");
}
}
else
{
_cluster.System.Log.Debug("Starting Shard Region Proxy [{0}] (no actors will be hosted on this node)...", typeName);
return StartProxy(typeName, settings.Role, extractEntityId, extractShardId);
}
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(
string typeName,
Func<string, Props> entityPropsFactory,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId)
{
var allocationStrategy = DefaultShardAllocationStrategy(settings);
return Start(typeName, entityPropsFactory, settings, extractEntityId, extractShardId, allocationStrategy, PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`,
/// i.e.posted as `Unhandled` messages on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public Task<IActorRef> StartAsync(
string typeName,
Func<string, Props> entityPropsFactory,
ClusterShardingSettings settings,
ExtractEntityId extractEntityId,
ExtractShardId extractShardId)
{
var allocationStrategy = DefaultShardAllocationStrategy(settings);
return StartAsync(typeName, entityPropsFactory, settings, extractEntityId, extractShardId, allocationStrategy, PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(string typeName, Func<string, Props> entityPropsFactory, ClusterShardingSettings settings,
IMessageExtractor messageExtractor, IShardAllocationStrategy allocationStrategy, object handOffMessage)
{
ExtractEntityId extractEntityId = messageExtractor.ToExtractEntityId();
ExtractShardId extractShardId = messageExtractor.ShardId;
return Start(typeName, entityPropsFactory, settings, extractEntityId, extractShardId, allocationStrategy, handOffMessage);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <param name="allocationStrategy">Possibility to use a custom shard allocation and rebalancing logic</param>
/// <param name="handOffMessage">
/// The message that will be sent to entities when they are to be stopped for a rebalance or
/// graceful shutdown of a <see cref="Sharding.ShardRegion"/>, e.g. <see cref="PoisonPill"/>.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public Task<IActorRef> StartAsync(string typeName, Func<string, Props> entityPropsFactory, ClusterShardingSettings settings,
IMessageExtractor messageExtractor, IShardAllocationStrategy allocationStrategy, object handOffMessage)
{
ExtractEntityId extractEntityId = messageExtractor.ToExtractEntityId();
ExtractShardId extractShardId = messageExtractor.ShardId;
return StartAsync(typeName, entityPropsFactory, settings, extractEntityId, extractShardId, allocationStrategy, handOffMessage);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef Start(string typeName, Func<string, Props> entityPropsFactory, ClusterShardingSettings settings,
IMessageExtractor messageExtractor)
{
return Start(typeName,
entityPropsFactory,
settings,
messageExtractor,
DefaultShardAllocationStrategy(settings),
PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type by defining the <see cref="Actor.Props"/> of the entity actor and
/// functions to extract entity and shard identifier from messages. The <see cref="Sharding.ShardRegion"/>
/// actor for this type can later be retrieved with the <see cref="ShardRegion"/> method.
///
/// This method will start a <see cref="ShardRegion"/> in proxy mode in case if there is no match between the roles of
/// the current cluster node and the role specified in <see cref="ClusterShardingSettings"/> passed to this method.
///
/// </summary>
/// <param name="typeName">The name of the entity type</param>
/// <param name="entityPropsFactory">
/// Function that, given an entity id, returns the <see cref="Actor.Props"/> of the entity actors that will be created by the <see cref="Sharding.ShardRegion"/>
/// </param>
/// <param name="settings">Configuration settings, see <see cref="ClusterShardingSettings"/></param>
/// <param name="messageExtractor">
/// Functions to extract the entity id, shard id, and the message to send to the entity from the incoming message.
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public Task<IActorRef> StartAsync(string typeName, Func<string, Props> entityPropsFactory, ClusterShardingSettings settings,
IMessageExtractor messageExtractor)
{
return StartAsync(typeName,
entityPropsFactory,
settings,
messageExtractor,
DefaultShardAllocationStrategy(settings),
PoisonPill.Instance);
}
/// <summary>
/// Register a named entity type `ShardRegion` on this node that will run in proxy only mode, i.e.it will
/// delegate messages to other `ShardRegion` actors on other nodes, but not host any entity actors itself.
/// The <see cref="Sharding.ShardRegion"/> actor for this type can later be retrieved with the
/// <see cref="ShardRegion"/> method.
/// </summary>
/// <param name="typeName">The name of the entity type.</param>
/// <param name="role">
/// Specifies that this entity type is located on cluster nodes with a specific role.
/// If the role is not specified all nodes in the cluster are used.
/// </param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`, i.e.posted as `Unhandled` messages
/// on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public IActorRef StartProxy(string typeName, string role, ExtractEntityId extractEntityId, ExtractShardId extractShardId)
{
var timeout = _system.Settings.CreationTimeout;
var settings = ClusterShardingSettings.Create(_system).WithRole(role);
var startMsg = new ClusterShardingGuardian.StartProxy(typeName, settings, extractEntityId, extractShardId);
var reply = _guardian.Value.Ask(startMsg, timeout).Result;
switch (reply)
{
case ClusterShardingGuardian.Started started:
_proxies.TryAdd(typeName, started.ShardRegion);
return started.ShardRegion;
case Status.Failure failure:
ExceptionDispatchInfo.Capture(failure.Cause).Throw();
return ActorRefs.Nobody;
default:
throw new ActorInitializationException($"Unsupported guardian response: {reply}");
}
}
/// <summary>
/// Register a named entity type `ShardRegion` on this node that will run in proxy only mode, i.e.it will
/// delegate messages to other `ShardRegion` actors on other nodes, but not host any entity actors itself.
/// The <see cref="Sharding.ShardRegion"/> actor for this type can later be retrieved with the
/// <see cref="ShardRegion"/> method.
/// </summary>
/// <param name="typeName">The name of the entity type.</param>
/// <param name="role">
/// Specifies that this entity type is located on cluster nodes with a specific role.
/// If the role is not specified all nodes in the cluster are used.
/// </param>
/// <param name="extractEntityId">
/// Partial function to extract the entity id and the message to send to the entity from the incoming message,
/// if the partial function does not match the message will be `unhandled`, i.e.posted as `Unhandled` messages
/// on the event stream
/// </param>
/// <param name="extractShardId">
/// Function to determine the shard id for an incoming message, only messages that passed the `extractEntityId` will be used
/// </param>
/// <returns>The actor ref of the <see cref="Sharding.ShardRegion"/> that is to be responsible for the shard.</returns>
public async Task<IActorRef> StartProxyAsync(string typeName, string role, ExtractEntityId extractEntityId, ExtractShardId extractShardId)
{
var timeout = _system.Settings.CreationTimeout;
var settings = ClusterShardingSettings.Create(_system).WithRole(role);
var startMsg = new ClusterShardingGuardian.StartProxy(typeName, settings, extractEntityId, extractShardId);