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

[Fleet] Replace findByApiKeyID with a get call when possible #3611

Merged
merged 5 commits into from
Jun 10, 2024

Conversation

nchaulet
Copy link
Member

@nchaulet nchaulet commented Jun 6, 2024

Description

Related to https://github.com/elastic/ingest-dev/issues/3274

Replace findByApiKeyID with a get document call when possible,

@michel-laterman before I wrote more tests for that I am curious to get your though on that and if you see any potential issues

@ycombinator ycombinator added the Team:Elastic-Agent-Control-Plane Label for the Agent Control Plane team label Jun 6, 2024
@nchaulet nchaulet force-pushed the feature-replace-find-with-read branch from e66d76f to 4af28de Compare June 6, 2024 21:26
@nchaulet
Copy link
Member Author

nchaulet commented Jun 6, 2024

buildkite run perf-tests

@nchaulet nchaulet marked this pull request as ready for review June 7, 2024 00:34
@nchaulet nchaulet requested a review from a team as a code owner June 7, 2024 00:34
Comment on lines 119 to 124
var agent *model.Agent
if id != nil {
agent, err = getAgentAndVerifyAPIKeyID(ctx, bulker, *id, key.ID)
} else {
agent, err = findAgentByAPIKeyID(ctx, bulker, key.ID)
}
Copy link
Contributor

Choose a reason for hiding this comment

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

The basic approach should work, we have a 1-1 map of agents and keys because we update the keys instead of revoking+reissuing when there are changes.
We actually do the API key check below (line 151) so this method may need to be refactored to avoid redundant checks

Copy link
Member Author

Choose a reason for hiding this comment

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

We actually do the API key check below (line 151) so this method may need to be refactored to avoid redundant checks

I think we probably still want to verify api key id in a different way depending of the entry point it do not have the same meaning in one case the doc is probably corrupted in the other it's probably someone impersonating an agent.

@@ -116,7 +116,12 @@ func authAgent(r *http.Request, id *string, bulker bulk.Bulk, c cache.Cache) (*m
Msg("authApiKey slow")
}

agent, err := findAgentByAPIKeyID(ctx, bulker, key.ID)
var agent *model.Agent
if id != nil {
Copy link
Member

Choose a reason for hiding this comment

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

This block needs some comments explaining why we why do this.

@nchaulet nchaulet merged commit 01eb9cc into main Jun 10, 2024
8 checks passed
@nchaulet nchaulet deleted the feature-replace-find-with-read branch June 10, 2024 13:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Team:Elastic-Agent-Control-Plane Label for the Agent Control Plane team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants