我在kubernetes上安装了Elasticsearch。你能告诉我如何设置这个选项吗:http.max_content_length
apiVersion: elasticsearch.k8s.elastic.co/v1beta1
kind: Elasticsearch
metadata:
name: elasticsearch-sample
spec:
version: 7.5.0
nodeSets:
- name: default
config:
node.master: true
node.data: true
node.ingest: true
node.ml: true
http.max_content_length: 300 <--is this a proper place ?
count: 3发布于 2020-11-04 20:52:26
是的,但是你少了一个这种尺寸的单位,请把它也加进去。
http.max_content_length: 300mb --> note `mb`https://stackoverflow.com/questions/64680083
复制相似问题