-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
HBASE-25839 Bulk Import fails with java.io.IOException: Type mismatch in value from map #6547
base: branch-2
Are you sure you want to change the base?
Conversation
srinireddy2020
commented
Dec 16, 2024
- CellSortImporter emits values wrapped inside MapReduceExtendedCell
- Converted KV to CellUtil.
@anoopsjohn Please review the changes. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@@ -413,7 +417,7 @@ public void map(ImmutableBytesWritable row, Result value, Context context) throw | |||
// skip if we filtered it out | |||
if (kv == null) continue; | |||
Cell ret = convertKv(kv, cfRenameMap); | |||
context.write(new CellWritableComparable(ret), ret); | |||
context.write(new CellWritableComparable(ret), new MapReduceExtendedCell(ret)); | |||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please add UT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for looking into this issue.
Comment addressed, please verify.
53be03d
to
032b99e
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
We do not have this problem on master branch? |
Any updates here? |
Sorry for the Late reply, This issue is exist in the master branch also. |
Raised PR for the Master Branch. |
… in value from map
032b99e
to
5908276
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
💔 -1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |
🎊 +1 overall
This message was automatically generated. |