Package alluxio.table.common
Class CatalogPathUtils
- java.lang.Object
-
- alluxio.table.common.CatalogPathUtils
-
public class CatalogPathUtils extends java.lang.ObjectA collection of utility methods for catalog paths. Catalog paths for tables look like: /<catalog base dir>/<dbName1>/tables/<tableName1>/<udbType>/... /_internal_/... /<tableName2>/<udbType>/... /_internal_/... /<catalog base dir>/<dbName2>/tables/<tableName3>/<udbType>/... /_internal_/...
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static alluxio.AlluxioURIgetTablePathInternal(java.lang.String dbName, java.lang.String tableName)static alluxio.AlluxioURIgetTablePathUdb(java.lang.String dbName, java.lang.String tableName, java.lang.String udbType)
-
-
-
Method Detail
-
getTablePathUdb
public static alluxio.AlluxioURI getTablePathUdb(java.lang.String dbName, java.lang.String tableName, java.lang.String udbType)- Parameters:
dbName- the database nametableName- the table nameudbType- the udb type- Returns:
- the AlluxioURI for the path for the specified table
-
getTablePathInternal
public static alluxio.AlluxioURI getTablePathInternal(java.lang.String dbName, java.lang.String tableName)- Parameters:
dbName- the database nametableName- the table name- Returns:
- the AlluxioURI for the path for the specified table, for internal data
-
-