Package | Description |
---|---|
org.apache.paimon | |
org.apache.paimon.catalog | |
org.apache.paimon.hive | |
org.apache.paimon.rest |
Modifier and Type | Method and Description |
---|---|
static <T> List<T> |
PagedList.listAllFromPagedApi(java.util.function.Function<String,PagedList<T>> pagedApi)
Util method to list all from paged api.
|
Modifier and Type | Method and Description |
---|---|
PagedList<String> |
AbstractCatalog.listDatabasesPaged(Integer maxResults,
String pageToken,
String databaseNamePattern) |
PagedList<String> |
Catalog.listDatabasesPaged(Integer maxResults,
String pageToken,
String databaseNamePattern)
Get paged list names of all databases in this catalog.
|
PagedList<String> |
DelegateCatalog.listDatabasesPaged(Integer maxResults,
String pageToken,
String databaseNamePattern) |
PagedList<Partition> |
AbstractCatalog.listPartitionsPaged(Identifier identifier,
Integer maxResults,
String pageToken,
String partitionNamePattern) |
PagedList<Partition> |
Catalog.listPartitionsPaged(Identifier identifier,
Integer maxResults,
String pageToken,
String partitionNamePattern)
Get paged partition list of the table, the partition list will be returned in descending
order.
|
PagedList<Partition> |
DelegateCatalog.listPartitionsPaged(Identifier identifier,
Integer maxResults,
String pageToken,
String partitionNamePattern) |
PagedList<Snapshot> |
AbstractCatalog.listSnapshotsPaged(Identifier identifier,
Integer maxResults,
String pageToken) |
PagedList<Snapshot> |
Catalog.listSnapshotsPaged(Identifier identifier,
Integer maxResults,
String pageToken)
Get paged snapshot list of the table, the snapshot list will be returned in descending order.
|
PagedList<Snapshot> |
DelegateCatalog.listSnapshotsPaged(Identifier identifier,
Integer maxResults,
String pageToken) |
PagedList<Table> |
AbstractCatalog.listTableDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
PagedList<Table> |
Catalog.listTableDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern)
Get paged list of table details under this database.
|
PagedList<Table> |
DelegateCatalog.listTableDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
protected PagedList<Table> |
AbstractCatalog.listTableDetailsPagedImpl(String databaseName,
Integer maxResults,
String pageToken) |
PagedList<String> |
AbstractCatalog.listTablesPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
PagedList<String> |
Catalog.listTablesPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern)
Get paged list names of tables under this database.
|
PagedList<String> |
DelegateCatalog.listTablesPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
default PagedList<String> |
Catalog.listTablesPagedGlobally(String databaseNamePattern,
String tableNamePattern,
Integer maxResults,
String pageToken)
Gets an array of tables for a catalog.
|
PagedList<String> |
DelegateCatalog.listTablesPagedGlobally(String databaseNamePattern,
String tableNamePattern,
Integer maxResults,
String pageToken) |
default PagedList<View> |
Catalog.listViewDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern)
Get paged list view details under this database.
|
PagedList<View> |
DelegateCatalog.listViewDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
default PagedList<String> |
Catalog.listViewsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern)
Get paged list names of views under this database.
|
PagedList<String> |
DelegateCatalog.listViewsPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
default PagedList<String> |
Catalog.listViewsPagedGlobally(String databaseNamePattern,
String viewNamePattern,
Integer maxResults,
String pageToken)
Gets an array of views for a catalog.
|
PagedList<String> |
DelegateCatalog.listViewsPagedGlobally(String databaseNamePattern,
String viewNamePattern,
Integer maxResults,
String pageToken) |
Modifier and Type | Method and Description |
---|---|
PagedList<View> |
HiveCatalog.listViewDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern) |
PagedList<String> |
HiveCatalog.listViewsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern) |
Modifier and Type | Method and Description |
---|---|
PagedList<String> |
RESTCatalog.listDatabasesPaged(Integer maxResults,
String pageToken,
String databaseNamePattern) |
PagedList<String> |
RESTApi.listDatabasesPaged(Integer maxResults,
String pageToken,
String databaseNamePattern)
List databases.
|
PagedList<Partition> |
RESTCatalog.listPartitionsPaged(Identifier identifier,
Integer maxResults,
String pageToken,
String partitionNamePattern) |
PagedList<Partition> |
RESTApi.listPartitionsPaged(Identifier identifier,
Integer maxResults,
String pageToken,
String partitionNamePattern)
List partitions for a table.
|
PagedList<Snapshot> |
RESTCatalog.listSnapshotsPaged(Identifier identifier,
Integer maxResults,
String pageToken) |
PagedList<Snapshot> |
RESTApi.listSnapshotsPaged(Identifier identifier,
Integer maxResults,
String pageToken)
Get paged snapshot list of the table, the snapshot list will be returned in descending order.
|
PagedList<Table> |
RESTCatalog.listTableDetailsPaged(String db,
Integer maxResults,
String pageToken,
String tableNamePattern) |
PagedList<GetTableResponse> |
RESTApi.listTableDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern)
List table details for a database.
|
PagedList<String> |
RESTCatalog.listTablesPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern) |
PagedList<String> |
RESTApi.listTablesPaged(String databaseName,
Integer maxResults,
String pageToken,
String tableNamePattern)
List tables for a database.
|
PagedList<String> |
RESTCatalog.listTablesPagedGlobally(String databaseNamePattern,
String tableNamePattern,
Integer maxResults,
String pageToken) |
PagedList<String> |
RESTApi.listTablesPagedGlobally(String databaseNamePattern,
String tableNamePattern,
Integer maxResults,
String pageToken)
List table for a catalog.
|
PagedList<View> |
RESTCatalog.listViewDetailsPaged(String db,
Integer maxResults,
String pageToken,
String viewNamePattern) |
PagedList<GetViewResponse> |
RESTApi.listViewDetailsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern)
List view details.
|
PagedList<String> |
RESTCatalog.listViewsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern) |
PagedList<String> |
RESTApi.listViewsPaged(String databaseName,
Integer maxResults,
String pageToken,
String viewNamePattern)
List views.
|
PagedList<String> |
RESTCatalog.listViewsPagedGlobally(String databaseNamePattern,
String viewNamePattern,
Integer maxResults,
String pageToken) |
PagedList<String> |
RESTApi.listViewsPagedGlobally(String databaseNamePattern,
String viewNamePattern,
Integer maxResults,
String pageToken)
List views for a catalog.
|
Copyright © 2023–2025 The Apache Software Foundation. All rights reserved.