-
Notifications
You must be signed in to change notification settings - Fork 11
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: Use bidirectional streaming for Source Transformer #147
Conversation
Signed-off-by: Sreekanth <[email protected]>
f205113
to
99bdd08
Compare
Signed-off-by: Sreekanth <[email protected]>
Signed-off-by: Sreekanth <[email protected]>
} | ||
responseList := &v1.SourceTransformResponse{ | ||
Results: results, | ||
|
||
if err := grp.Wait(); err != nil { | ||
statusErr := status.Errorf(codes.Internal, err.Error()) | ||
return statusErr | ||
} | ||
return responseList, nil | ||
return nil |
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.
if there is an error we will not let the client know until the stream is closed?
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.
rebase has problems
bd8cc00
to
301b46b
Compare
Signed-off-by: Sreekanth <[email protected]>
Signed-off-by: Sreekanth <[email protected]>
Signed-off-by: Sreekanth <[email protected]>
…aproj/numaflow-go into source-transformer-streaming
Fixed by using merge commit instead of rebasing. |
Signed-off-by: Sreekanth <[email protected]>
Signed-off-by: Sreekanth <[email protected]>
Part of numaproj/numaflow#2046
Related PRs:
numaproj/numaflow#2071
numaproj/numaflow-rs#91