Questions tagged [azure-clouddrive]

Azure Cloud Drive represents a mounted NTFS volume that is persisted between role recycle events.

A Windows Azure drive acts as a local NTFS volume that is mounted on the server’s file system and that is accessible to code running in a role. The data written to a Windows Azure drive is stored in a page blob defined within the Windows Azure Blob service, and cached on the local file system. Because data written to the drive is stored in a page blob, the data is maintained even if the role instance is recycled. For this reason, a Windows Azure drive can be used to run an application that must maintain state, such as a third-party database application.

7 questions
5
votes
1 answer

Azure SDK 1.8 CloudDrive

Where is CloudDrive in Azure SDK 1.8 (October 2012)? In Azure SDK 1.8 the StorageClient namespace no longer exists. This is the namespace that contained CloudDrive. I know that the StorageClient namespace was renamed to Storage in Azure SDK 1.8,…
2
votes
1 answer

Performance of Azure PaaS Cloud Drives vs IaaS Disks

According to a comment on a StackOverflow answer, In a web or worker role you have to use an Azure Drive - which has much lower performance than an Azure Disk which you get with a VHD. Reference:…
David Pfeffer
  • 38,869
  • 30
  • 127
  • 202
2
votes
1 answer

Azure CloudDrive HTTPS Uri

From this MSDN article it says that the connection string for connecting to the storage account must be HTTP and not HTTPS. When I use this constructor: public CloudDrive ( Uri uri, StorageCredentials credentials ) Does that mean the Uri to…
jws_
  • 307
  • 2
  • 9
1
vote
2 answers

Console Application to mount azure cloud drive

I want to mount vhd from my private container. After google I get that it is only possible through .net. I am more of a JAVA person. I need a batch script or code in c# (So that I can get an exe file) which can automatically run at startup and mount…
Anurag Tripathi
  • 1,208
  • 1
  • 12
  • 31
1
vote
1 answer

How to mount azure-cloud drive?

I want to mount vhd from my private container. After google I get that it is only possible through .net . I am more of a JAVA person. So I tried this code on visual studio 2012. But I keep getting exception RoleEnvironment not available. I don't…
Anurag Tripathi
  • 1,208
  • 1
  • 12
  • 31
0
votes
1 answer

Clouddrive mount issue

I am trying to change the clouddrive location to another storage account so that I can map it on my computer and upload files directly to it. I am running the following command in azure cli: clouddrive mount -s subscriptionID -g Resource Group -n…
0
votes
1 answer

Deploy service on existing VM

I want to handle some maintenance in existing VM, which is already hosting a website. So I created a web role and package it into .cspkg file. I didn't get any way to deploy this on existing VM. Lets say I don't have any no of remaining new instance…
Anurag Tripathi
  • 1,208
  • 1
  • 12
  • 31