Skip to content

Commit

Permalink
Keep the original doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoBQ committed May 14, 2021
1 parent 14d2db1 commit d294c17
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,18 @@ private static void checkDefaultsVersion(Configuration conf) {
}
}

/**
* The hbase.ipc.server.reservoir.initial.max and hbase.ipc.server.reservoir.initial.buffer.size
* were introduced in HBase2.0.0, while in HBase3.0.0 the two config keys will be replaced by
* hbase.server.allocator.max.buffer.count and hbase.server.allocator.buffer.size.
* Also the hbase.ipc.server.reservoir.enabled will be replaced by
* hbase.server.allocator.pool.enabled. Keep the three old config keys here for HBase2.x
* compatibility.
* <br>
* HBASE-24667: This config hbase.regionserver.hostname.disable.master.reversedns will be
* replaced by hbase.unsafe.regionserver.hostname.disable.master.reversedns. Keep the old config
* keys here for backward compatibility.
*/
private static void addDeprecatedKeys() {
Configuration.addDeprecations(new DeprecationDelta[]{
new DeprecationDelta("hbase.regionserver.hostname", "hbase.unsafe.regionserver.hostname"),
Expand Down

0 comments on commit d294c17

Please sign in to comment.