Skip to content

Commit

Permalink
increase failureThreshold in mlflow server sample
Browse files Browse the repository at this point in the history
  • Loading branch information
RafalSkolasinski authored and seldondev committed May 30, 2020
1 parent 4984bb0 commit baa3f14
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion servers/mlflowserver/samples/elasticnet_wine.yaml
Expand Up @@ -5,7 +5,31 @@ metadata:
spec:
name: wines
predictors:
- graph:
- componentSpecs:
- spec:
# We are setting high failureThreshold as installing conda dependencies
# can take long time and we want to avoid k8s killing the container prematurely
containers:
- name: classifier
livenessProbe:
initialDelaySeconds: 60
failureThreshold: 100
periodSeconds: 5
successThreshold: 1
httpGet:
path: /health/ping
port: http
scheme: HTTP
readinessProbe:
initialDelaySeconds: 60
failureThreshold: 100
periodSeconds: 5
successThreshold: 1
httpGet:
path: /health/ping
port: http
scheme: HTTP
graph:
children: []
implementation: MLFLOW_SERVER
modelUri: gs://seldon-models/mlflow/elasticnet_wine
Expand Down

0 comments on commit baa3f14

Please sign in to comment.