On-premises replacement for Azure Blob Storage or Amazon S3 (flat file storage)?
Asked Answered
E

4

14

What's a suitable durable storage replacement for Azure Blob Storage (and Amazon S3) for on-premise installations that are disconnected from the public internet? The development environment is C# - if it matters.

Losing live geo-replication is fine (offline geo-replicated backups work) but would like to retain the high-availability feature exhibited by Azure Blob Storage - meaning if one file server goes down, another one can continue service at the same (or predictable) location/URI till the 1st is restored.

Eccrine answered 19/2, 2014 at 4:38 Comment(1)
Did you found something? I found Dell ECS dell.com/en-ae/dt/storage/ecs/index.htm#tab0=0&tab1=0Imphal
R
5

In the meantime minio could be a good solution as it provides S3 API compatible object storage.

Rudnick answered 5/11, 2017 at 17:10 Comment(0)
O
4

For object storage (the equivalent of S3 or Blob, accessed via API), there are several on-prem options from the likes of Cloudian (HyperStore), Dell (Elastic Cloud Storage), NetApp (StorageGrid Webscale), etc. There are also open source options like Swift back-ended by SwiftStack, Ceph, etc.

If you only need basic flat file storage in a highly-available (HA) manner and can do without API access, most NAS solutions offer this. You could also configure Samba for HA.

Olshausen answered 11/9, 2017 at 16:20 Comment(0)
E
0

Like with Table Storage (your other question), there's no direct equivalent of these technologies but I would recommend looking into hybrid cloud storage system like StorSimple.

Enrollee answered 19/2, 2014 at 5:41 Comment(0)
C
0

For Table Storage you can consider Etcd. You will have to put your Table Name, Partition Key and Row Key into the Key field, and serialize your object to the Value field, but it should be super fast and you can query by prefix, so PK querying will work, and also you can query by range, so time series querying by RK will also work.

PS. It's a filesystem-based database so you should be good for blobs too.

Cadre answered 3/11, 2021 at 12:23 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.