-
Notifications
You must be signed in to change notification settings - Fork 3
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
Switch out /service/etcd service endpoint for /service/storage/status to support multiple backends #43
Conversation
BSS used to support only the EtcD backend, so having an /etcd endpoint made sense. However, with the recent support of a PostgreSQL backend, it makes more sense to make this more generic. This endpoint is now changed to /data, and the response JSON now includes which backend is being used (i.e. "etcd" or "postgres") as well as the status of the connection to the printed backend.
That makes sense to make the endpoint to something that's agnostic to the storage backend. Having it to something like Just curious, does the endpoint just return general data in storage or is it returning something specific? |
It essentially just returns just the connection status to whichever backend BSS is using. The current implementation doesn't return any other details besides this. |
I'm wondering if it should be changed to something to reflect that or if we want to leave it as |
I like the idea of being able to add to it later, though I'll admit I'm not sure what else would be useful to add at this point. You bring up a good point, |
Yeah, I think |
|
Yeah, I think that would be reasonable. I definitely prefer a more consistent and predictable API when possible. |
That makes sense. I'll change it to that, then. |
This ensures that the struct is not included in the JSON if it is "empty" (i.e. the pointer is nil).
OK, instead of There is also an endpoint documented in Swagger as |
I updated the initial description to add the re-introduction of the
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a couple of small string-related things to look at.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Introduces one of multiple fixes for #20.
BSS used to support only the EtcD backend, so having a
/service/etcd
endpoint made sense. However, with the recent support of a PostgreSQL backend, it makes more sense to make this more generic.This endpoint is now changed to
/data
/service/storage/status
, and the response JSON now includes which backend is being used (i.e. "etcd" or "postgres") as well as the status of the connection to the printed backend.So instead of:
One now queries
/boot/v1/service/data
. Here is what a successful query looks like:In the logs (with debug enabled):
And here is what an unsuccessful query looks like, e.g. if Postgres goes down:
In the log:
This PR also adds back in the
/service/all
endpoint to get all statuses at once: