Failed to retrieve remote JWK set Request was cancelled – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 7.2-8.9

Briefly, this error occurs when Elasticsearch tries to retrieve a JSON Web Key (JWK) set from a remote server but the request is cancelled. This could be due to network issues, server unavailability, or incorrect configuration. To resolve this, you can check your network connection, ensure the remote server is up and running, and verify your JWK set configuration. If the issue persists, consider using a local JWK set instead of a remote one.

This guide will help you check for common problems that cause the log ” Failed to retrieve remote JWK set. Request was cancelled. ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin.

Log Context

Log “Failed to retrieve remote JWK set. Request was cancelled.” class name is OpenIdConnectAuthenticator.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 }  @Override
 public void cancelled() {
 future.onFailure(
 new ElasticsearchSecurityException("Failed to retrieve remote JWK set. Request was cancelled.")
 );
 reloadFutureRef.set(null);
 }
 });
 return null;

 

How helpful was this guide?

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?