I've upgraded from 7.3.2 to 7.4.0 and in attempting to follow the rolling upgrades document -- I've issued a:
[root@host elasticsearch]# curl -X PUT -u elastic "ipaddy:9200/_cluster/settings?pretty" -H 'Content-Type: application/json' -d'
> {
> "persistent": {
> "cluster.routing.allocation.enable": null
> }
> }
> '
I've then received the following output upon issuing the password:
{
"error" : {
"root_cause" : [
{
"type" : "json_parse_exception",
"reason" : "Invalid UTF-8 start byte 0x80\n at [Source: org.elasticsearch.transport.netty4.ByteBufStreamInput@3a3d0a5c; line: 4, column: 44]"
}
],
"type" : "json_parse_exception",
"reason" : "Invalid UTF-8 start byte 0x80\n at [Source: org.elasticsearch.transport.netty4.ByteBufStreamInput@3a3d0a5c; line: 4, column: 44]"
},
"status" : 500
}
Help?