J'ai besoin de trouver la clé de partition actuelle d'un Service Fabric Stateful Service au moment de l'exécution.
J'ai regardé dans le ICodePackageActivationContext
y el StatefulServiceContext
mais je n'arrive pas à voir cette information nulle part.
Edit :
Comme LoekD a souligné dans sa réponse que cette information est disponible au sein de la Commission européenne. StatefulService
classe. Pour être explicitement clair, voici comment j'ai accédé à la classe :
var info = (Int64RangePartitionInformation) this.Partition.PartitionInfo;
var highKey = info.HighKey;
var lowKey = info.LowKey;