This is an automated email from the ASF dual-hosted git repository. adar pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit 6c646937b1fe1f4ab0aeb9ed638f00c5dd39257c Author: Adar Dembo <[email protected]> AuthorDate: Wed Nov 6 17:06:53 2019 -0800 docs: recommend memkind for NVM cache users I intentionally omitted transitive dependencies; I assume that the memkind package metadata properly expresses its own dependencies. Change-Id: Ic87273ba2f051a0adad619138fc7fff92014c3e2 Reviewed-on: http://gerrit.cloudera.org:8080/14649 Reviewed-by: Grant Henke <[email protected]> Tested-by: Kudu Jenkins --- docs/installation.adoc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/docs/installation.adoc b/docs/installation.adoc index f7dc39f..5c5ff9a 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -109,6 +109,13 @@ $ sudo yum install -y scl-utils ${DTLS_RPM} $ sudo yum install -y devtoolset-3-toolchain ---- +. Optional: If support for Kudu's NVM (non-volatile memory) block cache is +desired, install the memkind library. ++ +---- +$ sudo yum install memkind +---- + . Optional: Install some additional packages, including ruby, if you plan to build documentation. + ---- @@ -239,6 +246,13 @@ $ sudo apt-get install autoconf automake curl flex g++ gcc gdb git \ openjdk-8-jdk openssl patch pkg-config python rsync unzip vim-common ---- +. Optional: If support for Kudu's NVM (non-volatile memory) block cache is +desired, install the memkind library. ++ +---- +$ sudo apt-get install libmemkind0 +---- + . Optional: Install some additional packages, including ruby, if you plan to build documentation. + ---- @@ -356,6 +370,13 @@ $ sudo zypper install autoconf automake curl cyrus-sasl-devel \ pkg-config python rsync unzip vim ---- +. Optional: If support for Kudu's NVM (non-volatile memory) block cache is +desired, install the memkind library. ++ +---- +$ sudo zypper install memkind +---- + . Clone the Git repository and change to the new `kudu` directory. + [source,bash]
