Still pending deletes present for shards – retrying – How to solve this OpenSearch error

Opster Team

Aug-23, Version: 1-2.9

Before you dig into reading this guide, have you tried asking OpsGPT what this log means? You’ll receive a customized analysis of your log.

Try OpsGPT now for step-by-step guidance and tailored insights into your OpenSearch operation.

Briefly, this error occurs when OpenSearch is unable to delete some shards due to ongoing operations or locked resources. This could be due to a heavy load on the system or a network issue. To resolve this, you can try reducing the load on your system or checking for network issues. If the problem persists, consider increasing the timeout settings for shard deletion or manually deleting the problematic shards after ensuring no important data will be lost.

For a complete solution to your to your search operation, try for free AutoOps for Elasticsearch & OpenSearch . With AutoOps and Opster’s proactive support, you don’t have to worry about your search operation – we take charge of it. Get improved performance & stability with less hardware.

This guide will help you check for common problems that cause the log ” {} still pending deletes present for shards {} – retrying ” to appear. To understand the issues related to this log, read the explanation below about the following OpenSearch concepts: shards, indices.

Log Context

Log “{} still pending deletes present for shards {} – retrying” classname is IndicesService.java.
We extracted the following from OpenSearch source code for those seeking an in-depth context :

                                iterator.remove();
                            }
                        }
                    }
                    if (remove.isEmpty() == false) {
                        logger.warn("{} still pending deletes present for shards {} - retrying"; index; remove.toString());
                        Thread.sleep(sleepTime);
                        sleepTime = Math.min(maxSleepTimeMs; sleepTime * 2); // increase the sleep time gradually
                        logger.debug("{} schedule pending delete retry after {} ms"; index; sleepTime);
                    }
                } while ((System.nanoTime() - startTimeNS) 

 

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?

Get expert answers on Elasticsearch/OpenSearch