-
Notifications
You must be signed in to change notification settings - Fork 120
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: Bidirectional Streaming for User Defined Source #2056
Conversation
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2056 +/- ##
==========================================
+ Coverage 63.87% 64.53% +0.65%
==========================================
Files 321 322 +1
Lines 29572 30145 +573
==========================================
+ Hits 18890 19454 +564
- Misses 9659 9671 +12
+ Partials 1023 1020 -3 ☔ View full report in Codecov by Sentry. |
a1f44bf
to
c4cc509
Compare
Signed-off-by: Yashash H L <[email protected]>
033f845
to
899453b
Compare
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
I have updated the udsource e2e tests to use docker images from my personal directory, so that the tests don't fail. Once the main repo images are updated to use streaming source I will revert those changes. |
Signed-off-by: Vigith Maurice <[email protected]>
if err != nil { | ||
return err | ||
} |
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.
nit: can directly return err.
# set it as two pods to be different from the sink such that we can use this pipeline | ||
# to test processing rate is consistent across vertices when they have different replica counts. |
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.
# set it as two pods to be different from the sink such that we can use this pipeline | |
# to test processing rate is consistent across vertices when they have different replica counts. |
|
||
[dev-dependencies] | ||
tempfile = "3.11.0" | ||
numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "main" } | ||
numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "handshake" } |
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.
numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "handshake" } | |
numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "main" } |
eventually we should point to a stable release in crates.io
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Yashash H L <[email protected]>
test/e2e/functional_test.go
Outdated
@@ -41,7 +41,7 @@ func (s *FunctionalSuite) TestCreateSimplePipeline() { | |||
w := s.Given().Pipeline("@testdata/simple-pipeline.yaml"). | |||
When(). | |||
CreatePipelineAndWait() | |||
defer w.DeletePipelineAndWait() | |||
//defer w.DeletePipelineAndWait() |
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.
Uncomment it?
Signed-off-by: Yashash H L <[email protected]>
Signed-off-by: Vigith Maurice <[email protected]>
Signed-off-by: Yashash H L <[email protected]> Signed-off-by: Vigith Maurice <[email protected]> Co-authored-by: Vigith Maurice <[email protected]>
No description provided.