Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion hudi-common/src/main/resources/hbase-site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,13 @@ HBaseConfiguration::addHbaseResources(). To get around this issue,
since HBase loads "hbase-site.xml" after "hbase-default.xml", we
provide hbase-site.xml from the bundle so that HBaseConfiguration
can pick it up and ensure the right defaults.

The HBase version check is skipped (setting "hbase.defaults.for.version.skip"
to true instead of false as default) to avoid any inconvenience caused
by the RuntimeException due to version mismatch if multiple versions
of HBase library are present in the class path. In such a case, the
user needs to make sure there is no config conflict between different
versions.
-->

<!--
Expand Down Expand Up @@ -1427,7 +1434,7 @@ possible configurations would overwhelm and obscure the important.
</property>
<property>
<name>hbase.defaults.for.version.skip</name>
<value>false</value>
<value>true</value>
<description>Set to true to skip the 'hbase.defaults.for.version' check.
Setting this to true can be useful in contexts other than
the other side of a maven generation; i.e. running in an
Expand Down