Repository: hbase Updated Branches: refs/heads/master 2115d4b50 -> 92f74d6f1
HBASE-13866 Clarify description of hbase.coprocessor.region.classes Signed-off-by: Michael Stack <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/92f74d6f Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/92f74d6f Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/92f74d6f Branch: refs/heads/master Commit: 92f74d6f1ed23c7525742f9c81a44594b8d8b8e6 Parents: 2115d4b Author: Misty Stanley-Jones <[email protected]> Authored: Fri Dec 18 12:57:32 2015 -0800 Committer: Michael Stack <[email protected]> Committed: Fri Jun 30 11:08:33 2017 -0700 ---------------------------------------------------------------------- hbase-common/src/main/resources/hbase-default.xml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/92f74d6f/hbase-common/src/main/resources/hbase-default.xml ---------------------------------------------------------------------- diff --git a/hbase-common/src/main/resources/hbase-default.xml b/hbase-common/src/main/resources/hbase-default.xml index b10effd..27a833f 100644 --- a/hbase-common/src/main/resources/hbase-default.xml +++ b/hbase-common/src/main/resources/hbase-default.xml @@ -1105,11 +1105,12 @@ possible configurations would overwhelm and obscure the important. <property> <name>hbase.coprocessor.region.classes</name> <value></value> - <description>A comma-separated list of Coprocessors that are loaded by - default on all tables. For any override coprocessor method, these classes - will be called in order. After implementing your own Coprocessor, just put - it in HBase's classpath and add the fully qualified class name here. - A coprocessor can also be loaded on demand by setting HTableDescriptor.</description> + <description>A comma-separated list of region observer or endpoint coprocessors + that are loaded by default on all tables. For any override coprocessor method, + these classes will be called in order. After implementing your own Coprocessor, + add it to HBase's classpath and add the fully qualified class name here. + A coprocessor can also be loaded on demand by setting HTableDescriptor or the + HBase shell.</description> </property> <property> <name>hbase.rest.port</name>
