-
Notifications
You must be signed in to change notification settings - Fork 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
feat(restore-indices): add endpoint for restore indices, add basic check for graph #5805
feat(restore-indices): add endpoint for restore indices, add basic check for graph #5805
Conversation
Unit Test Results (metadata ingestion) 8 files ±0 8 suites ±0 55m 18s ⏱️ -43s For more details on these errors, see this check. Results for commit 418810d. ± Comparison against base commit c91e29b. ♻️ This comment has been updated with latest results. |
rowsMigrated++; | ||
} | ||
|
||
try { |
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.
Remove sleep, this is unneeded. It was in historically to "guarantee a write went through", but it doesn't really make sense to do so.
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.
will do
public long sendMessageMs = 0; | ||
|
||
@Override | ||
public String toString() { |
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.
This can also just be done with lombok
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.
will do
} | ||
} | ||
|
||
public RestoreIndicesArgs setAspectName(String aspectName) { |
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 just use @Data
from lombok
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.
That will cause return type to be void. I wanted a builder pattern for ease of use.
New command line in case there is a diff between mysql and elastic
New command line in case there is no diff between mysql and elastic
Checklist