You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/11/08 08:08:48 UTC

[kudu] branch branch-1.10.x updated: docs: recommend memkind for NVM cache users

This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch branch-1.10.x
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/branch-1.10.x by this push:
     new 5d9a767  docs: recommend memkind for NVM cache users
5d9a767 is described below

commit 5d9a76783057f7b17dabaa8ad36f8d913908db2b
Author: Adar Dembo <ad...@cloudera.com>
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 <gr...@apache.org>
    Tested-by: Kudu Jenkins
    (cherry picked from commit 6c646937b1fe1f4ab0aeb9ed638f00c5dd39257c)
    Reviewed-on: http://gerrit.cloudera.org:8080/14658
    Reviewed-by: Adar Dembo <ad...@cloudera.com>
    Tested-by: Alexey Serbin <as...@cloudera.com>
---
 docs/installation.adoc | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/docs/installation.adoc b/docs/installation.adoc
index a65792b..76923fe 100644
--- a/docs/installation.adoc
+++ b/docs/installation.adoc
@@ -108,6 +108,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.
 +
 ----
@@ -238,6 +245,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.
 +
 ----
@@ -355,6 +369,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]