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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
| curl http://192.168.106.45:9200/_nodes/thread_pool/ | jq .
"Ixh3hhf4Qv-lLpBna0pBNw": { "name": "192.168.106.45", "transport_address": "192.168.106.45:9300", "host": "192.168.106.45", "ip": "192.168.106.45", "version": "X.X.X", "build": "YYYYY", "http_address": "192.168.106.45/192.168.106.45:9200", "attributes": { "master": "false" }, "thread_pool": { "force_merge": { "type": "fixed", "min": 1, "max": 1, "queue_size": -1 }, "percolate": { "type": "fixed", "min": 16, "max": 16, "queue_size": 1000 }, "fetch_shard_started": { "type": "scaling", "min": 1, "max": 32, "keep_alive": "5m", "queue_size": -1 }, "listener": { "type": "fixed", "min": 8, "max": 8, "queue_size": -1 }, "index": { "type": "fixed", "min": 16, "max": 16, "queue_size": 200 }, "refresh": { "type": "scaling", "min": 1, "max": 8, "keep_alive": "5m", "queue_size": -1 }, "suggest": { "type": "fixed", "min": 16, "max": 16, "queue_size": 1000 }, "generic": { "type": "cached", "keep_alive": "30s", "queue_size": -1 }, "warmer": { "type": "scaling", "min": 1, "max": 5, "keep_alive": "5m", "queue_size": -1 }, "search": { "type": "fixed", "min": 25, "max": 25, "queue_size": 1000 }, "flush": { "type": "scaling", "min": 1, "max": 5, "keep_alive": "5m", "queue_size": -1 }, "fetch_shard_store": { "type": "scaling", "min": 1, "max": 32, "keep_alive": "5m", "queue_size": -1 }, "management": { "type": "scaling", "min": 1, "max": 5, "keep_alive": "5m", "queue_size": -1 }, "get": { "type": "fixed", "min": 16, "max": 16, "queue_size": 1000 }, "bulk": { "type": "fixed", "min": 16, "max": 16, "queue_size": 50 }, "snapshot": { "type": "scaling", "min": 1, "max": 5, "keep_alive": "5m", "queue_size": -1 } } }
|