File tree Expand file tree Collapse file tree 9 files changed +2255
-32
lines changed
src/go/cmd/strelka-frontend Expand file tree Collapse file tree 9 files changed +2255
-32
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ git log -p <file>
88# Target Team
99- Paul Hutelmyer - Lead
1010- Ryan O'Horo
11+ - Sara Kalupa
1112
1213# External Collaborators
1314- Josh Liburdi ([ @jshlbrd ] ( https://twitter.com/jshlbrd ) )
Original file line number Diff line number Diff line change 11# Strelka Fileshot
22# Client is designed to one-shot upload files and retrieve their results
33# For more information, please see: https://target.github.io/strelka/#/?id=strelka-fileshot
4- FROM golang:1.19 AS build
4+ FROM golang:1.21.5 AS build
55LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66
77# Copy source files and set the working directory
Original file line number Diff line number Diff line change 11# Strelka Filestream
22# Client is designed to continuously stream files and retrieves their results.
33# For more information, please see: https://target.github.io/strelka/#/?id=strelka-filestream
4- FROM golang:1.17.6 AS build
4+ FROM golang:1.21.5 AS build
55LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66
77# Copy source files and set the working directory
Original file line number Diff line number Diff line change 11# Strelka Frontend
22# The frontend for a cluster in which clients can connect directly via Envoy.
33# For more information, please see: https://target.github.io/strelka/#/?id=strelka-frontend
4- FROM golang:1.17.6 -alpine AS build
4+ FROM golang:1.21.5 -alpine AS build
55LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66
77RUN apk add openssl-dev bash build-base pkgconfig librdkafka librdkafka-dev
Original file line number Diff line number Diff line change 11# Strelka Manager
22# Manages portions of Strelka's Redis database.
33# For more information, please see: https://target.github.io/strelka/#/?id=strelka-manager
4- FROM golang:1.17.6 AS build
4+ FROM golang:1.21.5 AS build
55LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66
77# Copy source files and set the working directory
Original file line number Diff line number Diff line change 11# Strelka Oneshot
22# Client is designed to be used to submit a single file from command line and receive the result for it immediately.
33# For more information, please see: https://target.github.io/strelka/#/?id=strelka-oneshot
4- FROM golang:1.17.6 AS build
4+ FROM golang:1.21.5 AS build
55LABEL maintainer="Target Brands, Inc. TTS-CFC-OpenSource@target.com"
66
77# Copy source files and set the working directory
Original file line number Diff line number Diff line change 11module github.com/target/strelka
22
3- go 1.19
3+ go 1.21
44
55require (
6+ github.com/confluentinc/confluent-kafka-go/v2 v2.2.0
67 github.com/gabriel-vasile/mimetype v1.4.1
78 github.com/go-redis/redis/v8 v8.11.5
89 github.com/golang/protobuf v1.5.3
@@ -11,11 +12,8 @@ require (
1112 gopkg.in/yaml.v2 v2.4.0
1213)
1314
14- require gopkg.in/confluentinc/confluent-kafka-go.v1 v1.8.2 // indirect
15-
1615require (
1716 github.com/cespare/xxhash/v2 v2.2.0 // indirect
18- github.com/confluentinc/confluent-kafka-go v1.9.2
1917 github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
2018 golang.org/x/net v0.17.0 // indirect
2119 golang.org/x/sys v0.13.0 // indirect
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
2323 "github.com/target/strelka/src/go/pkg/rpc"
2424 "github.com/target/strelka/src/go/pkg/structs"
2525
26- "github.com/confluentinc/confluent-kafka-go/kafka"
26+ "github.com/confluentinc/confluent-kafka-go/v2/ kafka"
2727)
2828
2929type coord struct {
You can’t perform that action at this time.
0 commit comments