Show HN: AzureFS – I mounted Azure Cloud Storage as filesystem on Linux(alpblog.heroku.com)
alpblog.heroku.com
Show HN: AzureFS – I mounted Azure Cloud Storage as filesystem on Linux
http://alpblog.heroku.com/blog/introducing-azurefs/
7 comments
I didn't really understand the use case for this until the last paragraph. Might help others:
...imagine there’s a case where you would like to upload your daily log files to the cloud with a cronjob, then you can mount AzureFS upon startup and let your cronjob just copy the files to the cloud very easily.
Also loving the 'wp-svbtle' at the bottom...
...imagine there’s a case where you would like to upload your daily log files to the cloud with a cronjob, then you can mount AzureFS upon startup and let your cronjob just copy the files to the cloud very easily.
Also loving the 'wp-svbtle' at the bottom...
One of my recent weekend projects was implementing a simple command-line interface to the Azure blob storage in Haskell. It's not quite finished, but may still be useful to some. Check it out at https://github.com/ArnoVanLumig/azurify
That's cool. Starred.
Very interesting. I wonder why did you choose Azure Storage over AWS S3.
I think I'm right in suggesting it's free with a bizspark licence, which is a kind of a free licence available to startups.
Whilst the platform (Azure) is clearly proprietary, they're clearly making efforts to offer cross platform IaaS and cross platform client (OpenSource) capabilities for their PaaS offerings.
It maybe a crock of shite, it maybe the best thing since sliced bread but I for one feel that that particular team deserves credit for trying (hard) to adopt open source and make themselves an attractive proposition outside Microsofts traditional core strengths. Time will tell if they're make a success of this...
Whilst the platform (Azure) is clearly proprietary, they're clearly making efforts to offer cross platform IaaS and cross platform client (OpenSource) capabilities for their PaaS offerings.
It maybe a crock of shite, it maybe the best thing since sliced bread but I for one feel that that particular team deserves credit for trying (hard) to adopt open source and make themselves an attractive proposition outside Microsofts traditional core strengths. Time will tell if they're make a success of this...
There are already solutions that can mount s3 as file system, for years. I know it is more widespread but I work for Microsoft Azure and I provided a solution that didn't exist for Azure.
Azure is actually very fast, and S3 has historically been a bit less than reliable.
(Full disclosure: I work for Microsoft, but not on Azure.)
(Full disclosure: I work for Microsoft, but not on Azure.)
Could you provide some outages you're referring to for S3 reliability? I've been using it for the last 4 years and not had a problem.
My experience is also backed up by Nasuni's Cloud Storage Benchmark from December that report that AWS has 1.4 outages a month (compared to Azure's 11.1 a month) and concluded that AWS was faster than Azure (AWS & Azure being the top performers)
My experience is also backed up by Nasuni's Cloud Storage Benchmark from December that report that AWS has 1.4 outages a month (compared to Azure's 11.1 a month) and concluded that AWS was faster than Azure (AWS & Azure being the top performers)
Here's a weekend project with a similar goal, but aimed at Dropbox. Still needs a bit of work though..
https://github.com/Modoatk/DoITLive
https://github.com/Modoatk/DoITLive
Similarly, in read() you always download the entire blob (again). It seems that get_blob() comes with an x_ms_range parameter that would allow you to specify the byte range you actually want.