我目前正在使用面料服務的web api。 需要獲取織物服務羣集的位置(親和區域)。即通過web API中的代碼(c#) 確定當前集羣位於哪個位置。 或者我需要Web API託管的集羣名稱。如何獲取位置(關聯區域)或名稱羣集(面料服務)
在webrole或雲服務也使用是可能的 https://management.core.windows.net/ {0} /服務/ hostedservices
,但我無法找到任何方式對集羣。
我目前正在使用面料服務的web api。 需要獲取織物服務羣集的位置(親和區域)。即通過web API中的代碼(c#) 確定當前集羣位於哪個位置。 或者我需要Web API託管的集羣名稱。如何獲取位置(關聯區域)或名稱羣集(面料服務)
在webrole或雲服務也使用是可能的 https://management.core.windows.net/ {0} /服務/ hostedservices
,但我無法找到任何方式對集羣。
我不確定這是否有幫助,但看看爲項目創建的ServiceEventSource。 ServiceMessage方法向您顯示了許多可從服務上下文獲得的信息。
ServiceMessage(
service.Context.ServiceName.ToString(),
service.Context.ServiceTypeName,
service.Context.ReplicaId,
service.Context.PartitionId,
service.Context.CodePackageActivationContext.ApplicationName,
service.Context.CodePackageActivationContext.ApplicationTypeName,
service.Context.NodeContext.NodeName,
finalMessage);
你也可以看看FabricClient類
所有的研究後,我與
<Section Name="Affinity">
<Parameter Name="Zone" Value="Eusa" />
</Section>
這在PackageRoot添加>配置>設置做了
不,它沒有幫助 – XCode