-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
495 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from typing import ( | ||
Dict, | ||
List, | ||
Optional, | ||
) | ||
|
||
from pydantic import Field | ||
|
||
from pyiceberg.typedef import IcebergBaseModel | ||
|
||
|
||
class BlobMetadata(IcebergBaseModel): | ||
type: str | ||
snapshot_id: int = Field(alias="snapshot-id") | ||
sequence_number: int = Field(alias="sequence-number") | ||
fields: List[int] | ||
properties: Optional[Dict[str, str]] = None | ||
|
||
|
||
class StatisticsFile(IcebergBaseModel): | ||
snapshot_id: int = Field(alias="snapshot-id") | ||
statistics_path: str = Field(alias="statistics-path") | ||
file_size_in_bytes: int = Field(alias="file-size-in-bytes") | ||
file_footer_size_in_bytes: int = Field(alias="file-footer-size-in-bytes") | ||
key_metadata: Optional[str] = Field(alias="key-metadata", default=None) | ||
blob_metadata: List[BlobMetadata] = Field(alias="blob-metadata") | ||
|
||
|
||
def filter_statistics_by_snapshot_id( | ||
statistics: List[StatisticsFile], | ||
reject_snapshot_id: int, | ||
) -> List[StatisticsFile]: | ||
return [stat for stat in statistics if stat.snapshot_id != reject_snapshot_id] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
from typing import TYPE_CHECKING, Tuple | ||
|
||
from pyiceberg.table.statistics import StatisticsFile | ||
from pyiceberg.table.update import ( | ||
RemoveStatisticsUpdate, | ||
SetStatisticsUpdate, | ||
TableUpdate, | ||
UpdatesAndRequirements, | ||
UpdateTableMetadata, | ||
) | ||
|
||
if TYPE_CHECKING: | ||
from pyiceberg.table import Transaction | ||
|
||
|
||
class UpdateStatistics(UpdateTableMetadata["UpdateStatistics"]): | ||
""" | ||
Run statistics management operations using APIs. | ||
APIs include set_statistics and remove statistics operations. | ||
Use table.update_statistics().<operation>().commit() to run a specific operation. | ||
Use table.update_statistics().<operation-one>().<operation-two>().commit() to run multiple operations. | ||
Pending changes are applied on commit. | ||
We can also use context managers to make more changes. For example: | ||
with table.update_statistics() as update: | ||
update.set_statistics(snapshot_id=1, statistics_file=statistics_file) | ||
update.remove_statistics(snapshot_id=2) | ||
""" | ||
|
||
_updates: Tuple[TableUpdate, ...] = () | ||
|
||
def __init__(self, transaction: "Transaction") -> None: | ||
super().__init__(transaction) | ||
|
||
def set_statistics(self, snapshot_id: int, statistics_file: StatisticsFile) -> "UpdateStatistics": | ||
self._updates += ( | ||
SetStatisticsUpdate( | ||
snapshot_id=snapshot_id, | ||
statistics=statistics_file, | ||
), | ||
) | ||
|
||
return self | ||
|
||
def remove_statistics(self, snapshot_id: int) -> "UpdateStatistics": | ||
self._updates = ( | ||
RemoveStatisticsUpdate( | ||
snapshot_id=snapshot_id, | ||
), | ||
) | ||
|
||
return self | ||
|
||
def _commit(self) -> UpdatesAndRequirements: | ||
return self._updates, () |
Oops, something went wrong.