-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[greyhound] parallel consumer implementation (#34061)
GitOrigin-RevId: 5c9cc1ea4fcc5935c6f905a5269ac17f6b82c294
- Loading branch information
1 parent
3929d77
commit 862e338
Showing
16 changed files
with
1,497 additions
and
467 deletions.
There are no files selected for viewing
854 changes: 475 additions & 379 deletions
854
core/src/it/scala/com/wixpress/dst/greyhound/core/ConsumerIT.scala
Large diffs are not rendered by default.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
core/src/it/scala/com/wixpress/dst/greyhound/core/parallel/BUILD.bazel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package(default_visibility = ["//visibility:public"]) | ||
|
||
sources() | ||
|
||
specs2_ite2e_test( | ||
name = "parallel", | ||
srcs = [ | ||
":sources", | ||
], | ||
deps = [ | ||
"//core/src/it/resources", | ||
"//core/src/it/scala/com/wixpress/dst/greyhound/testenv", | ||
"//core/src/it/scala/com/wixpress/dst/greyhound/testkit", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core/consumer", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core/consumer/domain", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core/consumer/retry", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core/metrics", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core/producer", | ||
"//core/src/main/scala/com/wixpress/dst/greyhound/core/zioutils", | ||
"//core/src/test/scala/com/wixpress/dst/greyhound/core/testkit", | ||
"@dev_zio_izumi_reflect_2_12", | ||
"@dev_zio_zio_2_12", | ||
"@dev_zio_zio_managed_2_12", | ||
"@org_apache_kafka_kafka_clients", | ||
], | ||
) |
325 changes: 325 additions & 0 deletions
325
core/src/it/scala/com/wixpress/dst/greyhound/core/parallel/ParallelConsumerIT.scala
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.