Elasticsearch: NPE when deleting multiple backing indices on a data stream

Created on 11 Sep 2020  路  3Comments  路  Source: elastic/elasticsearch

As reported by @Snp3r here: https://github.com/elastic/elasticsearch/pull/55690#issuecomment-691087407:

I've got 500 error, nullpointer exception when I trying to delete multiple backing indices:

curl -X DELETE "localhost:9200/.ds-my-data-stream-000001,.ds-my-data-stream-000002?pretty"
{ "error" : { "root_cause" : [ { "type" : "null_pointer_exception", "reason" : null } ], "type" : "null_pointer_exception", "reason" : null }, "status" : 500 }

Deleting one by one is ok:

curl -X DELETE "localhost:9200/.ds-my-data-stream-000001?pretty"
{ "acknowledged" : true }
curl -X DELETE "localhost:9200/.ds-my-data-stream-000002?pretty"
{ "acknowledged" : true }

:CorFeatureData streams >bug CorFeatures

Most helpful comment

When can one expect the next release with this fix? In a month's time or maybe sooner?

We hope to release in ~3 weeks though we cannot commit to any specific timeframe for future releases.

All 3 comments

Pinging @elastic/es-core-features (:Core/Features/Data streams)

When can one expect the next release with this fix? In a month's time or maybe sooner?

When can one expect the next release with this fix? In a month's time or maybe sooner?

We hope to release in ~3 weeks though we cannot commit to any specific timeframe for future releases.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

rbayliss picture rbayliss  路  3Comments

clintongormley picture clintongormley  路  3Comments

dadoonet picture dadoonet  路  3Comments

matthughes picture matthughes  路  3Comments

rjernst picture rjernst  路  3Comments