danieleperera / OnionIngestor

An extendable tool to Collect, Crawl and Monitor onion sites on tor network and index collected information on Elasticsearch
MIT License
306 stars 40 forks source link

maximum allowed to be analyzed for highlighting has exceeded! #2

Closed danieleperera closed 4 years ago

danieleperera commented 4 years ago

Kibana's maximum allowed to be analyzed for highlighting is 1000000. Can't update kibana

danieleperera commented 4 years ago

To fix the issue please run the following curl cmd: To set highlighting max to 60000000.

curl -XPUT "localhost:9200/YOUR-INDEX-NAME/_settings" -H 'Content-Type: application/json' -d' {
    "index" : {
        "highlight.max_analyzed_offset" : 60000000
    }
}
'