-
Notifications
You must be signed in to change notification settings - Fork 529
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
fix gremlin job result size gt cassandra limit and lt hugegraph limit #1334
Conversation
Change-Id: Iade74c66259214a6895ae369374c7243761cb0e0
private static final String ERROR_MAX_LEN = "Failed to commit changes: " + | ||
"The max length of bytes is"; | ||
private static final String ERROR_COMMIT = "Failed to commit changes: "; | ||
private static final String ERROR_MAX_LEN = "The max length of bytes is"; |
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.
define Set
/* | ||
* ERROR_TOO_LARGE_BATCH occurs when using cassandra store | ||
* and result size is in | ||
* [batch_size_fail_threshold_in_kb, TASK_RESULT_SIZE_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.
improve comments
Codecov Report
@@ Coverage Diff @@
## master #1334 +/- ##
============================================
- Coverage 62.32% 62.31% -0.01%
- Complexity 5770 5772 +2
============================================
Files 377 377
Lines 31553 31564 +11
Branches 4422 4423 +1
============================================
+ Hits 19666 19670 +4
- Misses 9887 9894 +7
Partials 2000 2000
Continue to review full report at Codecov.
|
@@ -117,6 +126,15 @@ protected void save() { | |||
} | |||
} | |||
|
|||
private static boolean needSaveWithEx(String message) { |
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.
move to line 167
…#1334) Change-Id: Ic2a246facffca683052bb56bf76ad21b5413d94a
Change-Id: Iade74c66259214a6895ae369374c7243761cb0e0