Hi All,
I have some problem when querying. My cluster have 6 data nodes.
When I query, only one node has unusual symptoms. my query is very simple.
I'm doing stress tests, only one node shows high Read I/O(3000/s) , Latency
And Unlike other nodes, It shows a low CPU usage.
Issue node Max:
- CPU: 12%
- Read I/O: 3000/s
- Latency: 500ms
- Cgroup CPU Performance: 600m ns
Others Max
- CPU: 33%
- Read I/O: 10/s
- Latency: 10ms
- Cgroup CPU Performance: 2b ns
Why is this happening?
This is my query
{
"sort": [
{
"rank_score": "desc"
}
],
"from": 0,
"size": 1005,
"_source": false,
"docvalue_fields": [
"attributes","acronym","channel_id",
"channel_name","channel_number","lineup_id",
"original_logo_image_url","source_id","recency_norm",
"popularity_norm","search_popularity_norm"
],
"query": {
"constant_score": {
"filter": {
"bool": {
"must": [
{
"term": {
"lineup_id": {
"value": "42258"
}
}
}
]
}
},
"boost": 1
}
}
}