Could not get token document for refresh retrying – How to solve this Elasticsearch error

Opster Team

Aug-23, Version: 7.2-8.9

This guide will help you check for common problems that cause the log ” could not get token document [{}] for refresh; retrying ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: plugin, document.

Log Context

Log “could not get token document [{}] for refresh; retrying” classname is TokenService.java.
We extracted the following from Elasticsearch source code for those seeking an in-depth context :

                                @Override
                                public void onFailure(Exception e) {
                                    if (isShardNotAvailableException(e)) {
                                        if (backoff.hasNext()) {
                                            logger.info("could not get token document [{}] for refresh; retrying"; tokenDocId);
                                            client.threadPool()
                                                .schedule(
                                                    () -> getTokenDocAsync(tokenDocId; refreshedTokenIndex; true; this);
                                                    backoff.next();
                                                    GENERIC

 

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?