Windows azure with Microsoft.WindowsAzure.Plugins.Caching.FileStore error

After I upgraded the Azure SDK version to version 1.7 and tried to post my changes to the web roles, this shows me an error:

Windows Azure could not find the resource Microsoft.WindowsAzure.Plugins.Caching.FileStore in the service package. 

How can this error be resolved?

+4
source share
2 answers

I am sure that in your application based on SDK 1.7 you have the following parameter in CSDEF:

 <LocalResources> <LocalStorage name="Microsoft.WindowsAzure.Plugins.Caching.FileStore" sizeInMB="1000" cleanOnRoleRecycle="false" /> </LocalResources> 

Based on this error, I see that you are updating a previous deployment based on SDK 1.6, which does not have the settings above and why you are getting this error.

Since your configuration has been changed, the update does not work. As a workaround to this problem, you can first perform a new deployment in your intermediate slot, and then a SWAP VIP with products to upgrade it.

+5
source

I found a problem. The problem was that in this vein, settings were set for sharing the cache name = "Microsoft.WindowsAzure.Plugins.Caching.ConfigStoreConnectionString" was installed in the development repository, and not in the real blog repository. It was a problem

+2
source

All Articles