azure-autoscaling-block

VMSS with service fabric cluster autoscale

跟風遠走 提交于 2019-12-31 03:36:10
问题 I want to scale out or scale in the service fabric application. For this I have added the autoscalesettings with CPU metric on VM scale set. And in VM scale set, I have the extension section with wadcfg section with counter on CPU metric. And the data is successfully getting emitted to storage account which I have specified.But scale out or scale on options are not getting done with VMSS and service fabric cluster. I have gone through trouble shooting steps which were specified in azure

Azure storage queues - create_queue - getting 'binascii.Error: Incorrect padding'

早过忘川 提交于 2019-12-13 07:18:05
问题 EDIT: Where can I find my "user" and "password" for my storage account in Azure ? (see below). I simply try to create a queue with the python sdk in python3.4 but with this code: from azure.storage import QueueService q = QueueService("user", "password") q.create_queue('testqueue') I get: Traceback (most recent call last): File "new.py", line 4, in <module> q.create_queue('testqueue') File "/usr/local/lib/python3.4/dist-packages/azure/storage/queueservice.py", line 151, in create_queue

VMSS with service fabric cluster autoscale

只谈情不闲聊 提交于 2019-12-01 11:11:06
I want to scale out or scale in the service fabric application. For this I have added the autoscalesettings with CPU metric on VM scale set. And in VM scale set, I have the extension section with wadcfg section with counter on CPU metric. And the data is successfully getting emitted to storage account which I have specified.But scale out or scale on options are not getting done with VMSS and service fabric cluster. I have gone through trouble shooting steps which were specified in azure portal. https://azure.microsoft.com/en-us/documentation/articles/virtual-machine-scale-sets-troubleshoot/