Interface ClusterAdminConnection
-
- All Superinterfaces:
AdminConnection
,java.lang.AutoCloseable
public interface ClusterAdminConnection extends AdminConnection
Public
AdminConnection
for cluster/pack functions.- Since:
- 4.0
- Version:
- 4.0
- Author:
- Edgar Rodriguez-Diaz
-
-
Field Summary
-
Fields inherited from interface com.complexible.stardog.api.admin.AdminConnection
NO_TIMEOUT
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
attemptSync()
java.util.List<ClusterNodeStatus>
currentPackStatus()
java.io.File
generateClusterDiagnosticReport(com.complexible.stardog.util.report.DiagnosticsReport theDiagnosticsReport)
java.util.List<java.lang.String>
getNodes()
java.util.Set<java.lang.String>
listStandbyMembers()
java.lang.String
readOnlyStart()
java.lang.String
readOnlyStop()
void
removeStandbyMember(java.lang.String theMemberId)
void
setPause(boolean thePause)
void
shutdownAll()
StandbyNodeState
standbyState()
StandbyNodeStatus
standbyStatus()
-
Methods inherited from interface com.complexible.stardog.api.admin.AdminConnection
as, backup, backup, backup, backup, backupAll, backupAll, backupAll, builder, changeEncryptionPassword, checkpoint, close, createNewEncryptionKey, currentStatus, currentStatus, disableEncryption, disk, drop, fileKeyList, generateDiagnosticReport, get, get, getPermissionManager, getProcessManager, getProperty, getQueryManager, getRoleManager, getStoredFunctions, getStoredQueries, getTokenManager, getUserManager, isOpen, list, newDatabase, offline, offline, online, optimize, optimize, removeEncryptionPassword, repair, restore, restore, set, setEncryptionPassword, setProperty, shutdown, verify
-
-
-
-
Method Detail
-
getNodes
java.util.List<java.lang.String> getNodes() throws StardogException
- Throws:
StardogException
-
shutdownAll
void shutdownAll() throws StardogException
- Throws:
StardogException
-
currentPackStatus
java.util.List<ClusterNodeStatus> currentPackStatus() throws StardogException
- Throws:
StardogException
-
standbyState
StandbyNodeState standbyState() throws StardogException
- Throws:
StardogException
-
standbyStatus
StandbyNodeStatus standbyStatus() throws StardogException
- Throws:
StardogException
-
setPause
void setPause(boolean thePause) throws StardogException
- Throws:
StardogException
-
removeStandbyMember
void removeStandbyMember(java.lang.String theMemberId)
-
listStandbyMembers
java.util.Set<java.lang.String> listStandbyMembers()
-
generateClusterDiagnosticReport
java.io.File generateClusterDiagnosticReport(com.complexible.stardog.util.report.DiagnosticsReport theDiagnosticsReport)
-
readOnlyStart
java.lang.String readOnlyStart()
-
readOnlyStop
java.lang.String readOnlyStop()
-
attemptSync
java.lang.String attemptSync() throws StardogException
- Throws:
StardogException
-
-