Hadoop archive utility alternative for CEPH

Viewed 98

I have some HAR files (Hadoop archive files) on my HDFS based storage, which have some archived data that is not frequently used.

Now we have a plan to move to CEPH based storage. So I have 2 questions:

  1. Can I somehow use my existing HAR files on CEPH?
  2. Does CEPH have some archive utility like HDFS has Hadoop Archive utility?

Thanks

1 Answers

It's been a while since I have used Hadoop but I can answer following questions:

  • Can I somehow use my existing HAR files on CEPH?

    Although I am sure there is no official support for HAR in Ceph, I think its still possible since Ceph file system can be used as a drop-in replacement for the Hadoop File System (HDFS).

  • Does CEPH have some archive utility like HDFS has Hadoop Archive utility?

    Since I use Ceph on daily basis, I have not come across any such archive utility in Ceph similar to HAR. As you know, HAR uses .tar extension. Therefore, what I have been doing is using compressed tarballs. For block devices I store the tarballs as Ceph RBD (rados block device) volumes. And if I am working with Objects, I archive the tarballs as RGW objects.

In order to help you further I am sharing some useful threads to dig deeper:

Related