Hello all, i actually had a problem with a "data table" visualization creation.
When i want to save my Visualization i got this error : Visualization Editor: 403 Response
I don't understand why and how i can fix it
Can you help me ?
Br
Nicolas
Hello all, i actually had a problem with a "data table" visualization creation.
When i want to save my Visualization i got this error : Visualization Editor: 403 Response
I don't understand why and how i can fix it
Can you help me ?
Br
Nicolas
Can you verify that there's disk space available? ES will go into read only mode once a threshold is hit.
Errors in the range 4XX are usually client errors. And in your case, 403 means Forbidden. The server understood the request but refuses to authorize it.
A server that wishes to make public why the request has been forbidden can describe that reason in the response payload (if any).
You could also try going to your dev tools console and
run below command:
curl -XPUT -H "Content-Type: application/json" http://localhost:9200/<your index_pattern_name>-*/_settings -d '{"index.blocks.read_only_allow_delete": null}'
https://www.elastic.co/guide/en/elasticsearch/reference/6.x/disk-allocator.html has more info on this reset.
Cheers
Rashmi
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.