public abstract class Catalog
extends Object
SparkSession.catalog
.
Constructor and Description |
---|
Catalog() |
Modifier and Type | Method and Description |
---|---|
abstract void |
cacheTable(String tableName)
Caches the specified table in-memory.
|
abstract void |
clearCache()
Removes all cached tables from the in-memory cache.
|
abstract Dataset<Row> |
createExternalTable(String tableName,
String path)
:: Experimental ::
Creates an external table from the given path and returns the corresponding DataFrame.
|
abstract Dataset<Row> |
createExternalTable(String tableName,
String source,
java.util.Map<String,String> options)
:: Experimental ::
Creates an external table from the given path based on a data source and a set of options.
|
abstract Dataset<Row> |
createExternalTable(String tableName,
String source,
scala.collection.immutable.Map<String,String> options)
:: Experimental ::
(Scala-specific)
Creates an external table from the given path based on a data source and a set of options.
|
abstract Dataset<Row> |
createExternalTable(String tableName,
String path,
String source)
:: Experimental ::
Creates an external table from the given path based on a data source
and returns the corresponding DataFrame.
|
abstract Dataset<Row> |
createExternalTable(String tableName,
String source,
StructType schema,
java.util.Map<String,String> options)
:: Experimental ::
Create an external table from the given path based on a data source, a schema and
a set of options.
|
abstract Dataset<Row> |
createExternalTable(String tableName,
String source,
StructType schema,
scala.collection.immutable.Map<String,String> options)
:: Experimental ::
(Scala-specific)
Create an external table from the given path based on a data source, a schema and
a set of options.
|
abstract String |
currentDatabase()
Returns the current default database in this session.
|
abstract void |
dropTempView(String viewName)
Drops the temporary view with the given view name in the catalog.
|
abstract boolean |
isCached(String tableName)
Returns true if the table is currently cached in-memory.
|
abstract Dataset<Column> |
listColumns(String tableName)
Returns a list of columns for the given table in the current database or
the given temporary table.
|
abstract Dataset<Column> |
listColumns(String dbName,
String tableName)
Returns a list of columns for the given table in the specified database.
|
abstract Dataset<Database> |
listDatabases()
Returns a list of databases available across all sessions.
|
abstract Dataset<Function> |
listFunctions()
Returns a list of functions registered in the current database.
|
abstract Dataset<Function> |
listFunctions(String dbName)
Returns a list of functions registered in the specified database.
|
abstract Dataset<Table> |
listTables()
Returns a list of tables in the current database.
|
abstract Dataset<Table> |
listTables(String dbName)
Returns a list of tables in the specified database.
|
abstract void |
refreshByPath(String path)
Invalidate and refresh all the cached data (and the associated metadata) for any dataframe that
contains the given data source path.
|
abstract void |
refreshTable(String tableName)
Invalidate and refresh all the cached metadata of the given table.
|
abstract void |
setCurrentDatabase(String dbName)
Sets the current default database in this session.
|
abstract void |
uncacheTable(String tableName)
Removes the specified table from the in-memory cache.
|
public abstract String currentDatabase()
public abstract void setCurrentDatabase(String dbName)
dbName
- (undocumented)public abstract Dataset<Database> listDatabases()
public abstract Dataset<Table> listTables()
public abstract Dataset<Table> listTables(String dbName) throws AnalysisException
dbName
- (undocumented)AnalysisException
public abstract Dataset<Function> listFunctions()
public abstract Dataset<Function> listFunctions(String dbName) throws AnalysisException
dbName
- (undocumented)AnalysisException
public abstract Dataset<Column> listColumns(String tableName) throws AnalysisException
tableName
- (undocumented)AnalysisException
public abstract Dataset<Column> listColumns(String dbName, String tableName) throws AnalysisException
dbName
- (undocumented)tableName
- (undocumented)AnalysisException
public abstract Dataset<Row> createExternalTable(String tableName, String path)
tableName
- (undocumented)path
- (undocumented)public abstract Dataset<Row> createExternalTable(String tableName, String path, String source)
tableName
- (undocumented)path
- (undocumented)source
- (undocumented)public abstract Dataset<Row> createExternalTable(String tableName, String source, java.util.Map<String,String> options)
tableName
- (undocumented)source
- (undocumented)options
- (undocumented)public abstract Dataset<Row> createExternalTable(String tableName, String source, scala.collection.immutable.Map<String,String> options)
tableName
- (undocumented)source
- (undocumented)options
- (undocumented)public abstract Dataset<Row> createExternalTable(String tableName, String source, StructType schema, java.util.Map<String,String> options)
tableName
- (undocumented)source
- (undocumented)schema
- (undocumented)options
- (undocumented)public abstract Dataset<Row> createExternalTable(String tableName, String source, StructType schema, scala.collection.immutable.Map<String,String> options)
tableName
- (undocumented)source
- (undocumented)schema
- (undocumented)options
- (undocumented)public abstract void dropTempView(String viewName)
viewName
- the name of the view to be dropped.public abstract boolean isCached(String tableName)
tableName
- (undocumented)public abstract void cacheTable(String tableName)
tableName
- (undocumented)public abstract void uncacheTable(String tableName)
tableName
- (undocumented)public abstract void clearCache()
public abstract void refreshTable(String tableName)
If this table is cached as an InMemoryRelation, drop the original cached version and make the new version cached lazily.
tableName
- (undocumented)public abstract void refreshByPath(String path)
path
- (undocumented)