Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FLINK-37212] When hbase region move, throw "Unable to load exception received from server: XXX" #55

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 3 additions & 3 deletions flink-sql-connector-hbase-2.2/pom.xml
ferenc-csaky marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ under the License.
<relocation>
<pattern>org.apache.hadoop.hbase</pattern>
<shadedPattern>org.apache.flink.hbase.shaded.org.apache.hadoop.hbase</shadedPattern>
<!-- HBase client uses shaded KeyValueCodec to encode data and put the class name in
the header of request, the HBase region server can not load the shaded
KeyValueCodec class when decode the data, so we exclude them here. -->
<!-- Some exceptions also required to keep their original package because the region server sends it that way, and otherwise the client will not recognize it. -->
<excludes>
<exclude>org.apache.hadoop.hbase.codec.*</exclude>
<exclude>org.apache.hadoop.hbase.NotServingRegionException</exclude>
<exclude>org.apache.hadoop.hbase.exceptions.RegionMovedException</exclude>
</excludes>
</relocation>
</relocations>
Expand Down
Loading