본문 바로가기

Elasticsearch

[Elasticsearch] elasticdump ended with error BAD_REQUEST : no settings to update

반응형

 

 

elasticdump 중 나온 에러 

an Error In the middle of elasticdump

 

my command was : 

elasticdump --input ~ --output ~ type=analyzer 

 

error: ended with error BAD_REQUEST : no settings to update

 

말그대로 Settings가 없다고....,.,

이상하게 이 바로 이전에는 type=analyzer 로 되었었는데 이번엔 안된다. 

이 에러가 나와도 index가 이미 생성이 되어 있어서 index 삭제 후 진행해야 한다. 

 

It means literally there is no settings. I have no idea why this time ( type=analyzer) gave an error cuz I've just finished an index migration with analyzer.

Eventhough the error is given, but the index is already created so you should delete the index first and then move to the solutions

 

 

 

 Solutions

 

command에 --type=settings 로 먼저 해주고 

--type=mapping

--type=data 로 수정하여 이어서 해준다. 

 

You can put "settings" as type and then keep doing elasticdump 

--type=settings          // after that change settings  to mapping and then to data
--type=mapping 
--type=data

 

 

반응형