Package org.apache.iceberg.dell.ecs
Class EcsCatalog
- java.lang.Object
-
- org.apache.iceberg.BaseMetastoreCatalog
-
- org.apache.iceberg.dell.ecs.EcsCatalog
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,Catalog,SupportsNamespaces,Configurable<java.lang.Object>
public class EcsCatalog extends BaseMetastoreCatalog implements java.io.Closeable, SupportsNamespaces, Configurable<java.lang.Object>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.iceberg.BaseMetastoreCatalog
BaseMetastoreCatalog.BaseMetastoreCatalogTableBuilder
-
Nested classes/interfaces inherited from interface org.apache.iceberg.catalog.Catalog
Catalog.TableBuilder
-
-
Constructor Summary
Constructors Constructor Description EcsCatalog()No-arg constructor to load the catalog dynamically.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidcreateNamespace(Namespace namespace, java.util.Map<java.lang.String,java.lang.String> properties)Create a namespace in the catalog.protected java.lang.StringdefaultWarehouseLocation(TableIdentifier tableIdentifier)booleandropNamespace(Namespace namespace)Drop a namespace.booleandropTable(TableIdentifier identifier, boolean purge)Remove table object.voidinitialize(java.lang.String name, java.util.Map<java.lang.String,java.lang.String> properties)Initialize a catalog given a custom name and a map of catalog properties.java.util.List<Namespace>listNamespaces(Namespace namespace)List namespaces from the namespace.java.util.List<TableIdentifier>listTables(Namespace namespace)Iterate all table objects with the namespace prefix.java.util.Map<java.lang.String,java.lang.String>loadNamespaceMetadata(Namespace namespace)Load namespace properties.java.lang.Stringname()Return the name for this catalog.booleannamespaceExists(Namespace namespace)Checks whether the Namespace exists.protected TableOperationsnewTableOps(TableIdentifier tableIdentifier)java.util.Optional<com.emc.object.s3.S3ObjectMetadata>objectMetadata(org.apache.iceberg.dell.ecs.EcsURI uri)Get S3 object metadata which include E-Tag, user metadata and so on.booleanremoveProperties(Namespace namespace, java.util.Set<java.lang.String> properties)Remove a set of property keys from a namespace in the catalog.voidrenameTable(TableIdentifier from, TableIdentifier to)Table rename will only move table object, the data objects will still be in-place.voidsetConf(java.lang.Object conf)booleansetProperties(Namespace namespace, java.util.Map<java.lang.String,java.lang.String> properties)Set a collection of properties on a namespace in the catalog.booleantableExists(TableIdentifier identifier)Check whether table exists.booleanupdateProperties(Namespace namespace, java.util.function.Consumer<java.util.Map<java.lang.String,java.lang.String>> propertiesFn)-
Methods inherited from class org.apache.iceberg.BaseMetastoreCatalog
buildTable, fullTableName, isValidIdentifier, loadTable, properties, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.iceberg.catalog.Catalog
createTable, createTable, createTable, createTable, dropTable, invalidateTable, newCreateTableTransaction, newCreateTableTransaction, newCreateTableTransaction, newCreateTableTransaction, newReplaceTableTransaction, newReplaceTableTransaction, newReplaceTableTransaction, newReplaceTableTransaction, registerTable
-
Methods inherited from interface org.apache.iceberg.catalog.SupportsNamespaces
createNamespace, listNamespaces
-
-
-
-
Constructor Detail
-
EcsCatalog
public EcsCatalog()
No-arg constructor to load the catalog dynamically.All fields are initialized by calling
initialize(String, Map)later.
-
-
Method Detail
-
initialize
public void initialize(java.lang.String name, java.util.Map<java.lang.String,java.lang.String> properties)Description copied from interface:CatalogInitialize a catalog given a custom name and a map of catalog properties.A custom Catalog implementation must have a no-arg constructor. A compute engine like Spark or Flink will first initialize the catalog without any arguments, and then call this method to complete catalog initialization with properties passed into the engine.
- Specified by:
initializein interfaceCatalog- Parameters:
name- a custom name for the catalogproperties- catalog properties
-
newTableOps
protected TableOperations newTableOps(TableIdentifier tableIdentifier)
- Specified by:
newTableOpsin classBaseMetastoreCatalog
-
defaultWarehouseLocation
protected java.lang.String defaultWarehouseLocation(TableIdentifier tableIdentifier)
- Specified by:
defaultWarehouseLocationin classBaseMetastoreCatalog
-
listTables
public java.util.List<TableIdentifier> listTables(Namespace namespace)
Iterate all table objects with the namespace prefix.- Specified by:
listTablesin interfaceCatalog- Parameters:
namespace- a namespace- Returns:
- a list of identifiers for tables
-
dropTable
public boolean dropTable(TableIdentifier identifier, boolean purge)
Remove table object. If the purge flag is set, remove all data objects.
-
renameTable
public void renameTable(TableIdentifier from, TableIdentifier to)
Table rename will only move table object, the data objects will still be in-place.- Specified by:
renameTablein interfaceCatalog- Parameters:
from- identifier of the table to renameto- new table name
-
createNamespace
public void createNamespace(Namespace namespace, java.util.Map<java.lang.String,java.lang.String> properties)
Description copied from interface:SupportsNamespacesCreate a namespace in the catalog.- Specified by:
createNamespacein interfaceSupportsNamespaces- Parameters:
namespace- a multi-part namespaceproperties- a string Map of properties for the given namespace
-
listNamespaces
public java.util.List<Namespace> listNamespaces(Namespace namespace) throws NoSuchNamespaceException
Description copied from interface:SupportsNamespacesList namespaces from the namespace.For example, if table a.b.t exists, use 'SELECT NAMESPACE IN a' this method must return Namepace.of("a","b")
Namespace.- Specified by:
listNamespacesin interfaceSupportsNamespaces- Returns:
- a List of namespace
Namespacenames - Throws:
NoSuchNamespaceException- If the namespace does not exist (optional)
-
loadNamespaceMetadata
public java.util.Map<java.lang.String,java.lang.String> loadNamespaceMetadata(Namespace namespace) throws NoSuchNamespaceException
Load namespace properties.- Specified by:
loadNamespaceMetadatain interfaceSupportsNamespaces- Parameters:
namespace- a namespace.Namespace- Returns:
- a string map of properties for the given namespace
- Throws:
NoSuchNamespaceException- If the namespace does not exist (optional)
-
dropNamespace
public boolean dropNamespace(Namespace namespace) throws NamespaceNotEmptyException
Description copied from interface:SupportsNamespacesDrop a namespace. If the namespace exists and was dropped, this will return true.- Specified by:
dropNamespacein interfaceSupportsNamespaces- Parameters:
namespace- a namespace.Namespace- Returns:
- true if the namespace was dropped, false otherwise.
- Throws:
NamespaceNotEmptyException- If the namespace is not empty
-
setProperties
public boolean setProperties(Namespace namespace, java.util.Map<java.lang.String,java.lang.String> properties) throws NoSuchNamespaceException
Description copied from interface:SupportsNamespacesSet a collection of properties on a namespace in the catalog.Properties that are not in the given map are not modified or removed by this method.
- Specified by:
setPropertiesin interfaceSupportsNamespaces- Parameters:
namespace- a namespace.Namespaceproperties- a collection of metadata to apply to the namespace- Throws:
NoSuchNamespaceException- If the namespace does not exist (optional)
-
removeProperties
public boolean removeProperties(Namespace namespace, java.util.Set<java.lang.String> properties) throws NoSuchNamespaceException
Description copied from interface:SupportsNamespacesRemove a set of property keys from a namespace in the catalog.Properties that are not in the given set are not modified or removed by this method.
- Specified by:
removePropertiesin interfaceSupportsNamespaces- Parameters:
namespace- a namespace.Namespaceproperties- a collection of metadata to apply to the namespace- Throws:
NoSuchNamespaceException- If the namespace does not exist (optional)
-
updateProperties
public boolean updateProperties(Namespace namespace, java.util.function.Consumer<java.util.Map<java.lang.String,java.lang.String>> propertiesFn) throws NoSuchNamespaceException
- Throws:
NoSuchNamespaceException
-
namespaceExists
public boolean namespaceExists(Namespace namespace)
Description copied from interface:SupportsNamespacesChecks whether the Namespace exists.- Specified by:
namespaceExistsin interfaceSupportsNamespaces- Parameters:
namespace- a namespace.Namespace- Returns:
- true if the Namespace exists, false otherwise
-
tableExists
public boolean tableExists(TableIdentifier identifier)
Description copied from interface:CatalogCheck whether table exists.- Specified by:
tableExistsin interfaceCatalog- Parameters:
identifier- a table identifier- Returns:
- true if the table exists, false otherwise
-
objectMetadata
public java.util.Optional<com.emc.object.s3.S3ObjectMetadata> objectMetadata(org.apache.iceberg.dell.ecs.EcsURI uri)
Get S3 object metadata which include E-Tag, user metadata and so on.
-
name
public java.lang.String name()
Description copied from interface:CatalogReturn the name for this catalog.
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Throws:
java.io.IOException
-
setConf
public void setConf(java.lang.Object conf)
- Specified by:
setConfin interfaceConfigurable<java.lang.Object>
-
-