-
Notifications
You must be signed in to change notification settings - Fork 8
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
added encoded API key placeholder for updated api_key elasticsearch authentication. #17
Conversation
…ethod for Elasticsearch.
The documentation on the elasticsearch python library is quite non-specific but it appears the api_key username:password tuple is the (api_key.id, api_key.api_key), as described here. We generally issue CORRECTION: We do not currently issue the key ID but the key name. I can change this internally to make it compatible with the current version of this repo. |
That link is for version 7.17, I think the version we're running is https://www.elastic.co/guide/en/elasticsearch/client/python-api/8.17/connecting.html api_key="api_key", The jupyterhub docker image also users 8.17: |
The docs for 8.17 still show the string|tuple|None signature. Looks like this is retained here. Indeed the implementation for elasticsearch-py 8.17 confirms this here: |
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.
As mentioned in the comment, we still need to support the old API-based authentication, e.g:
CogStack(hosts, username=api_username, password=api_password, api=True)
That's (as far as I'm aware) used on the GSTT side.
And the other issue was the API key being a *
import rather than an argument to the constructor.
What I would suggest is as follows:
- Add an optional
api_key
argument to__init__
, defaulting toNone
- Along with documentation to the doc string
- If
api_key
is non-None
, andapi
isTrue
, use the newElasticsearch
init - If
api_key
isNone
andapi
is True, use the previous authentication system
self.elastic = elasticsearch.Elasticsearch(hosts=hosts, | ||
api_key=(api_username, api_password), | ||
api_key=api_key, |
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.
So the problem with this change is the fact that this still needs to work with old system as well.
Perhaps it's an underlying Elastic version that's used there. But the last time I used this at GSTT (around 6 months ago) they relied on the old authentication method - which this PR removed.
To be explicit about it, something like this would still need to work:
CogStack(hosts, username=api_username, password=api_password, api=True)
The other issue is that now, api_key
is received from an *
import from credentials
rather than as an argument to the constructor. While this can work, it's a significant change in operations.
In favour of #19 |
Thanks all and thanks for the help. |
No description provided.