Hbase patch application

I am currently saving data to Opentsdb, and at some point I get the following error:

ERROR [AsyncHBase I/O Worker #13] RegionClient: Uncaught error during de-serialization of MultiAction(batch=...........

I did a few searches and found out the cause of this problem on the following website, which explains the reason and provides the patch file: HBASE-17924

The problem is that I cannot find a way to apply the patch file to my hbase-1.4.2

+4
source share
1 answer

These fixes are simply Git diffs that allow you to add a bug fix to the source code. If you want to apply this patch, you will need to check the HBase source code and apply the patch as follows:

git apply name-of-file.patch

--check , .

HBase.

0

Source: https://habr.com/ru/post/1694749/


All Articles