-
Notifications
You must be signed in to change notification settings - Fork 645
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
Pravega fix checkpointing (and timeout) #2246
Conversation
This should be tested more intensively.
log.debug(s"Checkpoint: ${eventRead.getCheckpointName}") | ||
else push(out, new PravegaEvent(eventRead.getEvent, eventRead.getPosition, eventRead.getEventPointer)) | ||
if (eventRead.isCheckpoint) { | ||
log.debug(s"Checkpoint: ${eventRead.getCheckpointName}") |
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.
log.debug(s"Checkpoint: ${eventRead.getCheckpointName}") | |
log.debug("Checkpoint: {}", eventRead.getCheckpointName) |
@@ -60,7 +62,7 @@ class PravegaGraphSpec extends PravegaBaseSpec { | |||
|
|||
// #reading | |||
|
|||
Await.ready(finishReading.future, 10.seconds) | |||
Await.ready(finishReading.future, 20.seconds) |
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 keep it shorter with fewer events, please.
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.
LGTM.
Thank you for continuing on this great addition to Alpakka! |
Checkpoint event were not handle correctly neither timeout.