-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
IGNITE-23513 Use limited representation for arrays in BinaryObjectExImpl::toString #11610
Conversation
@@ -313,9 +320,16 @@ else if (val instanceof Object[]) { | |||
|
|||
appendValue(o, buf, ctx, handles); | |||
|
|||
if (i == COLLECTION_LIMIT - 1) |
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.
int len = Math.min(arr.length, COLLECTION_LIMIT);
for (int i = 0; i < len; i++) {
Object o = arr[i];
appendValue(o, buf, ctx, handles);
if (i < len - 1)
buf.a(", ");
}
@@ -66,6 +69,10 @@ public abstract class BinaryObjectExImpl implements BinaryObjectEx { | |||
*/ | |||
public abstract long offheapAddress(); | |||
|
|||
/** */ | |||
private static final int COLLECTION_LIMIT = |
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.
Let's reuse constant from GridToStringBuilder
.
|
BinaryObjectExImpl::toString shouldn't try to generate large strings for large arrays and respect the IGNITE_TO_STRING_COLLECTION_LIMIT property.
Otherwise errors like java.lang.OutOfMemoryError: Requested array size exceeds VM limit errors may occur.
Thank you for submitting the pull request to the Apache Ignite.
In order to streamline the review of the contribution
we ask you to ensure the following steps have been taken:
The Contribution Checklist
The description explains WHAT and WHY was made instead of HOW.
The following pattern must be used:
IGNITE-XXXX Change summary
whereXXXX
- number of JIRA issue.(see the Maintainers list)
the
green visa
attached to the JIRA ticket (see TC.Bot: Check PR)Notes
If you need any help, please email [email protected] or ask anу advice on http://asf.slack.com #ignite channel.