Interface Maintenance
- All Superinterfaces:
AutoCloseable,CloseableClient
An etcd cluster needs periodic maintenance to remain reliable. Depending on an etcd application's needs, this maintenance can usually be automated and performed without downtime or significantly degraded performance.
All etcd maintenance manages storage resources consumed by the etcd keyspace. Failure to adequately control the keyspace size is guarded by storage space quotas; if an etcd member runs low on space, a quota will trigger cluster-wide alarms which will put the system into a limited-operation maintenance mode. To avoid running out of space for writes to the keyspace, the etcd keyspace history must be compacted. Storage space itself may be reclaimed by defragmenting etcd members. Finally, periodic snapshot backups of etcd member state makes it possible to recover any unintended logical data loss or corruption caused by operational error.
-
Method Summary
Modifier and TypeMethodDescriptionalarmDisarm(AlarmMember member) disarms a given alarm.defragmentMember(String target) Defragment one member of the cluster by its endpoint.returns a hash of the KV state at the time of the RPC.get all active keyspace alarm.moveLeader(long transfereeID) moveLeader requests current leader to transfer its leadership to the transferee.voidsnapshot(io.grpc.stub.StreamObserver<SnapshotResponse> observer) retrieves backend snapshot as as stream of chunks.snapshot(OutputStream output) retrieves backend snapshot.statusMember(String target) get the status of a member by its endpoint.Methods inherited from interface io.etcd.jetcd.support.CloseableClient
close
-
Method Details
-
listAlarms
CompletableFuture<AlarmResponse> listAlarms()get all active keyspace alarm.- Returns:
- the response
-
alarmDisarm
disarms a given alarm.- Parameters:
member- the alarm- Returns:
- the response result
-
defragmentMember
Defragment one member of the cluster by its endpoint.After compacting the keyspace, the backend database may exhibit internal fragmentation. Any internal fragmentation is space that is free to use by the backend but still consumes storage space. The process of defragmentation releases this storage space back to the file system. Defragmentation is issued on a per-member so that cluster-wide latency spikes may be avoided.
Defragment is an expensive operation. User should avoid defragmenting multiple members at the same time. To defragment multiple members in the cluster, user need to call defragment multiple times with different endpoints.
- Parameters:
target- the etcd server endpoint.- Returns:
- the response result
-
statusMember
get the status of a member by its endpoint.- Parameters:
target- the etcd server endpoint.- Returns:
- the response result
-
hashKV
returns a hash of the KV state at the time of the RPC. If revision is zero, the hash is computed on all keys. If the revision is non-zero, the hash is computed on all keys at or below the given revision.- Parameters:
target- the etcd server endpoint.rev- the revision- Returns:
- the response result
-
snapshot
retrieves backend snapshot.- Parameters:
output- the output stream to write the snapshot content.- Returns:
- a Snapshot for retrieving backend snapshot.
-
snapshot
retrieves backend snapshot as as stream of chunks.- Parameters:
observer- a stream of data chunks
-
moveLeader
moveLeader requests current leader to transfer its leadership to the transferee.- Parameters:
transfereeID- the id- Returns:
- the response result
-