tags:

views:

518

answers:

1

Does anyone have any familiarity with working with both CloudStore and HDFS. I am interested to see how far CloudStore has been scaled and how heavily it has been used in production. CloudStore seems to be more full featured than HDFS. When thinking about these two filesystems what practical trade offs are there?

+1  A: 

Steve, It seems that CloudStore should be faster than the HDFS as it's designed in C++. We are also interested in this Comparision and planning to use this in production.

Let us know if you find anything interesting in this regards.

Rajan
"As it's designed in C++"? For distributed file-systems, where the performance issues do not usually stem directly from computational load, I would expect algorithms to weigh in quite a bit more heavily than languages.
Ranieri
Depends on scale. At low scale that is correct. If a managed language imposes say a 10% overhead then you have to have 10% more servers. At a certain point it is cheaper to write something in c++ than buy 10% more servers. I know most people don't have that problem but I soon will.
Steve