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

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

commit 11db3f28b36d92ce1515bcaace51a3586838abcb
Author: Abhishek Chennaka <achenn...@cloudera.com>
AuthorDate: Tue May 3 12:28:21 2022 -0400

    [master] KUDU-2671: Range specific hashing during table alter op.
    
    This commit has the proto file, master.proto, updated to reflect
    the changes needed for having custom hash partitioning while
    adding a new range to an existing table.
    The AlterTableRequestPB has the new field to accommodate the
    new change.
    The reason for pushing this patch with just this change is to
    unblock client side work while the server side work is being
    done.
    
    Change-Id: Ifec5566ea8f3e49d00dcb6964b3d17c4be0504eb
    Reviewed-on: http://gerrit.cloudera.org:8080/18485
    Reviewed-by: Alexey Serbin <ale...@apache.org>
    Tested-by: Kudu Jenkins
---
 src/kudu/master/master.proto | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/kudu/master/master.proto b/src/kudu/master/master.proto
index bfccafe50..48b004721 100644
--- a/src/kudu/master/master.proto
+++ b/src/kudu/master/master.proto
@@ -732,6 +732,9 @@ message AlterTableRequestPB {
     // The dimension label for the tablet. Used for dimension-specific 
placement
     // of the tablet's replicas.
     optional string dimension_label = 2;
+
+    // The custom hash partition schema for the range if specified.
+    repeated PartitionSchemaPB.HashBucketSchemaPB custom_hash_schema = 3;
   }
   message DropRangePartition {
     // A set of row operations containing the lower and upper range bound for

Reply via email to