Cannot delete test data at – How to solve this Elasticsearch exception

Opster Team

August-23, Version: 6.8-8.9

Briefly, this error occurs when Elasticsearch is unable to delete specific data, possibly due to insufficient permissions, incorrect index name, or the data is currently in use. To resolve this, ensure you have the correct permissions to delete data. Check if the index name is correct and the data is not being used by any ongoing processes. If the data is locked, try unlocking or closing the index before deletion. Also, ensure the Elasticsearch cluster is in a healthy state.

This guide will help you check for common problems that cause the log ” cannot delete test data at ” to appear. To understand the issues related to this log, read the explanation below about the following Elasticsearch concepts: blobstore, delete, repositories.

Log Context

Log “cannot delete test data at” class name is BlobStoreRepository.java. We extracted the following from Elasticsearch source code for those seeking an in-depth context :

 if (isReadOnly() == false) {
 try {
 final String testPrefix = testBlobPrefix(seed);
 blobStore().blobContainer(basePath().add(testPrefix)).delete();
 } catch (Exception exp) {
 throw new RepositoryVerificationException(metadata.name(); "cannot delete test data at " + basePath(); exp);
 }
 }
 }  // Tracks the latest known repository generation in a best-effort way to detect inconsistent listing of root level index-N blobs

 

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?