Class Node
java.lang.Object
com.github.cowwoc.docker.resource.Node
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enum
Indicates if the node is available to run tasks.static enum
Indicates if it is possible to communicate with the node.static enum
Indicates the overall health of the node.static final record
The overall health of the node.static enum
The role of the node within the swarm. -
Method Summary
Modifier and TypeMethodDescriptionvoid
destroy()
Destroys the node.drain()
Begins gracefully removing tasks from this node and redistribute them to other active nodes.boolean
Returns the node's address.Indicates if the node is available to run tasks.static Node
getById
(DockerClient client, String id) Looks up a node by its name or ID.Returns the node's hostname.getId()
Returns the node's id.Returns values that are used to constrain task scheduling to specific nodes.Returns the node's address for manager communication.getName()
Returns the node's name.Indicates whether it is possible to communicate with the node.getRole()
Returns the role of the node within the swarm.Returns the overall health of the node.getTasks()
Returns the tasks that are running on the node.int
hashCode()
boolean
isLeader()
Indicates if the node is a swarm leader.reload()
Reloads the node's state.setRole
(Node.SwarmRole role) Changes the role of the node.toString()
-
Method Details
-
getById
public static Node getById(DockerClient client, String id) throws IOException, TimeoutException, InterruptedException Looks up a node by its name or ID.- Parameters:
client
- the client configurationid
- the node's name or ID- Returns:
- null if no match is found
- Throws:
NullPointerException
- if any of the arguments are nullIllegalArgumentException
- ifid
contains leading or trailing whitespace or is emptyIllegalStateException
- if:- the client is closed.
- the server is not part of a swarm.
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
getId
-
getName
-
getHostname
-
getRole
Returns the role of the node within the swarm.- Returns:
- null if the node is not part of a swarm
-
isLeader
public boolean isLeader()Indicates if the node is a swarm leader.- Returns:
true
if the node is a swarm leader
-
getStatus
Returns the overall health of the node.- Returns:
- the overall health of the node
-
getReachability
Indicates whether it is possible to communicate with the node.- Returns:
UNKNOWN
for worker nodes
-
getAvailability
Indicates if the node is available to run tasks.- Returns:
true
if the node is available to run tasks
-
getManagerAddress
Returns the node's address for manager communication.- Returns:
- an empty string for worker nodes
-
getAddress
-
getLabels
-
reload
Reloads the node's state.- Returns:
- the updated state
- Throws:
IOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
drain
Begins gracefully removing tasks from this node and redistribute them to other active nodes.- Returns:
- the updated node
- Throws:
IllegalStateException
- if the client is closedIOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
getTasks
Returns the tasks that are running on the node.- Returns:
- the tasks that are running on the node.
- Throws:
IllegalStateException
- if the client is closedIOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
setRole
Changes the role of the node.- Parameters:
role
- the new role- Returns:
- the updated node
- Throws:
NullPointerException
- ifrole
is nullIllegalStateException
- if the client is closedIOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
destroy
Destroys the node.- Throws:
IllegalStateException
- if the client is closedIOException
- if an I/O error occurs. These errors are typically transient, and retrying the request may resolve the issue.TimeoutException
- if the request times out before receiving a response. This might indicate network latency or server overload.InterruptedException
- if the thread is interrupted while waiting for a response. This can happen due to shutdown signals.
-
hashCode
-
equals
-
toString
-