Interface AdminConnection
- All Superinterfaces:
AutoCloseable
- All Known Subinterfaces:
ClusterAdminConnection,ComputeAdminConnection,VirtualGraphAdminConnection
- All Known Implementing Classes:
AbstractAdminConnection,DelegatingAdminConnection,KernelAdminConnection
A connection to the Stardog DBMS allowing access to the administrative functions provided by Stardog.
Any methods which return Strings are the information output returned from the server as a result of the invocation.
- Since:
- 2.0
- Version:
- 5.0.2
- Author:
- Michael Grove
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic interfacestatic class -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final longConstant for specifying no timeout whenofflininga database. -
Method Summary
Modifier and TypeMethodDescription<T extends AdminConnection>
TReturn this admin connection viewed as a different type of admin connection.default StringDeprecated.default StringDeprecated.default StringDeprecated.Usebackup(String, Optional, Options)insteadCreate a backup of the given database in the specified location.Create a backup of the server in the specified location.Deprecated.To be removed in 5.1checkpoint(String theDatabase, Options theOptions) Perform a checkpoint operation (list, create, restore) against selected database.voidclose()Close this connection.currentStatus(boolean theIncludeDbStatus) Deprecated.UsecurrentStatus(Options)insteadcurrentStatus(Options theOptions) Return the server status information, including Server/Protocols running, Stardog Home path, OS, etc.Deprecated.UsenewDatabase(String)insteadDrop the database with the given name.generateDiagnosticReport(com.complexible.stardog.util.report.DiagnosticsReport theDiagnosticsReport) <T> Tget(String theName, MetaProperty<T> theOption) Gets the value of the specified option in the given database.get(String theName, Iterable<? extends MetaProperty<?>> theOptions) Gets the values of the specified options in the given database.Generates a zip file containing the server logs.Return thePermissionManagerfor changing user & role permissionscom.complexible.stardog.process.ProcessManagergetProperty(Collection<String> thePropertyNames) Gets the property value for a server configuration option.Return theQueryManagerfor managing running queriesReturn theRoleManagerto be used for role-centric security changescom.complexible.stardog.StoredFunctionsReturns the stored functions in this server.Returns the stored queries in this server.com.complexible.stardog.security.TokenManagerReturn a link to the object that will allow clients to interact with JWT bearer tokensReturn theUserManagerto be used for user-centric security changesbooleanisOpen()Return whether or not this connection is open.list()List all the databases in the Stardog servernewDatabase(String theName) Create a builder for creating a new database.Makes the database offline according to the default strategy and default timeout.Take the database offline waiting up to the specified timeout before performing a hard off-line.Makes the database online according to the default strategydefault StringOptimizesthe database with default options.Optimizes the indexes of a given database for query answering and disk utilization after the database has been heavily modified.voidrenameDatabase(String theOldName, String theNewName) Rename an existing database to a new oneRepairs the specified database if it is corrupted.replayTransactionLog(String theDb, Path theInputLog, boolean validateLog) Replays the transaction log from the specified file into the given database.Restore the database backed up to the given location<T> Stringset(String theName, MetaProperty<T> theOption, T theValue) Sets the value of the specified option for the database with the given name.setProperty(String thePropertyName, String theNewValue) Requests that the specified server configuration option value be changed to the new value.voidshutdown()Shutdown the remote Stardog server.voidtransactionLog(String theDb, AdminConnection.TxLogRange range, AdminConnection.StreamConsumer theStreamConsumer) Streams the transaction log for the specified database and range to the provided consumer.Verify the integrity of specified database's index.whoami()Returns the username associated with this connection.
-
Field Details
-
NO_TIMEOUT
static final long NO_TIMEOUTConstant for specifying no timeout whenofflininga database.- See Also:
-
-
Method Details
-
as
Return this admin connection viewed as a different type of admin connection.- Type Parameters:
T- the connection view to return- Parameters:
theView- the type of connection to view this object as- Returns:
- the new view of the connection.
- Throws:
StardogException- if the connection cannot be viewed as the provided type. This could be from the parent connection having been closed or it does not support the provided view.
-
close
Close this connection. If the connection is already closed, this will have no effect.- Specified by:
closein interfaceAutoCloseable- Throws:
StardogException- if there was an error while closing
-
isOpen
Return whether or not this connection is open.- Returns:
- true if it is open, false otherwise
- Throws:
StardogException- if there was an error with the connection
-
builder
Deprecated.To be removed in 5.1Convenience method to create a database builder with the given options. The provided options should include at least two options: the name of the database and the index type.- Returns:
- a builder for a database
- Throws:
StardogException- if there was an error while creating the db
-
disk
Deprecated.UsenewDatabase(String)insteadCreate a new builder for creating disk databases- Parameters:
theName- the name of the disk database to create- Returns:
- a builder for a disk database
- Throws:
StardogException- if the name of the database is invalid
-
newDatabase
Create a builder for creating a new database.- Parameters:
theName- the name of the database to create- Returns:
- a builder for a database
- Throws:
StardogException- if the name of the database is invalid
-
renameDatabase
Rename an existing database to a new one- Parameters:
theOldName- the old database nametheNewName- the new database name- Throws:
StardogException- if the database name is invalid or if the database is not offline.
-
get
Metadata get(String theName, Iterable<? extends MetaProperty<?>> theOptions) throws StardogException Gets the values of the specified options in the given database. The returned map is not guaranteed tocontainall the specified options. Only the values forknown Stardog optionsthat are should bereadablewill be contained in the result. This function will throw an exception if the user does not have read access to the database metadata.- Parameters:
theName- database nametheOptions- options for which values will be retrieved- Returns:
- metadata that contains values for the specified met properties
- Throws:
StardogException- if an error occurs while retrieving option values
-
get
Gets the value of the specified option in the given database. The function will returnnullif the option is NOT aknown Stardog options, or if it is NOTreadable. The function may also returnnullif the option is set tonullvalue for the database. To differentiate these cases,get(String, Iterable)function can be used instead. This function will throw an exception if the user does not have read access to the database metadata.- Type Parameters:
T- type of the option value- Parameters:
theName- name of the databasetheOption- the option to get- Returns:
- current value of the option in the database or
nullas explained above - Throws:
StardogException- if there was an error while getting the value
-
set
Sets the value of the specified option for the database with the given name. For this function to complete without an exception, the logged in user should have write access to the database metadata for the specified database, the option should be aknown Stardog option, the provided value should bevalid, and either the option should bewritable onlineor it should bewritableand the database should NOT beonline.- Type Parameters:
T- type of the option value- Parameters:
theName- name of the databasetheOption- option to settheValue- option value- Throws:
StardogException- if an error occurs trying to set the option value
-
getProperty
Gets the property value for a server configuration option. This value will be the default for the option or the override in the properties file.- Parameters:
thePropertyNames- filter for the properties to return. Empty set will match all properties.- Returns:
- Metadata created with config values "MetaProperty.config(key, value).temporary().build()"
- Throws:
StardogException
-
setProperty
Requests that the specified server configuration option value be changed to the new value. This method will notify any listening server modules about the change request. It is not guaranteed that the listening module will update the value.- Parameters:
thePropertyName-theNewValue-- Returns:
- Throws:
StardogException
-
offline
Take the database offline waiting up to the specified timeout before performing a hard off-line. A database going offline will allow open connections to complete, but will not accept new, incoming connections.
Offline databases cannot be queried or updated and will be unaccessible to users.
Specifying a timeout of 0 will immediately shut down the database severing all open connections, i.e. a hard shutdown.
- Parameters:
theName- name of the databasetheTime- timeout duration, must be a positive numbertheTimeUnit- the unit of time for the timeout, cannot be null- Returns:
- the server output of offline
- Throws:
StardogException- if there was an error while offlining the database
-
offline
Makes the database offline according to the default strategy and default timeout. Offline databases cannot be queried or updated and will be inaccessible to users.- Returns:
- the server output of offline
- Throws:
StardogException
-
online
Makes the database online according to the default strategy- Parameters:
theName- the name of the database- Returns:
- the server output of onlining the database
- Throws:
StardogException- if there was an error while onlining the database
-
optimize
Optimizesthe database with default options.- Parameters:
theName- the name of the database to optimize- Returns:
- the server output of optimize
- Throws:
StardogException- if an error occurs during optimization
-
optimize
Optimizes the indexes of a given database for query answering and disk utilization after the database has been heavily modified. If a database has been modified with a large number of additions or removals, some internal structures may become less optimized for query answering. This utility will perform several operations that will help with query answering performance. Which operations are performed depends on the options given.Optimization will NOT modify the database contents. The data layout, indexes and other internal structures might change but the data stored in the database will remain same.
- Parameters:
theName- the name of the database to optimizetheOptions- options specifying the specific optimization steps to perform or empty for default optimizations- Returns:
- the server output of optimize
- Throws:
StardogException- if an error occurs during optimization
-
list
List all the databases in the Stardog server- Returns:
- the list of databases
- Throws:
StardogException- if there was an error getting the list
-
repair
Repairs the specified database if it is corrupted. If the database is not corrupted, nothing will be repaired.- Parameters:
theName- the name of the database to repair- Returns:
- the server output of the repair
- Throws:
StardogException- if there was an error while repairing
-
shutdown
void shutdown() throws com.complexible.stardog.security.StardogSecurityExceptionShutdown the remote Stardog server. You must be connected to the server as a super-user.- Throws:
com.complexible.stardog.security.StardogSecurityException- if you are attempting to shut down the embedded server or if you are not a super-user and are trying to shut down a remote server.
-
drop
Drop the database with the given name.- Parameters:
theName- the name of the database to drop- Returns:
- the Result of the invocation
- Throws:
StardogException- if there was an error while dropping the database
-
backup
Deprecated.Create a backup of the given database to the default location.- Parameters:
theDatabase- the name of the database to back up- Returns:
- the output of the backup process
- Throws:
StardogException- if there is an error performing the backup.
-
backup
Deprecated.Usebackup(String, Optional, Options)insteadCreate a backup of the given database in the specified location.- Parameters:
theDatabase- the name of the database to back uptheLocation- where to store the backup- Returns:
- the output of the backup process
- Throws:
StardogException- if there is an error performing the backup.
-
backup
Deprecated.Usebackup(String, Optional, Options)insteadCreate a backup of the given database in the specified location.- Parameters:
theDatabase- the name of the database to back uptheBackupUrl- where to store the backup- Returns:
- the output of the backup process
- Throws:
StardogException- if there is an error performing the backup.
-
backup
String backup(String theDatabase, Optional<String> theBackupUrl, Options theOptions) throws StardogException Create a backup of the given database in the specified location. The location can be a file path on the server or a URL pointing to S3 or GCP.Configuration optionscan be specified for the backup operation.- Parameters:
theDatabase- the name of the database to back uptheBackupUrl- where to store the backup or empty if the default location should be usedtheOptions- configuration options to use for backups- Returns:
- Throws:
StardogException
-
backupAll
Create a backup of the server in the specified location.- Parameters:
theOptions- Collection of BackupOptions- Returns:
- the output of the backup process
- Throws:
StardogException- if there is an error performing the backup.
-
restore
Restore the database backed up to the given location- Parameters:
theBackup- the location of the backuptheOverwrite- whether or not to overwrite any existing databasetheName- a new name for the restored database- Returns:
- the output of the restore process
- Throws:
StardogException- if there was an error restoring the database from a backup
-
restore
- Throws:
StardogException
-
checkpoint
Perform a checkpoint operation (list, create, restore) against selected database.- Parameters:
theDatabase- the name of the database for checkpoint operationtheOptions- configuration options for the checkpoint- Returns:
- Throws:
StardogException
-
getUserManager
UserManager getUserManager()Return theUserManagerto be used for user-centric security changes- Returns:
- the UserManager
-
getRoleManager
RoleManager getRoleManager()Return theRoleManagerto be used for role-centric security changes- Returns:
- the RoleManager
-
getPermissionManager
PermissionManager getPermissionManager()Return thePermissionManagerfor changing user & role permissions- Returns:
- the PermissionManager
-
getQueryManager
QueryManager getQueryManager()Return theQueryManagerfor managing running queries -
getProcessManager
com.complexible.stardog.process.ProcessManager getProcessManager()- Returns:
- The
ProcessManagerfor managing running queries
-
getTokenManager
com.complexible.stardog.security.TokenManager getTokenManager()Return a link to the object that will allow clients to interact with JWT bearer tokens- Returns:
- the TokenManager
-
currentStatus
@Deprecated default Map<String,Object> currentStatus(boolean theIncludeDbStatus) throws StardogException Deprecated.UsecurrentStatus(Options)insteadReturn the server status information, including Server/Protocols running, Stardog Home path, OS, etc- Parameters:
theIncludeDbStatus- if true thedatabase statusinformation about each database is included- Returns:
- the Metadata with the DBMS information
- Throws:
StardogException- if there was an error retrieving the DBMS info
-
currentStatus
Return the server status information, including Server/Protocols running, Stardog Home path, OS, etc. Theoptionscan be used to configure which metrics will be included in the results.- Parameters:
theOptions- the options for customizing the metrics that will be returned- Returns:
- the metrics showing the server status
- Throws:
StardogException- if there was an error retrieving the DBMS info- See Also:
-
getStoredQueries
StoredQueries getStoredQueries()Returns the stored queries in this server. Returned object can be used to add and remove stored queries.- Returns:
- the stored queries
- Since:
- 4.2
-
getStoredFunctions
com.complexible.stardog.StoredFunctions getStoredFunctions()Returns the stored functions in this server. Returned object can be used to add and remove stored functions.- Returns:
- the stored functions
- Since:
- 5.1
-
verify
Verify the integrity of specified database's index.- Parameters:
theDb- the name of the database to verify- Returns:
- the output of the verify operation
- Throws:
StardogException- if there was an error while verifying the database
-
whoami
String whoami()Returns the username associated with this connection. Useful when API tokens are used to establish the connection.- Returns:
- username
-
generateDiagnosticReport
File generateDiagnosticReport(com.complexible.stardog.util.report.DiagnosticsReport theDiagnosticsReport) -
getLogs
Generates a zip file containing the server logs.- Parameters:
options- thelog options- Returns:
- a zip file containing the server logs
-
transactionLog
void transactionLog(String theDb, AdminConnection.TxLogRange range, AdminConnection.StreamConsumer theStreamConsumer) Streams the transaction log for the specified database and range to the provided consumer.- Parameters:
theDb- the database namerange- the range of transaction logs to retrievetheStreamConsumer- the consumer that will process the transaction log stream
-
replayTransactionLog
Replays the transaction log from the specified file into the given database.- Parameters:
theDb- the database nametheInputLog- the input log file pathvalidateLog- Validates that the first transaction in the log matches the last transaction in the database before replaying.- Returns:
- The output of the tx replay operation
-
backup(String, Optional, Options)instead