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

added encoded API key placeholder for updated api_key elasticsearch authentication. #17

Closed
wants to merge 2 commits into from

Conversation

SamoraHunter
Copy link
Contributor

No description provided.

@mart-r mart-r requested a review from antsh3k February 14, 2025 10:45
@preciserobot
Copy link

preciserobot commented Feb 14, 2025

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 key ID and the key secret (plain and base64 encoded), so we should be able to use the existing implementation with some added documentation.

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.

@SamoraHunter
Copy link
Contributor Author

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 key ID and the key secret (plain and base64 encoded), so we should be able to use the existing implementation with some added documentation.

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:
https://github.com/CogStack/cogstack-jupyter-hub/blob/master/requirements.txt

@preciserobot
Copy link

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 key ID and the key secret (plain and base64 encoded), so we should be able to use the existing implementation with some added documentation.
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: https://github.com/CogStack/cogstack-jupyter-hub/blob/master/requirements.txt

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:
client/__init__py:143,430
_base.py:128
utils.py:254

Copy link
Collaborator

@mart-r mart-r left a 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 to None
    • Along with documentation to the doc string
  • If api_key is non-None, and api is True, use the new Elasticsearch init
  • If api_key is None and api is True, use the previous authentication system

self.elastic = elasticsearch.Elasticsearch(hosts=hosts,
api_key=(api_username, api_password),
api_key=api_key,
Copy link
Collaborator

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.

@mart-r
Copy link
Collaborator

mart-r commented Mar 11, 2025

In favour of #19

@mart-r mart-r closed this Mar 11, 2025
@SamoraHunter
Copy link
Contributor Author

Thanks all and thanks for the help.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants