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

SASL OAuth TokenProvider does not refresh #2205

Open
2phost opened this issue Feb 11, 2021 · 1 comment
Open

SASL OAuth TokenProvider does not refresh #2205

2phost opened this issue Feb 11, 2021 · 1 comment

Comments

@2phost
Copy link

2phost commented Feb 11, 2021

Hi,
In my environment, I have a Kafka cluster configured with Keycloak using OAUTH (SASL_PLAINTEXT). As such, I developed a TokenProvider that authenticates the user and refreshes the token when it is about to expired.

The problem is: you only get the token in the very beginning, meaning that after some time my tokenprovider have a new token (updated using a thread), but you never ask for it. So I get the following error:

kafka.errors.TopicAuthorizationFailedError: [Error 29] TopicAuthorizationFailedError:

I can see two possible solutions:

  1. Extract the expires_in from the jwt token and have a parameter to allows update the token X seconds before it expires.
  2. A simple parameter that allow us to set intervals to get new token, for example every 5 minutes.

In my opinion, I would go with the second and leave the first one to be implemented by the TokenProvider (update the token returned by TokenProvider before it expires, which I am already doing it). Moreover the second is easier to implement.

Best regards,

@dpkp
Copy link
Owner

dpkp commented Mar 27, 2025

There is no mechanism to update SASL authentication after initial connection. So I think what would have to happen here is the connection would have to be closed and reconnected so that a new token could be sent. Do you know if/how the java client manages this?

@dpkp dpkp changed the title TokenProvider do not refresh SASL OAuth TokenProvider does not refresh Mar 27, 2025
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

No branches or pull requests

2 participants