-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update Shopify/sarama to IBM/sarama, remove cache committer due…
… to unmaintained dependency
- Loading branch information
Showing
34 changed files
with
422 additions
and
601 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
version: "3" | ||
|
||
services: | ||
zookeeper: | ||
image: zookeeper:3.5 | ||
environment: | ||
ZOO_STANDALONE_ENABLED: "TRUE" | ||
ports: | ||
- '2181:2181' | ||
restart: on-failure | ||
zookeeper: | ||
image: zookeeper:3.5 | ||
environment: | ||
ZOO_STANDALONE_ENABLED: "TRUE" | ||
ports: | ||
- '2181:2181' | ||
restart: on-failure | ||
|
||
kafka: | ||
image: wurstmeister/kafka:2.12-2.1.0 | ||
environment: | ||
KAFKA_ADVERTISED_HOST_NAME: 'localhost' | ||
KAFKA_ADVERTISED_PORT: 9092 | ||
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | ||
KAFKA_CREATE_TOPICS: "example1:1:1" | ||
ports: | ||
- '9092:9092' | ||
depends_on: | ||
- zookeeper | ||
restart: on-failure | ||
kafka: | ||
image: wurstmeister/kafka:2.12-2.1.0 | ||
environment: | ||
KAFKA_ADVERTISED_HOST_NAME: 'localhost' | ||
KAFKA_ADVERTISED_PORT: 9092 | ||
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 | ||
KAFKA_CREATE_TOPICS: "example1:1:1" | ||
ports: | ||
- '9092:9092' | ||
depends_on: | ||
- zookeeper | ||
restart: on-failure |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
module github.com/msales/streams/v6 | ||
|
||
go 1.17 | ||
go 1.22 | ||
|
||
require ( | ||
github.com/DATA-DOG/go-sqlmock v1.4.1 | ||
github.com/Shopify/sarama v1.30.0 | ||
github.com/msales/pkg/v4 v4.4.0 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/DATA-DOG/go-sqlmock v1.5.2 | ||
github.com/IBM/sarama v1.43.2 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/xdg/scram v1.0.5 | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 | ||
) | ||
|
||
require ( | ||
github.com/bradfitz/gomemcache v0.0.0-20180710155616-bc664df96737 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/eapache/go-resiliency v1.2.0 // indirect | ||
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect | ||
github.com/eapache/go-resiliency v1.6.0 // indirect | ||
github.com/eapache/go-xerial-snappy v0.0.0-20230731223053-c322873962e3 // indirect | ||
github.com/eapache/queue v1.1.0 // indirect | ||
github.com/go-redis/redis v6.15.7+incompatible // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/hashicorp/go-uuid v1.0.2 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-uuid v1.0.3 // indirect | ||
github.com/jcmturner/aescts/v2 v2.0.0 // indirect | ||
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect | ||
github.com/jcmturner/gofork v1.0.0 // indirect | ||
github.com/jcmturner/gokrb5/v8 v8.4.2 // indirect | ||
github.com/jcmturner/gofork v1.7.6 // indirect | ||
github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect | ||
github.com/jcmturner/rpc/v2 v2.0.3 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/pierrec/lz4 v2.6.1+incompatible // indirect | ||
github.com/klauspost/compress v1.17.8 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/pierrec/lz4/v4 v4.1.21 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
github.com/rogpeppe/go-internal v1.11.0 // indirect | ||
github.com/stretchr/objx v0.5.2 // indirect | ||
github.com/xdg/stringprep v1.0.3 // indirect | ||
golang.org/x/crypto v0.0.0-20210920023735-84f357641f63 // indirect | ||
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.