Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update health status #3023

Merged
merged 4 commits into from
Mar 15, 2021
Merged

Update health status #3023

merged 4 commits into from
Mar 15, 2021

Conversation

ukclivecox
Copy link
Contributor

What this PR does / why we need it:

  • rationalize /health/status endpoints.
  • Allow v1 api endpoints in python wrapper
  • Allow default health status if none defined by user
  • Allow /health/status to be called with no model name in executor and default to checkReady

Which issue(s) this PR fixes:

Fixes #3022

Special notes for your reviewer:

Does this PR introduce a user-facing change?:

@ukclivecox ukclivecox requested a review from axsaucedo March 6, 2021 15:38
@axsaucedo
Copy link
Contributor

Looks good
/approve
/test integration

@seldondev
Copy link
Collaborator

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: axsaucedo

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@ukclivecox
Copy link
Contributor Author

/test integration

@ktleung2017
Copy link
Contributor

Should we also allow /ping health check endpoint in v1 api?

@ukclivecox
Copy link
Contributor Author

Should we also allow /ping health check endpoint in v1 api?

Maybe can you create a new issue for this? @ktleung2017

@ktleung2017
Copy link
Contributor

Should we also allow /ping health check endpoint in v1 api?

Maybe can you create a new issue for this? @ktleung2017

#3046 created.

@@ -158,6 +158,7 @@ func (r *SeldonRestApi) Initialise() {
api10.Handle("/predictions", r.wrapMetrics(metric.PredictionHttpServiceName, r.predictions))
api10.Handle("/feedback", r.wrapMetrics(metric.FeedbackHttpServiceName, r.feedback))
r.Router.NewRoute().Path("/api/v1.0/status/{"+ModelHttpPathVariable+"}").Methods("GET", "OPTIONS").HandlerFunc(r.wrapMetrics(metric.StatusHttpServiceName, r.status))
r.Router.NewRoute().Path("/api/v1.0/status").Methods("GET", "OPTIONS").HandlerFunc(r.wrapMetrics(metric.StatusHttpServiceName, r.checkReady))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be /api/v1.0/health/status?

@seldondev
Copy link
Collaborator

@cliveseldon: The following test failed, say /retest to rerun them all:

Test name Commit Details Rerun command
integration d6a1d2a link /test integration

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the jenkins-x/lighthouse repository. I understand the commands that are listed here.

@seldondev seldondev merged commit c663fc5 into SeldonIO:master Mar 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Handle default api status in Seldon protocol in executor and python wrapper
4 participants