[ 
https://issues.apache.org/jira/browse/HBASE-29279?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17977427#comment-17977427
 ] 

Hudson commented on HBASE-29279:
--------------------------------

Results for branch branch-2
        [build #1284 on 
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/]: 
(x) *{color:red}-1 overall{color}*
----
details (if available):

(/) {color:green}+1 general checks{color}
-- For more information [see general 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/General_20Nightly_20Build_20Report/]


(/) {color:green}+1 jdk8 hadoop2 checks{color}
-- For more information [see jdk8 (hadoop2) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK8_20Nightly_20Build_20Report_20_28Hadoop2_29/]


(x) {color:red}-1 jdk8 hadoop3 checks{color}
-- For more information [see jdk8 (hadoop3) 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK8_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(x) {color:red}-1 jdk11 hadoop3 checks{color}
-- For more information [see jdk11 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK11_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 jdk17 hadoop3 checks{color}
-- For more information [see jdk17 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 jdk17 hadoop 3.3.5 backward compatibility checks{color}
-- For more information [see jdk17 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 jdk17 hadoop 3.3.6 backward compatibility checks{color}
-- For more information [see jdk17 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(/) {color:green}+1 jdk17 hadoop 3.4.0 backward compatibility checks{color}
-- For more information [see jdk17 
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]


(x) {color:red}-1 source release artifact{color}
-- Something went wrong with this stage, [check relevant console 
output|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284//console].


(x) {color:red}-1 client integration test{color}
-- Something went wrong with this stage, [check relevant console 
output|https://ci-hbase.apache.org/job/HBase%20Nightly/job/branch-2/1284//console].


> Allow throttling alter operation via table configuration
> --------------------------------------------------------
>
>                 Key: HBASE-29279
>                 URL: https://issues.apache.org/jira/browse/HBASE-29279
>             Project: HBase
>          Issue Type: Improvement
>    Affects Versions: 2.7.0, 3.0.0-beta-2
>            Reporter: Junegunn Choi
>            Assignee: Junegunn Choi
>            Priority: Major
>              Labels: pull-request-available
>
> h2. Problem
> HBASE-28215 introduced a mechanism to throttle region reopening during an 
> alter operation. However, it relies on a global configuration parameter, so 
> in order to change the throttling settings, you would have to deploy the new 
> settings to the master server and restart it. This is not ideal because:
> 1. Your cluster may host tables with different service level objectives, each 
> requiring different throttling policies.
> 2. You may want to tune throttling dynamically — for example, during off-peak 
> hours — without repeatedly restarting the master server.
> h2. Suggestion
> Support table-specific configuration for throttling if provided.
> {code:java}
> # Use global defaults
> alter 't', { NAME => 'd', COMPRESSION => 'GZ' }
> # Apply custom throttling for this alter operation
> alter 't', { NAME => 'd', COMPRESSION => 'GZ' },
>       {
>         CONFIGURATION => {
>           'hbase.reopen.table.regions.progressive.batch.size.max' => 32,
>           'hbase.reopen.table.regions.progressive.batch.backoff.ms' => 500
>         }
>       }
> # Future alter operations on this table will reuse the throttling 
> configuration
> alter 't', { NAME => 'd', COMPRESSION => 'GZ' }
> {code}
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

Reply via email to