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

HBASE-26473 Introduce db.hbase.container_operations span attribute #4079

Merged
Merged
Changes from 1 commit
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
Prev Previous commit
Fix StackOverflowException in TableOperationSpanBuilder
ndimiduk committed Jan 29, 2022

Verified

This commit was signed with the committer’s verified signature.
gegham-khachatryan Gegham Khachatryan
commit d8fa971fcd0411431585597eda6f95011f797efe
Original file line number Diff line number Diff line change
@@ -127,7 +127,11 @@ private static Set<Operation> unpackRowOperations(final Row row) {
}
if (row instanceof RowMutations) {
final RowMutations mutations = (RowMutations) row;
ops.addAll(unpackRowOperations(mutations));
final List<Operation> operations = mutations.getMutations()
.stream()
.map(TableOperationSpanBuilder::valueFrom)
.collect(Collectors.toList());
ops.addAll(operations);
}
return ops;
}