You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by gr...@apache.org on 2019/07/10 21:05:03 UTC

[kudu] branch master updated (3cbc0d4 -> 09e089b)

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

granthenke pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git.


    from 3cbc0d4  Extend benchmark for ColumnarRowBlockToPB.
     new daf2572  Remove experimental tags from NVM block cache gflags
     new 09e089b  [web] add HMS docs to the side menu

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docs/support/jekyll-templates/document.html.erb | 1 +
 src/kudu/cfile/block_cache.cc                   | 3 +--
 src/kudu/util/nvm_cache.cc                      | 1 -
 3 files changed, 2 insertions(+), 3 deletions(-)


[kudu] 01/02: Remove experimental tags from NVM block cache gflags

Posted by gr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

granthenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit daf2572ad107bc50bb8a4e534a5e1414aa71bbe6
Author: Adar Dembo <ad...@cloudera.com>
AuthorDate: Tue Jul 9 15:47:37 2019 -0700

    Remove experimental tags from NVM block cache gflags
    
    The block cache has supported non-volatile memory for almost four years
    now, though one needed to configure some experimental gflags in order to
    use it. The implementation was recently changed to use the newer memkind
    library and, in the process, underwent additional testing on NVM hardware.
    As such, I think it's time to remove the experimental tags to communicate to
    users that the underlying code is supported upstream.
    
    Note: I'm not marking them as 'stable' so that we retain the flexibility to
    modify the configuration surface itself, if we find we need that.
    
    Change-Id: Ie6b58118116ecc11b2eaa5cec4a9e72c29ac27f8
    Reviewed-on: http://gerrit.cloudera.org:8080/13830
    Reviewed-by: Greg Solovyev <gs...@cloudera.com>
    Reviewed-by: Andrew Wong <aw...@cloudera.com>
    Tested-by: Kudu Jenkins
---
 src/kudu/cfile/block_cache.cc | 3 +--
 src/kudu/util/nvm_cache.cc    | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/kudu/cfile/block_cache.cc b/src/kudu/cfile/block_cache.cc
index ff17524..5ea8316 100644
--- a/src/kudu/cfile/block_cache.cc
+++ b/src/kudu/cfile/block_cache.cc
@@ -54,8 +54,7 @@ DEFINE_string(block_cache_type, "DRAM",
               "Which type of block cache to use for caching data. "
               "Valid choices are 'DRAM' or 'NVM'. DRAM, the default, "
               "caches data in regular memory. 'NVM' caches data "
-              "in a memory-mapped file using the NVML library.");
-TAG_FLAG(block_cache_type, experimental);
+              "in a memory-mapped file using the memkind library.");
 
 using strings::Substitute;
 
diff --git a/src/kudu/util/nvm_cache.cc b/src/kudu/util/nvm_cache.cc
index 55adffd..320048b 100644
--- a/src/kudu/util/nvm_cache.cc
+++ b/src/kudu/util/nvm_cache.cc
@@ -59,7 +59,6 @@ DECLARE_bool(cache_force_single_shard);
 DEFINE_string(nvm_cache_path, "/pmem",
               "The path at which the NVM cache will try to allocate its memory. "
               "This can be a tmpfs or ramfs for testing purposes.");
-TAG_FLAG(nvm_cache_path, experimental);
 
 DEFINE_int32(nvm_cache_allocation_retry_count, 10,
              "The number of times that the NVM cache will retry attempts to allocate "


[kudu] 02/02: [web] add HMS docs to the side menu

Posted by gr...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

granthenke pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git

commit 09e089bfafb9a1fa2099bd43cd0bd786dad0e771
Author: Andrew Wong <aw...@apache.org>
AuthorDate: Tue Jul 9 19:22:48 2019 -0700

    [web] add HMS docs to the side menu
    
    Change-Id: Ic3aaf36954ca0b63f04f5923b93cddd03813337a
    Reviewed-on: http://gerrit.cloudera.org:8080/13831
    Tested-by: Kudu Jenkins
    Reviewed-by: Grant Henke <gr...@apache.org>
---
 docs/support/jekyll-templates/document.html.erb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/support/jekyll-templates/document.html.erb b/docs/support/jekyll-templates/document.html.erb
index 84c6381..e6dcfa7 100644
--- a/docs/support/jekyll-templates/document.html.erb
+++ b/docs/support/jekyll-templates/document.html.erb
@@ -89,6 +89,7 @@ end %>
         :quickstart, "Quickstart Guide",
         :installation, "Installation Guide",
         :configuration, "Configuring Kudu",
+        :hive_metastore, "Using the Hive Metastore with Kudu",
         :kudu_impala_integration, "Using Impala with Kudu",
         :administration, "Administering Kudu",
         :troubleshooting, "Troubleshooting Kudu",