Interface NamespaceOperations
public interface NamespaceOperations
Provides an API for administering namespaces
All tables exist in a namespace. The default namespace has no name, and is used if an explicit
namespace is not specified. Fully qualified table names look like "namespaceName.tableName".
Tables in the default namespace are fully qualified simply as "tableName".
- Since:
- 1.6.0
-
Method Summary
Modifier and TypeMethodDescriptionint
addConstraint
(String namespace, String constraintClassName) Add a new constraint to a namespace.void
attachIterator
(String namespace, IteratorSetting setting) Add an iterator to a namespace on all scopes.void
attachIterator
(String namespace, IteratorSetting setting, EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope> scopes) Add an iterator to a namespace on the given scopes.void
checkIteratorConflicts
(String namespace, IteratorSetting setting, EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope> scopes) Check whether a given iterator configuration conflicts with existing configuration; in particular, determine if the name or priority are already in use for the specified scopes.void
Create an empty namespace with no initial configuration.Returns the name of the default namespacevoid
Delete an empty namespaceboolean
A method to check if a namespace exists in Accumulo.getIteratorSetting
(String namespace, String name, org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope scope) Get the settings for an iterator.getProperties
(String namespace) Gets properties of a namespace, which are inherited by tables in this namespace.list()
Retrieve a list of namespaces in Accumulo.listConstraints
(String namespace) List constraints on a namespace with their assigned numbers.listIterators
(String namespace) Get a list of iterators for this namespace.Get a mapping of namespace name to internal namespace id.void
removeConstraint
(String namespace, int id) Remove a constraint from a namespace.void
removeIterator
(String namespace, String name, EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope> scopes) Remove an iterator from a namespace by name.void
removeProperty
(String namespace, String property) Removes a property from a namespace.void
Rename a namespacevoid
setProperty
(String namespace, String property, String value) Sets a property on a namespace which applies to all tables in the namespace.Returns the name of the system reserved namespaceboolean
testClassLoad
(String namespace, String className, String asTypeName) Test to see if the instance can load the given class as the given type.
-
Method Details
-
systemNamespace
String systemNamespace()Returns the name of the system reserved namespace- Returns:
- the name of the system namespace
- Since:
- 1.6.0
-
defaultNamespace
String defaultNamespace()Returns the name of the default namespace- Returns:
- the name of the default namespace
- Since:
- 1.6.0
-
list
Retrieve a list of namespaces in Accumulo.- Returns:
- List of namespaces in accumulo
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permission- Since:
- 1.6.0
-
exists
A method to check if a namespace exists in Accumulo.- Parameters:
namespace
- the name of the namespace- Returns:
- true if the namespace exists
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permission- Since:
- 1.6.0
-
create
void create(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceExistsException Create an empty namespace with no initial configuration. Valid names for a namespace contain letters, numbers, and the underscore character.- Parameters:
namespace
- the name of the namespace- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceExistsException
- if the specified namespace already exists- Since:
- 1.6.0
-
delete
void delete(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException, NamespaceNotEmptyException Delete an empty namespace- Parameters:
namespace
- the name of the namespace- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't existNamespaceNotEmptyException
- if the namespaces still contains tables- Since:
- 1.6.0
-
rename
void rename(String oldNamespaceName, String newNamespaceName) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException, NamespaceExistsException Rename a namespace- Parameters:
oldNamespaceName
- the old namespace namenewNamespaceName
- the new namespace name- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the old namespace does not existNamespaceExistsException
- if the new namespace already exists- Since:
- 1.6.0
-
setProperty
void setProperty(String namespace, String property, String value) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Sets a property on a namespace which applies to all tables in the namespace. Note that it may take a few seconds to propagate the change everywhere.- Parameters:
namespace
- the name of the namespaceproperty
- the name of a per-table propertyvalue
- the value to set a per-table property to- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
removeProperty
void removeProperty(String namespace, String property) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Removes a property from a namespace. Note that it may take a few seconds to propagate the change everywhere.- Parameters:
namespace
- the name of the namespaceproperty
- the name of a per-table property- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
getProperties
Iterable<Map.Entry<String,String>> getProperties(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Gets properties of a namespace, which are inherited by tables in this namespace. Note that recently changed properties may not be available immediately.- Parameters:
namespace
- the name of the namespace- Returns:
- all properties visible by this namespace (system and per-table properties). Note that recently changed properties may not be visible immediately.
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
namespaceIdMap
Get a mapping of namespace name to internal namespace id.- Returns:
- the map from namespace name to internal namespace id
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permission- Since:
- 1.6.0
-
attachIterator
void attachIterator(String namespace, IteratorSetting setting) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Add an iterator to a namespace on all scopes.- Parameters:
namespace
- the name of the namespacesetting
- object specifying the properties of the iterator- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
attachIterator
void attachIterator(String namespace, IteratorSetting setting, EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope> scopes) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Add an iterator to a namespace on the given scopes.- Parameters:
namespace
- the name of the namespacesetting
- object specifying the properties of the iteratorscopes
- the set of scopes the iterator should apply to- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
removeIterator
void removeIterator(String namespace, String name, EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope> scopes) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Remove an iterator from a namespace by name.- Parameters:
namespace
- the name of the namespacename
- the name of the iteratorscopes
- the scopes of the iterator- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
getIteratorSetting
IteratorSetting getIteratorSetting(String namespace, String name, org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope scope) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Get the settings for an iterator.- Parameters:
namespace
- the name of the namespacename
- the name of the iteratorscope
- the scope of the iterator- Returns:
- the settings for this iterator
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
listIterators
Map<String,EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope>> listIterators(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Get a list of iterators for this namespace.- Parameters:
namespace
- the name of the namespace- Returns:
- a set of iterator names
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
checkIteratorConflicts
void checkIteratorConflicts(String namespace, IteratorSetting setting, EnumSet<org.apache.accumulo.core.iterators.IteratorUtil.IteratorScope> scopes) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Check whether a given iterator configuration conflicts with existing configuration; in particular, determine if the name or priority are already in use for the specified scopes. If so, an IllegalArgumentException is thrown, wrapped in an AccumuloException.- Parameters:
namespace
- the name of the namespacesetting
- object specifying the properties of the iteratorscopes
- the scopes of the iterator- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
addConstraint
int addConstraint(String namespace, String constraintClassName) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Add a new constraint to a namespace.- Parameters:
namespace
- the name of the namespaceconstraintClassName
- the full name of the constraint class- Returns:
- the unique id number assigned to the constraint
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
removeConstraint
void removeConstraint(String namespace, int id) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Remove a constraint from a namespace.- Parameters:
namespace
- the name of the namespaceid
- the unique id number assigned to the constraint- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
listConstraints
Map<String,Integer> listConstraints(String namespace) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException List constraints on a namespace with their assigned numbers.- Parameters:
namespace
- the name of the namespace- Returns:
- a map from constraint class name to assigned number
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-
testClassLoad
boolean testClassLoad(String namespace, String className, String asTypeName) throws AccumuloException, AccumuloSecurityException, NamespaceNotFoundException Test to see if the instance can load the given class as the given type. This check uses the table classpath property if it is set.- Parameters:
namespace
- the name of the namespaceclassName
- the class to try to loadasTypeName
- the interface or superclass the given class is attempted to load as- Returns:
- true if the instance can load the given class as the given type, false otherwise
- Throws:
AccumuloException
- if a general error occursAccumuloSecurityException
- if the user does not have permissionNamespaceNotFoundException
- if the specified namespace doesn't exist- Since:
- 1.6.0
-