Register-ServiceFabricApplicationType on a secure cluster always times out

后端 未结 2 1584
再見小時候
再見小時候 2021-01-16 07:47

When this command is executed while connected to a secure cluster:

Register-ServiceFabricApplicationType -ApplicationPathInImageStore \'MyType\' -TimeoutSec         


        
2条回答
  •  醉酒成梦
    2021-01-16 08:29

    If this is a cluster that is hosted by Azure, these settings will be reverted to default values the next time cluster code or configuration upgrade is performed. Please change them by setting the value in the Service Fabric resource via Azure Resource Explorer or PowerShell. This will ensure that these settings are preserved.

    "fabricSettings": [
          {
            "name": "EseStore",
            "parameters": [
              {
                "name": "MaxCursors",
                "value": "32768"
              }
            ]
          }
    
    ],
    

    On the local development cluster you can modify the default cluster manifest XML files located in C:\Program Files\Microsoft SDKs\Service Fabric\ClusterSetup\ with following section and then recreate the cluster.

提交回复
热议问题