Isn't everything block-storage? (File-storage, object-storage, block-storage)

283 views Asked by At

I try to distinquish the known storage types File-, Block- and Object-Storage and I am stuck on one point for hours now:

In the end, on any type of storage data is stored as blocks of bits on a drive, isn't it?

And is "File-Storage" not the same as "file/folder based, hierarchical organized magagemend/representation on a block storage"?

It seems to me that the terms File- and Object-Storage are more about the concept of organizing and managing data whereas block-storage is more about the underlying implementation of storing the data in the end?

Can someone enlighten me please

2

There are 2 answers

1
Srik On

The type of storage (file, block or object) depends upon the type of interface exposed externally to users or applications.

While internally, all the types of storage may be block storage, what matters is how this storage is exposed - for read & write to external parties such as users, applications or even other storage systems (e.g. for augmenting storage)

0
Alex Ilyin On

I came to the scheme:

block = data

file = block + metadata (name, size, author etc.)

object = file + metadata (anything)

PS: trying to understand the basics too. Correct me if I'm not right, please.