Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 4aac4ef

Browse files
author
Nick Müller
committed
Implemented CacheService
Added endpoint for evicting execution cache Added endpoint for evicting task execution cache Signed-off-by: Nick Müller <nmueller@blackshark.ai>
1 parent 5ac7181 commit 4aac4ef

12 files changed

Lines changed: 9569 additions & 147 deletions

File tree

go.mod

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ module github.com/flyteorg/flyteadmin
22

33
go 1.18
44

5+
replace (
6+
github.com/flyteorg/flyteidl => github.com/blackshark-ai/flyteidl v0.24.22-0.20221215141908-3e44057796c6
7+
github.com/flyteorg/flyteplugins => github.com/blackshark-ai/flyteplugins v1.0.2-0.20221215151032-3ce2c1315081
8+
github.com/flyteorg/flytepropeller => github.com/blackshark-ai/flytepropeller v0.16.48-0.20221215161838-a505ae7f1062
9+
github.com/flyteorg/flytestdlib => github.com/blackshark-ai/flytestdlib v1.0.1-0.20221215152838-ded77ffa67cf
10+
)
11+
512
require (
613
cloud.google.com/go/iam v0.3.0
714
cloud.google.com/go/storage v1.22.0
@@ -198,9 +205,9 @@ require (
198205
github.com/imdario/mergo v0.3.13 // indirect
199206
github.com/pquerna/cachecontrol v0.0.0-20171018203845-0dec1b30a021 // indirect
200207
github.com/prometheus/common v0.32.1 // indirect
201-
go.uber.org/atomic v1.7.0 // indirect
202-
go.uber.org/multierr v1.6.0 // indirect
203-
go.uber.org/zap v1.19.1 // indirect
208+
go.uber.org/atomic v1.9.0 // indirect
209+
go.uber.org/multierr v1.8.0 // indirect
210+
go.uber.org/zap v1.21.0 // indirect
204211
k8s.io/klog/v2 v2.60.1 // indirect
205212
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
206213
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect

go.sum

Lines changed: 317 additions & 139 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)