[
https://issues.apache.org/jira/browse/HBASE-29526?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18044887#comment-18044887
]
Hudson commented on HBASE-29526:
--------------------------------
Results for branch master
[build #1382 on
builds.a.o|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1382/]:
(x) *{color:red}-1 overall{color}*
----
details (if available):
(x) {color:red}-1 general checks{color}
-- For more information [see general
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1382/General_20Nightly_20Build_20Report/]
(/) {color:green}+1 jdk17 hadoop3 checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1382/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(x) {color:red}-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/master/1382/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(x) {color:red}-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/master/1382/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(x) {color:red}-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/master/1382/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(x) {color:red}-1 jdk17 hadoop 3.4.1 backward compatibility checks{color}
-- For more information [see jdk17
report|https://ci-hbase.apache.org/job/HBase%20Nightly/job/master/1382/JDK17_20Nightly_20Build_20Report_20_28Hadoop3_29/]
(/) {color:green}+1 source release artifact{color}
-- See build output for details.
(/) {color:green}+1 client integration test for 3.3.5 {color}
(/) {color:green}+1 client integration test for 3.3.6 {color}
(/) {color:green}+1 client integration test for 3.4.0 {color}
(/) {color:green}+1 client integration test for 3.4.1 {color}
(/) {color:green}+1 client integration test for 3.4.2 {color}
> Dynamic configuration not working for coprocessor
> -------------------------------------------------
>
> Key: HBASE-29526
> URL: https://issues.apache.org/jira/browse/HBASE-29526
> Project: HBase
> Issue Type: Bug
> Components: Coprocessors
> Affects Versions: 2.5.12
> Reporter: Jaehui Lee
> Assignee: Jaehui Lee
> Priority: Major
> Labels: pull-request-available
> Fix For: 4.0.0-alpha-1
>
>
> h2. Problem
> Dynamic configuration support for coprocessors was added in HBASE-26810
> When applying dynamic config to Region Coprocessors, the config changes are
> not being applied properly.
> After adding the following config and executing the shell command, the
> coprocessors in existing regions were not updated as expected.
> {code:xml}
> <name>hbase.coprocessor.region.classes</name>
> <value>...</value>
> {code}
> {code:sh}
> hbase shell> update_all_config
> {code}
> Existing regions do not load the coprocessors after dynamic configuration
> updates.
> However, newly created regions do load the coprocessors correctly.
> The same issue also affects RegionServer and Master Coprocessors.
> h2. Root Cause
> When updating dynamic config, the system reloads the Configuration object and
> then propagates the changes to child observers.
> HMaster, HRegionServer, and HRegion all compare coprocessor-related config
> values between the current config and the newly received one. If changes are
> detected, they create new coprocessors.
> However, since the Configuration object has already been reloaded at this
> point, both the current config and the received config are identical.
> This causes the system to always determine that no configuration changes have
> occurred, resulting in coprocessors not being loaded.
> h2. Proposed Solution
> Compare the currently loaded coprocessor list with the updated configuration
> settings. If changes are detected, reload the coprocessors accordingly.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)