Local VHD/ISO to Azure Blob StorageAzure Storage & SnapshotsAccess Azure Storage Blob as file systemHow to attach my uploaded vhd to a virtual machine in Azure?Azure Blob Storage: CloudBlockBlob.DownloadToStream throws OutOfMemory exceptionMounting a virtual drive (vhd) in a windows azure instance of web/worker roleMounting a blob container’s contents as a drive in a VMWhat's the best way to move a large amount data from local to azure blob storageAzure blob storage split blobs and store on Cloud file shareCan I mount Azure Files Storage from my local Workstation?It there some way for bulk upload of million files to Azure Blob Storage?
Colleagues speaking another language and it impacts work
How to switch an 80286 from protected to real mode?
Minors holding dual citizenship - using Canadian passport to enter/exit US
Best way to explain to my boss that I cannot attend a team summit because it is on Rosh Hashana or any other Jewish Holiday
Can ads on a page read my password?
Traveling from Germany to other countries by train?
The heat content of the products is more than that of the reactant in an ............. reaction
Which genus do I use for neutral expressions in German?
"To go from zero to hero"
Can I enter a rental property without giving notice if I'm afraid a tenant may be hurt?
How do these cubesats' whip antennas work?
I was contacted by a private bank overseas to get my inheritance
How to continue a line in Latex in math mode?
Based on what criteria do you add/not add icons to labels within a toolbar?
Is it double speak?
Print only the last three columns from file
Is DC heating faster than AC heating?
Did Captain America make out with his niece?
How easy is it to get a gun illegally in the United States?
Is it a bad idea to offer variants of a final exam based on the type of allowed calculators?
How to dogfight in Elite: Dangerous?
NIntegrate doesn't work with NumericQ
Determine Beckett Grading Service (BGS) Final Grade
Is charge point-like or a smear?
Local VHD/ISO to Azure Blob Storage
Azure Storage & SnapshotsAccess Azure Storage Blob as file systemHow to attach my uploaded vhd to a virtual machine in Azure?Azure Blob Storage: CloudBlockBlob.DownloadToStream throws OutOfMemory exceptionMounting a virtual drive (vhd) in a windows azure instance of web/worker roleMounting a blob container’s contents as a drive in a VMWhat's the best way to move a large amount data from local to azure blob storageAzure blob storage split blobs and store on Cloud file shareCan I mount Azure Files Storage from my local Workstation?It there some way for bulk upload of million files to Azure Blob Storage?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a bunch of VHDs mounted locally.
They contain a huge number of relatively small files (tens of millions of files per VHD)
Is there a way to transfer the VHDs to Azure and "mount" them inside a blob storage container so I can be able to access those files as blobs?
I can convert VHDs to ISO files if that would help.
Trying to save time and money with this method.
LE:
Azure File Shares is fine, too
azure-storage azure-storage-blobs iso vhd
add a comment |
I have a bunch of VHDs mounted locally.
They contain a huge number of relatively small files (tens of millions of files per VHD)
Is there a way to transfer the VHDs to Azure and "mount" them inside a blob storage container so I can be able to access those files as blobs?
I can convert VHDs to ISO files if that would help.
Trying to save time and money with this method.
LE:
Azure File Shares is fine, too
azure-storage azure-storage-blobs iso vhd
add a comment |
I have a bunch of VHDs mounted locally.
They contain a huge number of relatively small files (tens of millions of files per VHD)
Is there a way to transfer the VHDs to Azure and "mount" them inside a blob storage container so I can be able to access those files as blobs?
I can convert VHDs to ISO files if that would help.
Trying to save time and money with this method.
LE:
Azure File Shares is fine, too
azure-storage azure-storage-blobs iso vhd
I have a bunch of VHDs mounted locally.
They contain a huge number of relatively small files (tens of millions of files per VHD)
Is there a way to transfer the VHDs to Azure and "mount" them inside a blob storage container so I can be able to access those files as blobs?
I can convert VHDs to ISO files if that would help.
Trying to save time and money with this method.
LE:
Azure File Shares is fine, too
azure-storage azure-storage-blobs iso vhd
azure-storage azure-storage-blobs iso vhd
edited Mar 27 at 7:14
Adi
asked Mar 27 at 4:36
AdiAdi
3,6653 gold badges35 silver badges53 bronze badges
3,6653 gold badges35 silver badges53 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I don't think there is a way to do so. Instead, you can either:
- Upload a VHD to Azure as a page blob, and mount it as data disk of an Azure VM. However, it's just one page blob when you access the VHD with Azure Storage API, and you're only able to browse the internal files in the VHD within the VM.
- Mount the VHD locally, and upload the files in the VHD one by one to Azure File Share or Azure Blob Container (you may consider using AzCopy for best uploading performance). After that, you'd be able to access those files directly with Azure Storage REST API or Azure Storage Client Libraries, but the VHD itself it not on Azure.
In a word, there is no way to both mount the VHD in Azure Storage and access the files within the VHD with Azure Storage API, you need to choose either of them.
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55369893%2flocal-vhd-iso-to-azure-blob-storage%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't think there is a way to do so. Instead, you can either:
- Upload a VHD to Azure as a page blob, and mount it as data disk of an Azure VM. However, it's just one page blob when you access the VHD with Azure Storage API, and you're only able to browse the internal files in the VHD within the VM.
- Mount the VHD locally, and upload the files in the VHD one by one to Azure File Share or Azure Blob Container (you may consider using AzCopy for best uploading performance). After that, you'd be able to access those files directly with Azure Storage REST API or Azure Storage Client Libraries, but the VHD itself it not on Azure.
In a word, there is no way to both mount the VHD in Azure Storage and access the files within the VHD with Azure Storage API, you need to choose either of them.
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
add a comment |
I don't think there is a way to do so. Instead, you can either:
- Upload a VHD to Azure as a page blob, and mount it as data disk of an Azure VM. However, it's just one page blob when you access the VHD with Azure Storage API, and you're only able to browse the internal files in the VHD within the VM.
- Mount the VHD locally, and upload the files in the VHD one by one to Azure File Share or Azure Blob Container (you may consider using AzCopy for best uploading performance). After that, you'd be able to access those files directly with Azure Storage REST API or Azure Storage Client Libraries, but the VHD itself it not on Azure.
In a word, there is no way to both mount the VHD in Azure Storage and access the files within the VHD with Azure Storage API, you need to choose either of them.
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
add a comment |
I don't think there is a way to do so. Instead, you can either:
- Upload a VHD to Azure as a page blob, and mount it as data disk of an Azure VM. However, it's just one page blob when you access the VHD with Azure Storage API, and you're only able to browse the internal files in the VHD within the VM.
- Mount the VHD locally, and upload the files in the VHD one by one to Azure File Share or Azure Blob Container (you may consider using AzCopy for best uploading performance). After that, you'd be able to access those files directly with Azure Storage REST API or Azure Storage Client Libraries, but the VHD itself it not on Azure.
In a word, there is no way to both mount the VHD in Azure Storage and access the files within the VHD with Azure Storage API, you need to choose either of them.
I don't think there is a way to do so. Instead, you can either:
- Upload a VHD to Azure as a page blob, and mount it as data disk of an Azure VM. However, it's just one page blob when you access the VHD with Azure Storage API, and you're only able to browse the internal files in the VHD within the VM.
- Mount the VHD locally, and upload the files in the VHD one by one to Azure File Share or Azure Blob Container (you may consider using AzCopy for best uploading performance). After that, you'd be able to access those files directly with Azure Storage REST API or Azure Storage Client Libraries, but the VHD itself it not on Azure.
In a word, there is no way to both mount the VHD in Azure Storage and access the files within the VHD with Azure Storage API, you need to choose either of them.
answered Mar 27 at 11:04
Zhaoxing Lu - MicrosoftZhaoxing Lu - Microsoft
4,0969 silver badges24 bronze badges
4,0969 silver badges24 bronze badges
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
add a comment |
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
do you happen to know if this could be a feature that will be ever implemented?
– Adi
Mar 27 at 17:24
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
I can't comment on this, but I'd still suggest you to choose either of the two ways above rather than wait for such a feature.
– Zhaoxing Lu - Microsoft
Mar 28 at 1:28
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55369893%2flocal-vhd-iso-to-azure-blob-storage%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown