This is an automated email from the ASF dual-hosted git repository.
zhangduo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/master by this push:
new 1bdbb8bd977 HBASE-20663 Make sure coprocessor upgrade anchor ID is not
duplicated in HBase book (#6493)
1bdbb8bd977 is described below
commit 1bdbb8bd97725c8d75ddd872b3b98b0edce6fba5
Author: Dávid Paksy <[email protected]>
AuthorDate: Sun Dec 8 14:02:57 2024 +0100
HBASE-20663 Make sure coprocessor upgrade anchor ID is not duplicated in
HBase book (#6493)
Signed-off-by: Nihal Jain <[email protected]>
Signed-off-by: Istvan Toth <[email protected]>
Signed-off-by: Duo Zhang <[email protected]>
---
src/main/asciidoc/_chapters/architecture.adoc | 2 +-
src/main/asciidoc/_chapters/upgrading.adoc | 6 ++----
2 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/src/main/asciidoc/_chapters/architecture.adoc
b/src/main/asciidoc/_chapters/architecture.adoc
index 08f35397246..3a380ed6810 100644
--- a/src/main/asciidoc/_chapters/architecture.adoc
+++ b/src/main/asciidoc/_chapters/architecture.adoc
@@ -1148,7 +1148,7 @@ benefit of NOT provoking GC.
From HBase 2.0.0 onwards, the notions of L1 and L2 have been deprecated. When
BucketCache is turned on, the DATA blocks will always go to BucketCache and
INDEX/BLOOM blocks go to on heap LRUBlockCache. `cacheDataInL1` support has
been removed.
====
-[[bc.deloy.modes]]
+[[bc.deploy.modes]]
====== BucketCache Deploy Modes
The BucketCache Block Cache can be deployed _offheap_, _file_ or _mmaped_ file
mode.
diff --git a/src/main/asciidoc/_chapters/upgrading.adoc
b/src/main/asciidoc/_chapters/upgrading.adoc
index 055acd96807..45c4e71ca9b 100644
--- a/src/main/asciidoc/_chapters/upgrading.adoc
+++ b/src/main/asciidoc/_chapters/upgrading.adoc
@@ -601,7 +601,7 @@ The HBase shell command relies on a bundled JRuby instance.
This bundled JRuby b
The HBase shell command now ignores the '--return-values' flag that was
present in early HBase 1.4 releases. Instead the shell always behaves as though
that flag were passed. If you wish to avoid having expression results printed
in the console you should alter your IRB configuration as noted in the section
<<irbrc>>.
-[[upgrade2.0.coprocessors]]
+[[upgrade2.0.coprocessors-changes]]
.Coprocessor APIs have changed in HBase 2.0+
All Coprocessor APIs have been refactored to improve supportability around
binary API compatibility for future versions of HBase. If you or applications
you rely on have custom HBase coprocessors, you should read
link:https://issues.apache.org/jira/browse/HBASE-18169[the release notes for
HBASE-18169] for details of changes you will need to make prior to upgrading to
HBase 2.0+.
@@ -618,9 +618,7 @@ For example, if you had a BaseRegionObserver in HBase 1.2
then at a minimum you
...
----
-////
-This would be a good place to link to a coprocessor migration guide
-////
+For more information, see <<upgrade2.0.coprocessors,Upgrading Coprocessors to
2.0>>.
[[upgrade2.0.hfile3.only]]
.HBase 2.0+ can no longer write HFile v2 files.