-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Append op for index files, manifests, and column stats.
- Loading branch information
coufon
committed
Dec 20, 2023
1 parent
967a7e8
commit 321a7dd
Showing
17 changed files
with
889 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed 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 | ||
# | ||
# https://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. | ||
# |
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,215 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed 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 | ||
# | ||
# https://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. | ||
# | ||
"""Index manifest files writer and reader implementation.""" | ||
|
||
from typing import Any, Dict, List, Optional, Tuple | ||
|
||
import pyarrow as pa | ||
import pyarrow.parquet as pq | ||
|
||
import space.core.proto.metadata_pb2 as meta | ||
from space.core.schema.arrow import field_id, field_id_to_column_id_dict | ||
from space.core.utils import paths | ||
|
||
# Manifest file fields. | ||
_FILE_PATH_FIELD = '_FILE' | ||
_NUM_ROWS_FIELD = '_NUM_ROWS' | ||
_INDEX_COMPRESSED_BYTES_FIELD = '_INDEX_COMPRESSED_BYTES' | ||
_INDEX_UNCOMPRESSED_BYTES_FIELD = '_INDEX_UNCOMPRESSED_BYTES' | ||
|
||
# Constants for building column statistics field name. | ||
_STATS_FIELD = "_STATS" | ||
_MIN_FIELD = "_MIN" | ||
_MAX_FIELD = "_MAX" | ||
|
||
|
||
def _stats_field_name(name: str) -> str: | ||
"""Column stats struct field name.""" | ||
return f"{_STATS_FIELD}_{name}" | ||
|
||
|
||
def _stats_subfields(type_: pa.DataType) -> List[pa.Field]: | ||
"""Column stats struct field sub-fields.""" | ||
return [pa.field(_MIN_FIELD, type_), pa.field(_MAX_FIELD, type_)] | ||
|
||
|
||
def _manifest_schema( | ||
schema: pa.Schema, primary_keys: List[str] | ||
) -> Tuple[pa.Schema, List[Tuple[int, pa.DataType]]]: | ||
"""Build the index manifest file schema, based on storage schema.""" | ||
primary_keys_ = set(primary_keys) | ||
|
||
fields = [(_FILE_PATH_FIELD, pa.utf8()), (_NUM_ROWS_FIELD, pa.int64()), | ||
(_INDEX_COMPRESSED_BYTES_FIELD, pa.int64()), | ||
(_INDEX_UNCOMPRESSED_BYTES_FIELD, pa.int64())] | ||
|
||
# Fields to collect Parquet column statistics: [(field_id, type), ...]. | ||
stats_fields: List[Tuple[int, pa.DataType]] = [] | ||
|
||
for f in schema: | ||
if f.name not in primary_keys_: | ||
continue | ||
|
||
fields.append( | ||
(_stats_field_name(f.name), pa.struct(_stats_subfields(f.type)))) | ||
stats_fields.append((field_id(f), f.type)) | ||
|
||
return pa.schema(fields), stats_fields # type: ignore[arg-type] | ||
|
||
|
||
class _FieldStats: | ||
"""A local cache for merging stats from row groups.""" | ||
|
||
def __init__(self, type_: pa.DataType): | ||
self._fields = _stats_subfields(type_) | ||
|
||
self._min: Any = None | ||
self._max: Any = None | ||
|
||
# _min and _max cache the stats of one file; after finalizing they are | ||
# moved to _min_list and _max_list that cache stats of all files. | ||
self._min_list: List[Any] = [] | ||
self._max_list: List[Any] = [] | ||
|
||
def merge(self, stats: pq.Statistics) -> None: | ||
"""Merge the cached stats with a new stats.""" | ||
if self._min is None or stats.min < self._min: | ||
self._min = stats.min | ||
|
||
if self._max is None or stats.max > self._max: | ||
self._max = stats.max | ||
|
||
def finish(self) -> None: | ||
"""Finialize the stats for the current file.""" | ||
self._min_list.append(self._min) | ||
self._max_list.append(self._max) | ||
|
||
self._min = None | ||
self._max = None | ||
|
||
def to_arrow(self) -> pa.Array: | ||
"""Return the Arrow format of the stats.""" | ||
return pa.StructArray.from_arrays( | ||
[self._min_list, self._max_list], # type: ignore[arg-type] | ||
fields=self._fields) | ||
|
||
|
||
# pylint: disable=too-many-instance-attributes | ||
class IndexManifestWriter: | ||
"""Writer of index manifest files.""" | ||
|
||
def __init__(self, metadata_dir: str, schema: pa.Schema, | ||
primary_keys: List[str]): | ||
""" | ||
Args: | ||
metadata_dir: full directory path of metadata folder. | ||
schema: the storage schema, either logical or physical schema works | ||
because only primary key fields are used for column stats. | ||
primary_keys: un-enforced storage primary keys; index fields only. | ||
""" | ||
self._metadata_dir = metadata_dir | ||
self._manifest_schema, self._stats_fields = _manifest_schema( | ||
schema, primary_keys) | ||
|
||
# Cache manifest file field values in memory. | ||
self._file_paths: List[str] = [] | ||
self._num_rows: List[int] = [] | ||
self._index_compressed_bytes: List[int] = [] | ||
self._index_uncompressed_bytes: List[int] = [] | ||
|
||
# Caches for column stats. | ||
self._stats_column_ids: List[int] = [] | ||
# Key is column ID. | ||
self._field_stats_dict: Dict[int, _FieldStats] = {} | ||
|
||
column_id_dict = field_id_to_column_id_dict(schema) | ||
for field_id_, type_ in self._stats_fields: | ||
column_id = column_id_dict[field_id_] | ||
self._stats_column_ids.append(column_id) | ||
self._field_stats_dict[column_id] = _FieldStats(type_) | ||
|
||
# Cache for manifest data to materialize. | ||
self._manifest_data: List[pa.Table] = [] | ||
|
||
def write(self, file_path: str, | ||
parquet_metadata: pq.FileMetaData) -> meta.StorageStatistics: | ||
"""Write a new manifest row. | ||
Args: | ||
file_path: a relative file path of the index file. | ||
parquet_metadata: the Parquet metadata of the index file. | ||
Returns: | ||
The storage statistics of the index file. | ||
""" | ||
self._file_paths.append(file_path) | ||
self._num_rows.append(parquet_metadata.num_rows) | ||
|
||
index_compressed_bytes = 0 | ||
index_uncompressed_bytes = 0 | ||
|
||
for rg in range(parquet_metadata.num_row_groups): | ||
rg_metadata = parquet_metadata.row_group(rg) | ||
for column_id, field_stats in self._field_stats_dict.items(): | ||
column_stats = rg_metadata.column(column_id) | ||
field_stats.merge(column_stats.statistics) | ||
index_compressed_bytes += column_stats.total_compressed_size | ||
index_uncompressed_bytes += column_stats.total_uncompressed_size | ||
|
||
for field_stats in self._field_stats_dict.values(): | ||
field_stats.finish() | ||
|
||
self._index_compressed_bytes.append(index_compressed_bytes) | ||
self._index_uncompressed_bytes.append(index_uncompressed_bytes) | ||
|
||
return meta.StorageStatistics( | ||
num_rows=parquet_metadata.num_rows, | ||
index_compressed_bytes=index_compressed_bytes, | ||
index_uncompressed_bytes=index_uncompressed_bytes) | ||
|
||
def finish(self) -> Optional[str]: | ||
"""Materialize the manifest file and return the file path.""" | ||
# Convert cached manifest data to Arrow. | ||
if self._file_paths: | ||
arrays = [ | ||
self._file_paths, self._num_rows, self._index_compressed_bytes, | ||
self._index_uncompressed_bytes | ||
] | ||
|
||
for column_id in self._stats_column_ids: | ||
arrays.append(self._field_stats_dict[column_id].to_arrow()) | ||
|
||
self._manifest_data.append( | ||
pa.Table.from_arrays( | ||
arrays=arrays, | ||
schema=self._manifest_schema)) # type: ignore[call-arg] | ||
|
||
manifest_data = pa.concat_tables(self._manifest_data) | ||
if manifest_data.num_rows == 0: | ||
return None | ||
|
||
return _write_index_manifest(self._metadata_dir, self._manifest_schema, | ||
manifest_data) | ||
|
||
|
||
def _write_index_manifest(metadata_dir: str, schema: pa.Schema, | ||
data: pa.Table) -> str: | ||
# TODO: currently assume this file is small, so always write a single file. | ||
file_path = paths.new_index_manifest_path(metadata_dir) | ||
writer = pq.ParquetWriter(file_path, schema) | ||
writer.write_table(data) | ||
|
||
writer.close() | ||
return file_path |
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,14 @@ | ||
# Copyright 2023 Google LLC | ||
# | ||
# Licensed 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 | ||
# | ||
# https://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. | ||
# |
Oops, something went wrong.