1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
| "thread_pool": { "force_merge": { "queue_size": "-1", "size": "1" }, "fetch_shard_started": { "core": "1", "max": "64", "keep_alive": "5m" }, "listener": {// 用于客户端执行时的监听线程,类型时scaling "queue_size": "-1", "size": "10" }, "index": {// 索引操作,类型是fixed "queue_size": "200", "size": "32" }, "refresh": {// 刷新操作,类型是scaling "core": "1", "max": "10", "keep_alive": "5m" }, "generic": { // 通用操作,类型是cached "core": "4", "max": "128", "keep_alive": "30s" }, "warmer": { // 索引预加载,类型是scaling "core": "1", "max": "5", "keep_alive": "5m" }, "search": {// 搜索操作,类型是fixed "max_queue_size": "1000", "queue_size": "1000", "size": "49", "auto_queue_frame_size": "2000", "target_response_time": "1s", "min_queue_size": "1000" }, "fetch_shard_store": { "core": "1", "max": "64", "keep_alive": "5m" }, "flush": { "core": "1", "max": "5", "keep_alive": "5m" }, "management": { "core": "1", "max": "5", "keep_alive": "5m" }, "analyze": { "queue_size": "16", "size": "1" }, "get": { // 获取操作,类型是fixed "queue_size": "1000", "size": "32" }, "bulk": {// 批量操作,类型是fxed "queue_size": "200", "size": "32" }, "estimated_time_interval": "200ms", "write": { "queue_size": "200", "size": "32" }, "snapshot": { // 快照操作,类型是scaling "core": "1", "max": "5", "keep_alive": "5m" }, "search_throttled": { "max_queue_size": "100", "queue_size": "100", "size": "1", "auto_queue_frame_size": "200", "target_response_time": "1s", "min_queue_size": "100" } }
|