Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AdminClient ¶
type AdminClient interface {
// GetStatus gets the database's status
GetStatus() (*fdbv1beta2.FoundationDBStatus, error)
// ConfigureDatabase sets the database configuration
ConfigureDatabase(configuration fdbv1beta2.DatabaseConfiguration, newDatabase bool, version string) error
// ExcludeProcesses starts evacuating processes so that they can be removed
// from the database.
ExcludeProcesses(addresses []fdbv1beta2.ProcessAddress) error
// IncludeProcesses removes processes from the exclusion list and allows
// them to take on roles again.
IncludeProcesses(addresses []fdbv1beta2.ProcessAddress) error
// GetExclusions gets a list of the addresses currently excluded from the
// database.
GetExclusions() ([]fdbv1beta2.ProcessAddress, error)
// CanSafelyRemove checks whether it is safe to remove processes from the
// cluster.
//
// The list returned by this method will be the addresses that are *not*
// safe to remove.
CanSafelyRemove(addresses []fdbv1beta2.ProcessAddress) ([]fdbv1beta2.ProcessAddress, error)
// KillProcesses restarts processes
KillProcesses(addresses []fdbv1beta2.ProcessAddress) error
// ChangeCoordinators changes the coordinator set
ChangeCoordinators(addresses []fdbv1beta2.ProcessAddress) (string, error)
// GetConnectionString fetches the latest connection string.
GetConnectionString() (string, error)
// VersionSupported reports whether we can support a cluster with a given
// version.
VersionSupported(version string) (bool, error)
// GetProtocolVersion determines the protocol version that is used by a
// version of FDB.
GetProtocolVersion(version string) (string, error)
// StartBackup starts a new backup.
StartBackup(url string, snapshotPeriodSeconds int) error
// StopBackup stops a backup.
StopBackup(url string) error
// PauseBackups pauses the backups.
PauseBackups() error
// ResumeBackups resumes the backups.
ResumeBackups() error
// ModifyBackup modifies the configuration of the backup.
ModifyBackup(int) error
// GetBackupStatus gets the status of the current backup.
GetBackupStatus() (*fdbv1beta2.FoundationDBLiveBackupStatus, error)
// StartRestore starts a new restore.
StartRestore(url string, keyRanges []fdbv1beta2.FoundationDBKeyRange) error
// GetRestoreStatus gets the status of the current restore.
GetRestoreStatus() (string, error)
// Close shuts down any resources for the client once it is no longer
// needed.
Close() error
// GetCoordinatorSet returns a set of the current coordinators.
GetCoordinatorSet() (map[string]fdbv1beta2.None, error)
// SetKnobs sets the Knobs that should be used for the commandline call.
SetKnobs([]string)
// GetMaintenanceZone gets current maintenance zone, if any
GetMaintenanceZone() (string, error)
// SetMaintenanceZone places zone into maintenance mode
SetMaintenanceZone(zone string, timeoutSeconds int) error
// Reset maintenance mode
ResetMaintenanceMode() error
}
AdminClient describes an interface for running administrative commands on a cluster
type DatabaseClientProvider ¶ added in v1.10.0
type DatabaseClientProvider interface {
// GetLockClient generates a client for working with locks through the database.
GetLockClient(cluster *fdbv1beta2.FoundationDBCluster) (LockClient, error)
// GetAdminClient generates a client for performing administrative actions
// against the database.
GetAdminClient(cluster *fdbv1beta2.FoundationDBCluster, kubernetesClient client.Client) (AdminClient, error)
}
DatabaseClientProvider provides an abstraction for creating clients that communicate with the database.
type LockClient ¶
type LockClient interface {
// Disabled determines whether the locking is disabled.
Disabled() bool
// TakeLock attempts to acquire a lock.
TakeLock() (bool, error)
// AddPendingUpgrades registers information about which process groups are
// pending an upgrade to a new version.
AddPendingUpgrades(version fdbv1beta2.Version, processGroupIDs []string) error
// GetPendingUpgrades returns the stored information about which process
// groups are pending an upgrade to a new version.
GetPendingUpgrades(version fdbv1beta2.Version) (map[string]bool, error)
// ClearPendingUpgrades clears any stored information about pending
// upgrades.
ClearPendingUpgrades() error
// GetDenyList retrieves the current deny list from the database.
GetDenyList() ([]string, error)
// UpdateDenyList updates the deny list to match a list of entries.
UpdateDenyList(locks []fdbv1beta2.LockDenyListEntry) error
}
LockClient provides a client for getting locks on operations for a cluster.
Click to show internal directories.
Click to hide internal directories.