-
Notifications
You must be signed in to change notification settings - Fork 835
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* initial pipeline db commit * add loadbalancer for pipelines and rebalance * allow modelgateway to do retries * Makefile fixes for host * ensure pipeline updates sent * test on k8s * lint * check for db * review comments * review comments * review fixes
- Loading branch information
1 parent
ede182a
commit 87c0a32
Showing
32 changed files
with
11,312 additions
and
379 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
syntax = "proto3"; | ||
|
||
package seldon.mlops.scheduler; | ||
|
||
option go_package = "github.com/seldonio/seldon-core/scheduler/apis/mlops/scheduler"; | ||
|
||
import "mlops/scheduler/scheduler.proto"; | ||
|
||
message PipelineSnapshot { | ||
string name = 1; | ||
uint32 lastVersion = 2; | ||
repeated PipelineWithState versions = 3; | ||
bool deleted = 4; | ||
} |
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.