Class NodeThreadPoolInfo
Inherited Members
Namespace: OpenSearch.Client
Assembly: OpenSearch.Client.dll
Syntax
[DataContract]
public class NodeThreadPoolInfo
Properties
| Edit this page View SourceCore
The configured core number of active threads allowed in the current thread pool
Declaration
[DataMember(Name = "core")]
public int? Core { get; }
Property Value
Type | Description |
---|---|
int? |
KeepAlive
The configured keep alive time for threads
Declaration
[DataMember(Name = "keep_alive")]
public string KeepAlive { get; }
Property Value
Type | Description |
---|---|
string |
Max
The configured maximum number of active threads allowed in the current thread pool
Declaration
[DataMember(Name = "max")]
public int? Max { get; }
Property Value
Type | Description |
---|---|
int? |
QueueSize
The maximum number of tasks permitted in the queue for the current thread pool
Declaration
[DataMember(Name = "queue_size")]
public int? QueueSize { get; }
Property Value
Type | Description |
---|---|
int? |
Size
The configured fixed number of active threads allowed in the current thread pool
Declaration
[DataMember(Name = "size")]
public int? Size { get; }
Property Value
Type | Description |
---|---|
int? |
Type
The type of thread pool
Declaration
[DataMember(Name = "type")]
public string Type { get; }
Property Value
Type | Description |
---|---|
string |