2011-08-20 21:37:37 +03:00
|
|
|
/*
|
2014-01-06 22:48:02 +01:00
|
|
|
* Licensed to Elasticsearch under one or more contributor
|
|
|
|
* license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright
|
|
|
|
* ownership. Elasticsearch licenses this file to you under
|
|
|
|
* the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-08-20 21:37:37 +03:00
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*/
|
|
|
|
|
2017-01-16 21:06:08 +01:00
|
|
|
package org.elasticsearch.node;
|
2011-08-20 21:37:37 +03:00
|
|
|
|
2020-07-13 18:23:42 -05:00
|
|
|
import org.elasticsearch.index.IndexingPressure;
|
2018-03-13 12:49:33 -04:00
|
|
|
import org.elasticsearch.core.internal.io.IOUtils;
|
2013-12-30 13:59:37 +01:00
|
|
|
import org.elasticsearch.Build;
|
2012-12-06 15:22:44 +01:00
|
|
|
import org.elasticsearch.Version;
|
2011-08-20 21:37:37 +03:00
|
|
|
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
|
|
|
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
2013-04-07 20:22:48 -07:00
|
|
|
import org.elasticsearch.action.admin.indices.stats.CommonStatsFlags;
|
Expose adaptive replica selection stats in /_nodes/stats API
This exposes the collected metrics we store for ARS in the nodes stats, as well
as the computed rank of nodes. Each node exposes its perspective about the
cluster.
Here's an example output (with `?human`):
```json
...
"adaptive_selection" : {
"_k6v1-wERxyUd5ke6s-D0g" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "7.8ms",
"avg_service_time_ns" : 7896963,
"avg_response_time" : "9ms",
"avg_response_time_ns" : 9095598,
"rank" : "9.1"
},
"VJiCUFoiTpySGmO00eWmtQ" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "1.3ms",
"avg_service_time_ns" : 1330240,
"avg_response_time" : "4.5ms",
"avg_response_time_ns" : 4524154,
"rank" : "4.5"
},
"DHNGTdzyT9iiaCpEUsIAKA" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "2.1ms",
"avg_service_time_ns" : 2113164,
"avg_response_time" : "6.3ms",
"avg_response_time_ns" : 6375810,
"rank" : "6.4"
}
}
...
```
2017-10-18 06:57:30 -06:00
|
|
|
import org.elasticsearch.action.search.SearchTransportService;
|
2016-03-17 22:42:20 +01:00
|
|
|
import org.elasticsearch.cluster.service.ClusterService;
|
2016-07-01 12:55:41 -07:00
|
|
|
import org.elasticsearch.common.Nullable;
|
2011-08-20 21:37:37 +03:00
|
|
|
import org.elasticsearch.common.settings.Settings;
|
2016-02-04 10:45:32 +01:00
|
|
|
import org.elasticsearch.common.settings.SettingsFilter;
|
2011-12-12 20:22:19 +02:00
|
|
|
import org.elasticsearch.discovery.Discovery;
|
2017-01-16 21:06:08 +01:00
|
|
|
import org.elasticsearch.http.HttpServerTransport;
|
2011-08-20 21:37:37 +03:00
|
|
|
import org.elasticsearch.indices.IndicesService;
|
2014-05-21 13:37:03 +02:00
|
|
|
import org.elasticsearch.indices.breaker.CircuitBreakerService;
|
2016-01-14 16:30:44 +01:00
|
|
|
import org.elasticsearch.ingest.IngestService;
|
2011-08-20 21:37:37 +03:00
|
|
|
import org.elasticsearch.monitor.MonitorService;
|
List of existing plugins with Node Info API
We want to display information about loaded plugins in Node Info API using plugin option:
```sh
curl http://localhost:9200/_nodes?plugin=true
```
For example, on a 4 nodes cluster, it could provide the following output:
```javascript
{
"ok" : true,
"cluster_name" : "test-cluster-MacBook-Air-de-David.local",
"nodes" : {
"lodYfbFTRnmwE6rjWGGyQQ" : {
"name" : "node1",
"transport_address" : "inet[/172.18.58.139:9300]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9200]",
"plugins" : [ ]
},
"hJLXmY_NTrCytiIMbX4_1g" : {
"name" : "node4",
"transport_address" : "inet[/172.18.58.139:9303]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9203]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "test-no-version-plugin",
"description" : "test-no-version-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "dummy",
"description" : "No description found for dummy.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"bnoySsBfTrSzbDRZ0BFHvg" : {
"name" : "node2",
"transport_address" : "inet[/172.18.58.139:9301]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9201]",
"plugins" : [ {
"name" : "dummy",
"description" : "This is a description for a dummy test site plugin.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"0Vwil01LSfK9YgRrMce3Ug" : {
"name" : "node3",
"transport_address" : "inet[/172.18.58.139:9302]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9202]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
} ]
}
}
}
```
Information are cached for 10 seconds by default. Modify `plugins.info_refresh_interval` property if needed.
Setting `plugins.info_refresh_interval` to `-1` will cause infinite caching.
Setting `plugins.info_refresh_interval` to `0` will disable caching.
Closes #2668.
2013-03-15 19:28:01 +01:00
|
|
|
import org.elasticsearch.plugins.PluginsService;
|
2015-08-07 14:48:49 -04:00
|
|
|
import org.elasticsearch.script.ScriptService;
|
2020-07-28 14:06:12 -04:00
|
|
|
import org.elasticsearch.search.aggregations.support.AggregationUsageService;
|
2012-01-10 17:45:10 +02:00
|
|
|
import org.elasticsearch.threadpool.ThreadPool;
|
2011-08-20 21:37:37 +03:00
|
|
|
import org.elasticsearch.transport.TransportService;
|
|
|
|
|
2016-12-08 19:59:02 -05:00
|
|
|
import java.io.Closeable;
|
|
|
|
import java.io.IOException;
|
2019-04-17 16:10:53 +02:00
|
|
|
import java.util.concurrent.TimeUnit;
|
2016-12-08 19:59:02 -05:00
|
|
|
|
2018-11-16 13:10:32 -08:00
|
|
|
public class NodeService implements Closeable {
|
2018-10-30 16:10:38 -04:00
|
|
|
private final Settings settings;
|
2012-01-10 17:45:10 +02:00
|
|
|
private final ThreadPool threadPool;
|
2011-08-20 21:37:37 +03:00
|
|
|
private final MonitorService monitorService;
|
|
|
|
private final TransportService transportService;
|
|
|
|
private final IndicesService indicesService;
|
List of existing plugins with Node Info API
We want to display information about loaded plugins in Node Info API using plugin option:
```sh
curl http://localhost:9200/_nodes?plugin=true
```
For example, on a 4 nodes cluster, it could provide the following output:
```javascript
{
"ok" : true,
"cluster_name" : "test-cluster-MacBook-Air-de-David.local",
"nodes" : {
"lodYfbFTRnmwE6rjWGGyQQ" : {
"name" : "node1",
"transport_address" : "inet[/172.18.58.139:9300]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9200]",
"plugins" : [ ]
},
"hJLXmY_NTrCytiIMbX4_1g" : {
"name" : "node4",
"transport_address" : "inet[/172.18.58.139:9303]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9203]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "test-no-version-plugin",
"description" : "test-no-version-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "dummy",
"description" : "No description found for dummy.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"bnoySsBfTrSzbDRZ0BFHvg" : {
"name" : "node2",
"transport_address" : "inet[/172.18.58.139:9301]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9201]",
"plugins" : [ {
"name" : "dummy",
"description" : "This is a description for a dummy test site plugin.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"0Vwil01LSfK9YgRrMce3Ug" : {
"name" : "node3",
"transport_address" : "inet[/172.18.58.139:9302]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9202]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
} ]
}
}
}
```
Information are cached for 10 seconds by default. Modify `plugins.info_refresh_interval` property if needed.
Setting `plugins.info_refresh_interval` to `-1` will cause infinite caching.
Setting `plugins.info_refresh_interval` to `0` will disable caching.
Closes #2668.
2013-03-15 19:28:01 +01:00
|
|
|
private final PluginsService pluginService;
|
2014-01-02 15:04:47 -07:00
|
|
|
private final CircuitBreakerService circuitBreakerService;
|
2016-01-14 16:30:44 +01:00
|
|
|
private final IngestService ingestService;
|
2016-02-04 10:45:32 +01:00
|
|
|
private final SettingsFilter settingsFilter;
|
Expose adaptive replica selection stats in /_nodes/stats API
This exposes the collected metrics we store for ARS in the nodes stats, as well
as the computed rank of nodes. Each node exposes its perspective about the
cluster.
Here's an example output (with `?human`):
```json
...
"adaptive_selection" : {
"_k6v1-wERxyUd5ke6s-D0g" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "7.8ms",
"avg_service_time_ns" : 7896963,
"avg_response_time" : "9ms",
"avg_response_time_ns" : 9095598,
"rank" : "9.1"
},
"VJiCUFoiTpySGmO00eWmtQ" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "1.3ms",
"avg_service_time_ns" : 1330240,
"avg_response_time" : "4.5ms",
"avg_response_time_ns" : 4524154,
"rank" : "4.5"
},
"DHNGTdzyT9iiaCpEUsIAKA" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "2.1ms",
"avg_service_time_ns" : 2113164,
"avg_response_time" : "6.3ms",
"avg_response_time_ns" : 6375810,
"rank" : "6.4"
}
}
...
```
2017-10-18 06:57:30 -06:00
|
|
|
private final ScriptService scriptService;
|
2017-01-16 21:06:08 +01:00
|
|
|
private final HttpServerTransport httpServerTransport;
|
Expose adaptive replica selection stats in /_nodes/stats API
This exposes the collected metrics we store for ARS in the nodes stats, as well
as the computed rank of nodes. Each node exposes its perspective about the
cluster.
Here's an example output (with `?human`):
```json
...
"adaptive_selection" : {
"_k6v1-wERxyUd5ke6s-D0g" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "7.8ms",
"avg_service_time_ns" : 7896963,
"avg_response_time" : "9ms",
"avg_response_time_ns" : 9095598,
"rank" : "9.1"
},
"VJiCUFoiTpySGmO00eWmtQ" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "1.3ms",
"avg_service_time_ns" : 1330240,
"avg_response_time" : "4.5ms",
"avg_response_time_ns" : 4524154,
"rank" : "4.5"
},
"DHNGTdzyT9iiaCpEUsIAKA" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "2.1ms",
"avg_service_time_ns" : 2113164,
"avg_response_time" : "6.3ms",
"avg_response_time_ns" : 6375810,
"rank" : "6.4"
}
}
...
```
2017-10-18 06:57:30 -06:00
|
|
|
private final ResponseCollectorService responseCollectorService;
|
|
|
|
private final SearchTransportService searchTransportService;
|
2020-07-13 18:23:42 -05:00
|
|
|
private final IndexingPressure indexingPressure;
|
2020-07-28 14:06:12 -04:00
|
|
|
private final AggregationUsageService aggregationUsageService;
|
2011-08-20 21:37:37 +03:00
|
|
|
|
2014-08-06 13:30:03 +02:00
|
|
|
private final Discovery discovery;
|
2013-08-15 11:34:27 +02:00
|
|
|
|
2017-01-16 21:06:08 +01:00
|
|
|
NodeService(Settings settings, ThreadPool threadPool, MonitorService monitorService, Discovery discovery,
|
Expose adaptive replica selection stats in /_nodes/stats API
This exposes the collected metrics we store for ARS in the nodes stats, as well
as the computed rank of nodes. Each node exposes its perspective about the
cluster.
Here's an example output (with `?human`):
```json
...
"adaptive_selection" : {
"_k6v1-wERxyUd5ke6s-D0g" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "7.8ms",
"avg_service_time_ns" : 7896963,
"avg_response_time" : "9ms",
"avg_response_time_ns" : 9095598,
"rank" : "9.1"
},
"VJiCUFoiTpySGmO00eWmtQ" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "1.3ms",
"avg_service_time_ns" : 1330240,
"avg_response_time" : "4.5ms",
"avg_response_time_ns" : 4524154,
"rank" : "4.5"
},
"DHNGTdzyT9iiaCpEUsIAKA" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "2.1ms",
"avg_service_time_ns" : 2113164,
"avg_response_time" : "6.3ms",
"avg_response_time_ns" : 6375810,
"rank" : "6.4"
}
}
...
```
2017-10-18 06:57:30 -06:00
|
|
|
TransportService transportService, IndicesService indicesService, PluginsService pluginService,
|
|
|
|
CircuitBreakerService circuitBreakerService, ScriptService scriptService,
|
|
|
|
@Nullable HttpServerTransport httpServerTransport, IngestService ingestService, ClusterService clusterService,
|
|
|
|
SettingsFilter settingsFilter, ResponseCollectorService responseCollectorService,
|
2020-07-28 14:06:12 -04:00
|
|
|
SearchTransportService searchTransportService, IndexingPressure indexingPressure,
|
|
|
|
AggregationUsageService aggregationUsageService) {
|
2018-10-30 16:10:38 -04:00
|
|
|
this.settings = settings;
|
2012-01-10 17:45:10 +02:00
|
|
|
this.threadPool = threadPool;
|
2011-08-20 21:37:37 +03:00
|
|
|
this.monitorService = monitorService;
|
|
|
|
this.transportService = transportService;
|
|
|
|
this.indicesService = indicesService;
|
2014-08-06 13:30:03 +02:00
|
|
|
this.discovery = discovery;
|
List of existing plugins with Node Info API
We want to display information about loaded plugins in Node Info API using plugin option:
```sh
curl http://localhost:9200/_nodes?plugin=true
```
For example, on a 4 nodes cluster, it could provide the following output:
```javascript
{
"ok" : true,
"cluster_name" : "test-cluster-MacBook-Air-de-David.local",
"nodes" : {
"lodYfbFTRnmwE6rjWGGyQQ" : {
"name" : "node1",
"transport_address" : "inet[/172.18.58.139:9300]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9200]",
"plugins" : [ ]
},
"hJLXmY_NTrCytiIMbX4_1g" : {
"name" : "node4",
"transport_address" : "inet[/172.18.58.139:9303]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9203]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "test-no-version-plugin",
"description" : "test-no-version-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "dummy",
"description" : "No description found for dummy.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"bnoySsBfTrSzbDRZ0BFHvg" : {
"name" : "node2",
"transport_address" : "inet[/172.18.58.139:9301]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9201]",
"plugins" : [ {
"name" : "dummy",
"description" : "This is a description for a dummy test site plugin.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"0Vwil01LSfK9YgRrMce3Ug" : {
"name" : "node3",
"transport_address" : "inet[/172.18.58.139:9302]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9202]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
} ]
}
}
}
```
Information are cached for 10 seconds by default. Modify `plugins.info_refresh_interval` property if needed.
Setting `plugins.info_refresh_interval` to `-1` will cause infinite caching.
Setting `plugins.info_refresh_interval` to `0` will disable caching.
Closes #2668.
2013-03-15 19:28:01 +01:00
|
|
|
this.pluginService = pluginService;
|
2014-01-02 15:04:47 -07:00
|
|
|
this.circuitBreakerService = circuitBreakerService;
|
2017-01-16 21:06:08 +01:00
|
|
|
this.httpServerTransport = httpServerTransport;
|
2016-06-30 01:49:22 -07:00
|
|
|
this.ingestService = ingestService;
|
2016-02-04 10:45:32 +01:00
|
|
|
this.settingsFilter = settingsFilter;
|
2016-07-01 09:31:41 -07:00
|
|
|
this.scriptService = scriptService;
|
Expose adaptive replica selection stats in /_nodes/stats API
This exposes the collected metrics we store for ARS in the nodes stats, as well
as the computed rank of nodes. Each node exposes its perspective about the
cluster.
Here's an example output (with `?human`):
```json
...
"adaptive_selection" : {
"_k6v1-wERxyUd5ke6s-D0g" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "7.8ms",
"avg_service_time_ns" : 7896963,
"avg_response_time" : "9ms",
"avg_response_time_ns" : 9095598,
"rank" : "9.1"
},
"VJiCUFoiTpySGmO00eWmtQ" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "1.3ms",
"avg_service_time_ns" : 1330240,
"avg_response_time" : "4.5ms",
"avg_response_time_ns" : 4524154,
"rank" : "4.5"
},
"DHNGTdzyT9iiaCpEUsIAKA" : {
"outgoing_searches" : 0,
"avg_queue_size" : 0,
"avg_service_time" : "2.1ms",
"avg_service_time_ns" : 2113164,
"avg_response_time" : "6.3ms",
"avg_response_time_ns" : 6375810,
"rank" : "6.4"
}
}
...
```
2017-10-18 06:57:30 -06:00
|
|
|
this.responseCollectorService = responseCollectorService;
|
|
|
|
this.searchTransportService = searchTransportService;
|
2020-07-13 18:23:42 -05:00
|
|
|
this.indexingPressure = indexingPressure;
|
2020-07-28 14:06:12 -04:00
|
|
|
this.aggregationUsageService = aggregationUsageService;
|
2018-08-21 05:05:32 +02:00
|
|
|
clusterService.addStateApplier(ingestService);
|
2011-08-20 21:37:37 +03:00
|
|
|
}
|
|
|
|
|
List of existing plugins with Node Info API
We want to display information about loaded plugins in Node Info API using plugin option:
```sh
curl http://localhost:9200/_nodes?plugin=true
```
For example, on a 4 nodes cluster, it could provide the following output:
```javascript
{
"ok" : true,
"cluster_name" : "test-cluster-MacBook-Air-de-David.local",
"nodes" : {
"lodYfbFTRnmwE6rjWGGyQQ" : {
"name" : "node1",
"transport_address" : "inet[/172.18.58.139:9300]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9200]",
"plugins" : [ ]
},
"hJLXmY_NTrCytiIMbX4_1g" : {
"name" : "node4",
"transport_address" : "inet[/172.18.58.139:9303]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9203]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "test-no-version-plugin",
"description" : "test-no-version-plugin description",
"site" : true,
"jvm" : false
}, {
"name" : "dummy",
"description" : "No description found for dummy.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"bnoySsBfTrSzbDRZ0BFHvg" : {
"name" : "node2",
"transport_address" : "inet[/172.18.58.139:9301]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9201]",
"plugins" : [ {
"name" : "dummy",
"description" : "This is a description for a dummy test site plugin.",
"url" : "/_plugin/dummy/",
"site" : false,
"jvm" : true
} ]
},
"0Vwil01LSfK9YgRrMce3Ug" : {
"name" : "node3",
"transport_address" : "inet[/172.18.58.139:9302]",
"hostname" : "MacBook-Air-de-David.local",
"version" : "0.90.0.Beta2-SNAPSHOT",
"http_address" : "inet[/172.18.58.139:9202]",
"plugins" : [ {
"name" : "test-plugin",
"description" : "test-plugin description",
"site" : true,
"jvm" : false
} ]
}
}
}
```
Information are cached for 10 seconds by default. Modify `plugins.info_refresh_interval` property if needed.
Setting `plugins.info_refresh_interval` to `-1` will cause infinite caching.
Setting `plugins.info_refresh_interval` to `0` will disable caching.
Closes #2668.
2013-03-15 19:28:01 +01:00
|
|
|
public NodeInfo info(boolean settings, boolean os, boolean process, boolean jvm, boolean threadPool,
|
2020-07-28 14:06:12 -04:00
|
|
|
boolean transport, boolean http, boolean plugin, boolean ingest, boolean aggs, boolean indices) {
|
2017-04-28 09:34:31 +02:00
|
|
|
return new NodeInfo(Version.CURRENT, Build.CURRENT, transportService.getLocalNode(),
|
2016-02-04 10:45:32 +01:00
|
|
|
settings ? settingsFilter.filter(this.settings) : null,
|
2012-01-09 15:24:17 +02:00
|
|
|
os ? monitorService.osService().info() : null,
|
|
|
|
process ? monitorService.processService().info() : null,
|
|
|
|
jvm ? monitorService.jvmService().info() : null,
|
2012-01-10 17:45:10 +02:00
|
|
|
threadPool ? this.threadPool.info() : null,
|
2012-01-09 15:24:17 +02:00
|
|
|
transport ? transportService.info() : null,
|
2017-01-16 21:06:08 +01:00
|
|
|
http ? (httpServerTransport == null ? null : httpServerTransport.info()) : null,
|
2016-02-29 17:41:54 +01:00
|
|
|
plugin ? (pluginService == null ? null : pluginService.info()) : null,
|
2016-06-16 04:39:34 -04:00
|
|
|
ingest ? (ingestService == null ? null : ingestService.info()) : null,
|
2020-07-28 14:06:12 -04:00
|
|
|
aggs ? (aggregationUsageService == null ? null : aggregationUsageService.info()) : null,
|
2016-06-20 14:20:23 -04:00
|
|
|
indices ? indicesService.getTotalIndexingBufferBytes() : null
|
2012-01-09 15:24:17 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2015-08-16 19:16:58 -07:00
|
|
|
public NodeStats stats(CommonStatsFlags indices, boolean os, boolean process, boolean jvm, boolean threadPool,
|
2015-08-07 14:48:49 -04:00
|
|
|
boolean fs, boolean transport, boolean http, boolean circuitBreaker,
|
2020-07-13 18:23:42 -05:00
|
|
|
boolean script, boolean discoveryStats, boolean ingest, boolean adaptiveSelection, boolean scriptCache,
|
|
|
|
boolean indexingPressure) {
|
2012-01-09 18:01:41 +02:00
|
|
|
// for indices stats we want to include previous allocated shards stats as well (it will
|
|
|
|
// only be applied to the sensible ones to use, like refresh/merge/flush/indexing stats)
|
2017-04-28 09:34:31 +02:00
|
|
|
return new NodeStats(transportService.getLocalNode(), System.currentTimeMillis(),
|
2019-08-06 17:21:27 +01:00
|
|
|
indices.anySet() ? indicesService.stats(indices) : null,
|
2012-01-09 18:01:41 +02:00
|
|
|
os ? monitorService.osService().stats() : null,
|
|
|
|
process ? monitorService.processService().stats() : null,
|
|
|
|
jvm ? monitorService.jvmService().stats() : null,
|
2012-01-10 17:45:10 +02:00
|
|
|
threadPool ? this.threadPool.stats() : null,
|
2012-01-18 21:00:09 +02:00
|
|
|
fs ? monitorService.fsService().stats() : null,
|
2012-01-09 18:01:41 +02:00
|
|
|
transport ? transportService.stats() : null,
|
2017-01-16 21:06:08 +01:00
|
|
|
http ? (httpServerTransport == null ? null : httpServerTransport.stats()) : null,
|
2015-08-07 14:48:49 -04:00
|
|
|
circuitBreaker ? circuitBreakerService.stats() : null,
|
2015-09-20 11:20:02 -07:00
|
|
|
script ? scriptService.stats() : null,
|
2016-03-02 17:57:45 +01:00
|
|
|
discoveryStats ? discovery.stats() : null,
|
2018-08-21 05:05:32 +02:00
|
|
|
ingest ? ingestService.stats() : null,
|
Scripting: stats per context in nodes stats (#54008) (#54357)
Adds script cache stats to `_node/stats`.
If using the general cache:
```
"script_cache": {
"sum": {
"compilations": 12,
"cache_evictions": 9,
"compilation_limit_triggered": 5
}
}
```
If using context caches:
```
"script_cache": {
"sum": {
"compilations": 13,
"cache_evictions": 9,
"compilation_limit_triggered": 5
},
"contexts": [
{
"context": "aggregation_selector",
"compilations": 8,
"cache_evictions": 6,
"compilation_limit_triggered": 3
},
{
"context": "aggs",
"compilations": 5,
"cache_evictions": 3,
"compilation_limit_triggered": 2
},
```
Backport of: 32f46f2
Refs: #50152
2020-03-27 12:26:00 -06:00
|
|
|
adaptiveSelection ? responseCollectorService.getAdaptiveStats(searchTransportService.getPendingSearchRequests()) : null,
|
2020-07-13 18:23:42 -05:00
|
|
|
scriptCache ? scriptService.cacheStats() : null,
|
|
|
|
indexingPressure ? this.indexingPressure.stats() : null
|
2012-01-10 17:45:10 +02:00
|
|
|
);
|
2012-01-09 18:01:41 +02:00
|
|
|
}
|
2016-01-14 16:30:44 +01:00
|
|
|
|
|
|
|
public IngestService getIngestService() {
|
|
|
|
return ingestService;
|
|
|
|
}
|
2016-01-20 15:46:48 +01:00
|
|
|
|
2017-07-05 22:18:23 +02:00
|
|
|
public MonitorService getMonitorService() {
|
|
|
|
return monitorService;
|
|
|
|
}
|
|
|
|
|
2016-01-20 15:46:48 +01:00
|
|
|
@Override
|
|
|
|
public void close() throws IOException {
|
2017-07-05 22:18:23 +02:00
|
|
|
IOUtils.close(indicesService);
|
2016-01-20 15:46:48 +01:00
|
|
|
}
|
2016-12-08 19:59:02 -05:00
|
|
|
|
2019-04-17 16:10:53 +02:00
|
|
|
/**
|
|
|
|
* Wait for the node to be effectively closed.
|
|
|
|
* @see IndicesService#awaitClose(long, TimeUnit)
|
|
|
|
*/
|
|
|
|
public boolean awaitClose(long timeout, TimeUnit timeUnit) throws InterruptedException {
|
|
|
|
return indicesService.awaitClose(timeout, timeUnit);
|
|
|
|
}
|
|
|
|
|
2011-08-20 21:37:37 +03:00
|
|
|
}
|