How to install Kudu?

Viewed 388

I am familiar with hadoop components like hive, hbase, hdfs etc. But i am very new to Apache Kudu.

So far, from my research i understood that kudu is nothing but columnar storage like parquet. Also it's faster as Hbase.

But i am still unable to find any efficient document for kudu installation. Even i am wondering whether i really need to install any seperate package for kudu or its inbuild in hadoop(EMR or Dataproc).

Please help how can i start hands-on on kudu.

1 Answers

Kudu is NOT a file format but rather a different storage engine. Consider it to be a parallel/alternative file system to your HDFS (or S3). Yes, it DOES require installation of Master and Tablet servers, see Architecture Overview on Apache web site.

And since its an open source Apache project, installation instructions can also be found on Apache web site: https://kudu.apache.org/docs/installation.html.

Related