Package org.apache.iceberg
Class PositionDeletesTable
java.lang.Object
org.apache.iceberg.BaseMetadataTable
org.apache.iceberg.PositionDeletesTable
- All Implemented Interfaces:
Serializable
,Table
A
Table
implementation whose Scan
provides PositionDeletesScanTask
, for
reading of position delete files.- See Also:
-
Nested Class Summary
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionCreate a newexpire API
to manage snapshots in this table and commit.Create a newmanage snapshots API
to manage snapshots in this table and commit.Create a newappend API
to add files to this table and commit.Create a newbatch scan
for this table.Create a newdelete API
to replace files in this table and commit.Create a newoverwrite API
to overwrite files by a filter expression.Not recommended: Create a newreplace partitions API
to dynamically overwrite partitions in the table with new data.Create a newrewrite API
to replace files in this table and commit.Create a newrow-level delta API
to remove or replace rows in existing data files.newScan()
Create a newscan
for this table.Create a newtransaction API
to commit multiple table operations at once.Return a map of string properties for this table.Create a newReplaceSortOrder
to set the table sort order and commit the change.Create a newrewrite manifests API
to replace manifests for this table and commit.schema()
Return theschema
for this table.spec()
Return thepartition spec
for this table.specs()
Return a map ofpartition specs
for this table.Create a newUpdateLocation
to update table location and commit the changes.Create a newupdate partition statistics API
to add or remove partition statistics files in this table.Create a newUpdateProperties
to update table properties and commit the changes.Create a newUpdateSchema
to alter the columns of this table and commit the change.Create a newUpdatePartitionSpec
to alter the partition spec of this table and commit the change.Create a newupdate table statistics API
to add or remove statistics files in this table.Methods inherited from class org.apache.iceberg.BaseMetadataTable
currentSnapshot, encryption, history, io, location, locationProvider, name, partitionStatisticsFiles, refresh, refs, schemas, snapshot, snapshots, sortOrder, sortOrders, statisticsFiles, table, toString, uuid
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.iceberg.Table
newFastAppend, newIncrementalAppendScan, newIncrementalChangelogScan, snapshot
-
Field Details
-
PARTITION
- See Also:
-
SPEC_ID
- See Also:
-
DELETE_FILE_PATH
- See Also:
-
-
Method Details
-
newScan
Description copied from interface:Table
Create a newscan
for this table.Once a table scan is created, it can be refined to project columns and filter data.
- Returns:
- a table scan for this table
-
newBatchScan
Description copied from interface:Table
Create a newbatch scan
for this table.Once a batch scan is created, it can be refined to project columns and filter data.
- Returns:
- a batch scan for this table
-
schema
Description copied from interface:Table
Return theschema
for this table.- Returns:
- this table's schema
-
spec
Description copied from interface:Table
Return thepartition spec
for this table.- Specified by:
spec
in interfaceTable
- Overrides:
spec
in classBaseMetadataTable
- Returns:
- this table's partition spec
-
specs
Description copied from interface:Table
Return a map ofpartition specs
for this table.- Specified by:
specs
in interfaceTable
- Overrides:
specs
in classBaseMetadataTable
- Returns:
- this table's partition specs map
-
properties
Description copied from interface:Table
Return a map of string properties for this table.- Specified by:
properties
in interfaceTable
- Overrides:
properties
in classBaseMetadataTable
- Returns:
- this table's properties map
-
updateSchema
Description copied from interface:Table
Create a newUpdateSchema
to alter the columns of this table and commit the change.- Specified by:
updateSchema
in interfaceTable
- Returns:
- a new
UpdateSchema
-
updateSpec
Description copied from interface:Table
Create a newUpdatePartitionSpec
to alter the partition spec of this table and commit the change.- Specified by:
updateSpec
in interfaceTable
- Returns:
- a new
UpdatePartitionSpec
-
updateProperties
Description copied from interface:Table
Create a newUpdateProperties
to update table properties and commit the changes.- Specified by:
updateProperties
in interfaceTable
- Returns:
- a new
UpdateProperties
-
replaceSortOrder
Description copied from interface:Table
Create a newReplaceSortOrder
to set the table sort order and commit the change.- Specified by:
replaceSortOrder
in interfaceTable
- Returns:
- a new
ReplaceSortOrder
-
updateLocation
Description copied from interface:Table
Create a newUpdateLocation
to update table location and commit the changes.- Specified by:
updateLocation
in interfaceTable
- Returns:
- a new
UpdateLocation
-
newAppend
Description copied from interface:Table
Create a newappend API
to add files to this table and commit.- Specified by:
newAppend
in interfaceTable
- Returns:
- a new
AppendFiles
-
newRewrite
Description copied from interface:Table
Create a newrewrite API
to replace files in this table and commit.- Specified by:
newRewrite
in interfaceTable
- Returns:
- a new
RewriteFiles
-
rewriteManifests
Description copied from interface:Table
Create a newrewrite manifests API
to replace manifests for this table and commit.- Specified by:
rewriteManifests
in interfaceTable
- Returns:
- a new
RewriteManifests
-
newOverwrite
Description copied from interface:Table
Create a newoverwrite API
to overwrite files by a filter expression.- Specified by:
newOverwrite
in interfaceTable
- Returns:
- a new
OverwriteFiles
-
newRowDelta
Description copied from interface:Table
Create a newrow-level delta API
to remove or replace rows in existing data files.- Specified by:
newRowDelta
in interfaceTable
- Returns:
- a new
RowDelta
-
newReplacePartitions
Description copied from interface:Table
Not recommended: Create a newreplace partitions API
to dynamically overwrite partitions in the table with new data.This is provided to implement SQL compatible with Hive table operations but is not recommended. Instead, use the
overwrite API
to explicitly overwrite data.- Specified by:
newReplacePartitions
in interfaceTable
- Returns:
- a new
ReplacePartitions
-
newDelete
Description copied from interface:Table
Create a newdelete API
to replace files in this table and commit.- Specified by:
newDelete
in interfaceTable
- Returns:
- a new
DeleteFiles
-
updateStatistics
Description copied from interface:Table
Create a newupdate table statistics API
to add or remove statistics files in this table.- Specified by:
updateStatistics
in interfaceTable
- Returns:
- a new
UpdateStatistics
-
updatePartitionStatistics
Description copied from interface:Table
Create a newupdate partition statistics API
to add or remove partition statistics files in this table.- Specified by:
updatePartitionStatistics
in interfaceTable
- Returns:
- a new
UpdatePartitionStatistics
-
expireSnapshots
Description copied from interface:Table
Create a newexpire API
to manage snapshots in this table and commit.- Specified by:
expireSnapshots
in interfaceTable
- Returns:
- a new
ExpireSnapshots
-
manageSnapshots
Description copied from interface:Table
Create a newmanage snapshots API
to manage snapshots in this table and commit.- Specified by:
manageSnapshots
in interfaceTable
- Returns:
- a new
ManageSnapshots
-
newTransaction
Description copied from interface:Table
Create a newtransaction API
to commit multiple table operations at once.- Specified by:
newTransaction
in interfaceTable
- Returns:
- a new
Transaction
-