c# - Error Calling InitializeCache on WindowsAzure Storage Account -
i have following snippet being called on on application start:
var drivecache = roleenvironment.getlocalresource("imageslive"); clouddrive.initializecache(drivecache.rootpath, drivecache.maximumsizeinmegabytes);
this has been working year or so. have upload new version of site , getting following error:
exception of type 'microsoft.windowsazure.clouddrive.interop.interopclouddriveexception' thrown. @ throwiffailed(uint32 hr) @ microsoft.windowsazure.storageclient.clouddrive.initializecache(string cachepath, int32 totalcachesize) unknown error hresult=80070103 @ microsoft.windowsazure.storageclient.clouddrive.initializecache(string cachepath, int32 totalcachesize) @ site.global.application_start(object sender, eventargs e)
this works when running within vs emulator presumably update.
does have pointers how might go getting more information? cannot see way of getting more information, let alone sudden cause of error is.
this has been found side effect of security update in latest guest os update. temporary solution modify cloud service use march guest os (201503 versions --- 2.37, 3.25, or 4.18) instead of automatic guest os version. can find instructions manually configuring guest os version @ https://msdn.microsoft.com/en-us/library/azure/ff729420.aspx. investigating issue in order fix root cause within guest os can continue using automatic guest os updates.
also please note clouddrive feature never released out of beta. upcoming storage service version retirement in december (http://azure.microsoft.com/blog/2014/08/04/microsoft-azure-storage-service-version-removal/) clouddrive no longer function. should begin making plans migrate azure files. http://blogs.msdn.com/b/windowsazurestorage/archive/2014/07/24/migrating-data-to-microsoft-azure-files.aspx has information on how migrate data.
Comments
Post a Comment