deltacat 2.0.0b9__py3-none-any.whl → 2.0.0b11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- deltacat/__init__.py +41 -16
- deltacat/api.py +478 -123
- deltacat/aws/s3u.py +2 -2
- deltacat/benchmarking/benchmark_engine.py +4 -2
- deltacat/benchmarking/conftest.py +1 -1
- deltacat/benchmarking/test_benchmark_pipeline.py +6 -4
- deltacat/catalog/__init__.py +62 -5
- deltacat/catalog/main/impl.py +26 -10
- deltacat/catalog/model/catalog.py +165 -109
- deltacat/catalog/model/properties.py +25 -24
- deltacat/compute/__init__.py +14 -0
- deltacat/compute/converter/constants.py +5 -0
- deltacat/compute/converter/converter_session.py +78 -36
- deltacat/compute/converter/model/convert_input.py +24 -4
- deltacat/compute/converter/model/convert_result.py +61 -0
- deltacat/compute/converter/model/converter_session_params.py +52 -10
- deltacat/compute/converter/pyiceberg/overrides.py +181 -62
- deltacat/compute/converter/steps/convert.py +84 -36
- deltacat/compute/converter/steps/dedupe.py +25 -4
- deltacat/compute/converter/utils/convert_task_options.py +42 -13
- deltacat/compute/converter/utils/iceberg_columns.py +5 -0
- deltacat/compute/converter/utils/io.py +82 -11
- deltacat/compute/converter/utils/s3u.py +13 -4
- deltacat/compute/jobs/client.py +406 -0
- deltacat/constants.py +5 -6
- deltacat/env.py +10 -0
- deltacat/examples/basic_logging.py +6 -6
- deltacat/examples/{iceberg → experimental/iceberg}/iceberg_bucket_writer.py +3 -5
- deltacat/examples/{iceberg → experimental/iceberg}/iceberg_reader.py +2 -4
- deltacat/examples/hello_world.py +4 -2
- deltacat/examples/indexer/indexer.py +163 -0
- deltacat/examples/indexer/job_runner.py +198 -0
- deltacat/experimental/catalog/iceberg/__init__.py +6 -0
- deltacat/{catalog → experimental/catalog}/iceberg/iceberg_catalog_config.py +1 -1
- deltacat/{catalog → experimental/catalog}/iceberg/impl.py +27 -9
- deltacat/{storage → experimental/storage}/iceberg/iceberg_scan_planner.py +1 -1
- deltacat/{storage → experimental/storage}/iceberg/impl.py +1 -1
- deltacat/experimental/storage/rivulet/__init__.py +11 -0
- deltacat/{storage → experimental/storage}/rivulet/arrow/serializer.py +7 -4
- deltacat/{storage → experimental/storage}/rivulet/dataset.py +13 -9
- deltacat/{storage → experimental/storage}/rivulet/dataset_executor.py +12 -20
- deltacat/experimental/storage/rivulet/feather/__init__.py +7 -0
- deltacat/{storage → experimental/storage}/rivulet/feather/file_reader.py +7 -5
- deltacat/{storage → experimental/storage}/rivulet/feather/serializer.py +4 -4
- deltacat/{storage → experimental/storage}/rivulet/fs/file_provider.py +3 -3
- deltacat/{storage → experimental/storage}/rivulet/fs/file_store.py +2 -2
- deltacat/{storage → experimental/storage}/rivulet/fs/output_file.py +1 -1
- deltacat/{storage → experimental/storage}/rivulet/logical_plan.py +4 -4
- deltacat/{storage → experimental/storage}/rivulet/metastore/delta.py +1 -1
- deltacat/{storage → experimental/storage}/rivulet/metastore/json_sst.py +3 -3
- deltacat/{storage → experimental/storage}/rivulet/metastore/sst.py +2 -2
- deltacat/{storage → experimental/storage}/rivulet/metastore/sst_interval_tree.py +3 -3
- deltacat/experimental/storage/rivulet/parquet/__init__.py +7 -0
- deltacat/{storage → experimental/storage}/rivulet/parquet/file_reader.py +7 -5
- deltacat/{storage → experimental/storage}/rivulet/parquet/serializer.py +4 -4
- deltacat/{storage → experimental/storage}/rivulet/reader/block_scanner.py +20 -9
- deltacat/{storage → experimental/storage}/rivulet/reader/data_reader.py +3 -3
- deltacat/{storage → experimental/storage}/rivulet/reader/data_scan.py +5 -3
- deltacat/{storage → experimental/storage}/rivulet/reader/dataset_metastore.py +4 -4
- deltacat/{storage → experimental/storage}/rivulet/reader/dataset_reader.py +8 -6
- deltacat/{storage → experimental/storage}/rivulet/reader/pyarrow_data_reader.py +4 -1
- deltacat/{storage → experimental/storage}/rivulet/reader/reader_type_registrar.py +4 -4
- deltacat/{storage → experimental/storage}/rivulet/schema/schema.py +1 -1
- deltacat/{storage → experimental/storage}/rivulet/serializer.py +1 -1
- deltacat/{storage → experimental/storage}/rivulet/serializer_factory.py +9 -5
- deltacat/experimental/storage/rivulet/shard/__init__.py +0 -0
- deltacat/experimental/storage/rivulet/shard/range_shard.py +129 -0
- deltacat/experimental/storage/rivulet/writer/__init__.py +0 -0
- deltacat/{storage → experimental/storage}/rivulet/writer/memtable_dataset_writer.py +20 -9
- deltacat/io/__init__.py +13 -0
- deltacat/io/dataset/__init__.py +0 -0
- deltacat/io/dataset/deltacat_dataset.py +91 -0
- deltacat/io/datasink/__init__.py +0 -0
- deltacat/io/datasink/deltacat_datasink.py +207 -0
- deltacat/io/datasource/__init__.py +0 -0
- deltacat/io/datasource/deltacat_datasource.py +580 -0
- deltacat/io/reader/__init__.py +0 -0
- deltacat/io/reader/deltacat_read_api.py +172 -0
- deltacat/storage/__init__.py +2 -0
- deltacat/storage/model/expression/__init__.py +47 -0
- deltacat/storage/model/expression/expression.py +656 -0
- deltacat/storage/model/expression/visitor.py +248 -0
- deltacat/storage/model/metafile.py +74 -42
- deltacat/storage/model/scan/push_down.py +32 -5
- deltacat/storage/model/shard.py +6 -2
- deltacat/storage/model/types.py +5 -3
- deltacat/tests/_io/reader/__init__.py +0 -0
- deltacat/tests/_io/reader/test_deltacat_read_api.py +0 -0
- deltacat/tests/catalog/data/__init__.py +0 -0
- deltacat/tests/catalog/main/__init__.py +0 -0
- deltacat/tests/catalog/main/test_catalog_impl_namespace_operations.py +130 -0
- deltacat/tests/catalog/main/test_catalog_impl_table_operations.py +436 -0
- deltacat/tests/catalog/model/__init__.py +0 -0
- deltacat/tests/catalog/model/test_table_definition.py +16 -0
- deltacat/tests/catalog/test_catalogs.py +52 -98
- deltacat/tests/catalog/test_default_catalog_impl.py +1 -2
- deltacat/tests/compute/converter/test_convert_session.py +209 -46
- deltacat/tests/daft/__init__.py +0 -0
- deltacat/tests/daft/test_model.py +97 -0
- deltacat/tests/experimental/__init__.py +0 -0
- deltacat/tests/experimental/catalog/__init__.py +0 -0
- deltacat/tests/experimental/catalog/iceberg/__init__.py +0 -0
- deltacat/tests/experimental/catalog/iceberg/test_iceberg_catalog.py +71 -0
- deltacat/tests/experimental/daft/__init__.py +0 -0
- deltacat/tests/experimental/daft/test_deltacat_daft_integration.py +136 -0
- deltacat/tests/experimental/storage/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/__init__.py +0 -0
- deltacat/tests/{storage → experimental/storage}/rivulet/conftest.py +3 -3
- deltacat/tests/experimental/storage/rivulet/fs/__init__.py +0 -0
- deltacat/tests/{storage → experimental/storage}/rivulet/fs/test_file_location_provider.py +3 -2
- deltacat/tests/experimental/storage/rivulet/reader/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/reader/query_expression.py +80 -0
- deltacat/tests/experimental/storage/rivulet/reader/test_data_scan.py +119 -0
- deltacat/tests/experimental/storage/rivulet/reader/test_dataset_metastore.py +71 -0
- deltacat/tests/experimental/storage/rivulet/schema/__init__.py +0 -0
- deltacat/tests/{storage → experimental/storage}/rivulet/schema/test_schema.py +1 -1
- deltacat/tests/experimental/storage/rivulet/shard/__init__.py +0 -0
- deltacat/tests/experimental/storage/rivulet/shard/test_range_shard.py +162 -0
- deltacat/tests/{storage → experimental/storage}/rivulet/test_dataset.py +6 -4
- deltacat/tests/{storage → experimental/storage}/rivulet/test_manifest.py +5 -5
- deltacat/tests/{storage → experimental/storage}/rivulet/test_sst_interval_tree.py +5 -5
- deltacat/tests/{storage → experimental/storage}/rivulet/test_utils.py +8 -6
- deltacat/tests/experimental/storage/rivulet/writer/__init__.py +0 -0
- deltacat/tests/{storage → experimental/storage}/rivulet/writer/test_dataset_write_then_read.py +11 -9
- deltacat/tests/{storage → experimental/storage}/rivulet/writer/test_dataset_writer.py +2 -2
- deltacat/tests/{storage → experimental/storage}/rivulet/writer/test_memtable_dataset_writer.py +7 -7
- deltacat/tests/local_deltacat_storage/__init__.py +1 -0
- deltacat/tests/storage/model/test_expression.py +327 -0
- deltacat/tests/storage/model/test_shard.py +3 -1
- deltacat/tests/test_deltacat_api.py +50 -9
- deltacat/types/media.py +141 -43
- deltacat/types/tables.py +35 -7
- deltacat/utils/daft.py +531 -5
- deltacat/utils/export.py +3 -1
- deltacat/utils/filesystem.py +39 -9
- deltacat/utils/polars.py +128 -0
- deltacat/utils/pyarrow.py +151 -15
- deltacat/utils/ray_utils/concurrency.py +1 -1
- deltacat/utils/ray_utils/runtime.py +56 -4
- deltacat/utils/url.py +1284 -0
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b11.dist-info}/METADATA +11 -9
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b11.dist-info}/RECORD +168 -123
- deltacat/catalog/iceberg/__init__.py +0 -4
- deltacat/daft/daft_scan.py +0 -111
- deltacat/daft/model.py +0 -258
- deltacat/examples/common/fixtures.py +0 -15
- deltacat/storage/rivulet/__init__.py +0 -11
- deltacat/storage/rivulet/feather/__init__.py +0 -5
- deltacat/storage/rivulet/parquet/__init__.py +0 -5
- /deltacat/{daft → compute/jobs}/__init__.py +0 -0
- /deltacat/examples/{common → experimental}/__init__.py +0 -0
- /deltacat/examples/{iceberg → experimental/iceberg}/__init__.py +0 -0
- /deltacat/{storage/iceberg → examples/indexer}/__init__.py +0 -0
- /deltacat/{storage/rivulet/arrow → examples/indexer/aws}/__init__.py +0 -0
- /deltacat/{storage/rivulet/fs → examples/indexer/gcp}/__init__.py +0 -0
- /deltacat/{storage/rivulet/metastore → experimental/catalog}/__init__.py +0 -0
- /deltacat/{catalog → experimental/catalog}/iceberg/overrides.py +0 -0
- /deltacat/{storage/rivulet/reader → experimental/storage}/__init__.py +0 -0
- /deltacat/{storage/rivulet/schema → experimental/storage/iceberg}/__init__.py +0 -0
- /deltacat/{storage → experimental/storage}/iceberg/model.py +0 -0
- /deltacat/{storage/rivulet/writer → experimental/storage/rivulet/arrow}/__init__.py +0 -0
- /deltacat/{tests/storage/rivulet → experimental/storage/rivulet/fs}/__init__.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/fs/input_file.py +0 -0
- /deltacat/{tests/storage/rivulet/fs → experimental/storage/rivulet/metastore}/__init__.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/mvp/Table.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/mvp/__init__.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/parquet/data_reader.py +0 -0
- /deltacat/{tests/storage/rivulet/schema → experimental/storage/rivulet/reader}/__init__.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/reader/query_expression.py +0 -0
- /deltacat/{tests/storage/rivulet/writer → experimental/storage/rivulet/schema}/__init__.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/schema/datatype.py +0 -0
- /deltacat/{storage → experimental/storage}/rivulet/writer/dataset_writer.py +0 -0
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b11.dist-info}/LICENSE +0 -0
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b11.dist-info}/WHEEL +0 -0
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b11.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: deltacat
|
3
|
-
Version: 2.0.
|
3
|
+
Version: 2.0.0b11
|
4
4
|
Summary: A portable, scalable, fast, and Pythonic Data Lakehouse for AI.
|
5
5
|
Home-page: https://github.com/ray-project/deltacat
|
6
6
|
Author: Ray Team
|
@@ -17,15 +17,17 @@ Description-Content-Type: text/markdown
|
|
17
17
|
License-File: LICENSE
|
18
18
|
Requires-Dist: aws-embedded-metrics==3.2.0
|
19
19
|
Requires-Dist: boto3~=1.34
|
20
|
-
Requires-Dist:
|
20
|
+
Requires-Dist: google-cloud-storage
|
21
|
+
Requires-Dist: gcsfs==2025.3.2
|
22
|
+
Requires-Dist: daft==0.4.15
|
21
23
|
Requires-Dist: intervaltree==3.1.0
|
22
|
-
Requires-Dist: numpy==1.
|
23
|
-
Requires-Dist: pandas==
|
24
|
+
Requires-Dist: numpy==1.22.4
|
25
|
+
Requires-Dist: pandas==2.2.3
|
26
|
+
Requires-Dist: polars==1.28.1
|
24
27
|
Requires-Dist: pyarrow==16.0.0
|
25
28
|
Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3
|
26
29
|
Requires-Dist: pymemcache==4.0.0
|
27
|
-
Requires-Dist: ray
|
28
|
-
Requires-Dist: s3fs==2024.5.0
|
30
|
+
Requires-Dist: ray[default]==2.46.0
|
29
31
|
Requires-Dist: tenacity==8.2.3
|
30
32
|
Requires-Dist: typing-extensions==4.6.1
|
31
33
|
Requires-Dist: redis==4.6.0
|
@@ -34,6 +36,8 @@ Provides-Extra: iceberg
|
|
34
36
|
Requires-Dist: pyiceberg[glue]>=0.9.0; extra == "iceberg"
|
35
37
|
Requires-Dist: pyiceberg[hive]>=0.9.0; extra == "iceberg"
|
36
38
|
Requires-Dist: pyiceberg[sql-sqlite]>=0.9.0; extra == "iceberg"
|
39
|
+
Provides-Extra: s3fs
|
40
|
+
Requires-Dist: s3fs==2025.3.2; extra == "s3fs"
|
37
41
|
|
38
42
|
<p align="center">
|
39
43
|
<img src="media/deltacat-logo-alpha-750.png" alt="DeltaCAT Logo" style="width:55%; height:auto; text-align: center;">
|
@@ -58,8 +62,6 @@ DeltaCAT provides four high-level components:
|
|
58
62
|
|
59
63
|
DeltaCAT is rapidly evolving. Usage instructions will be posted here soon!
|
60
64
|
|
61
|
-
For now, feel free to peruse some of our examples
|
62
|
-
* https://github.com/ray-project/deltacat/tree/2.0/deltacat/examples/rivulet
|
63
|
-
* https://github.com/ray-project/deltacat/tree/2.0/deltacat/examples/iceberg
|
65
|
+
For now, feel free to peruse some of our [examples](https://github.com/ray-project/deltacat/tree/2.0/deltacat/examples/).
|
64
66
|
|
65
67
|
|
@@ -1,38 +1,34 @@
|
|
1
|
-
deltacat/__init__.py,sha256=
|
1
|
+
deltacat/__init__.py,sha256=_r2iNgTB-UbRKhQooHH8Q_Ul_sb6dScSkIHSYsrZ_7E,2835
|
2
2
|
deltacat/annotations.py,sha256=9lBi34DpIV_RPjCCK2Aiz_6nMyd-e-_CfQ1XtdRQQlM,1196
|
3
|
-
deltacat/api.py,sha256=
|
4
|
-
deltacat/constants.py,sha256=
|
5
|
-
deltacat/env.py,sha256=
|
3
|
+
deltacat/api.py,sha256=8wXFzNWDUYqy40ZtRex4outDPiFy8K8KHF-PSxMsZsw,18396
|
4
|
+
deltacat/constants.py,sha256=ggHddITClnrcrzeGQkSas81UeyXGrF1DmLZQG-oNpik,3395
|
5
|
+
deltacat/env.py,sha256=BJdTt8od3IVR4RMLjBxy4oRUHM7Lb16AzMOz8-hpwOI,2303
|
6
6
|
deltacat/exceptions.py,sha256=K44xpmWNptIpM2gEWX6cy8Ko0vU1G7qDwwILDW8NWKM,13938
|
7
7
|
deltacat/logs.py,sha256=vlKFsid9D6dpX9JlIP67fRZy18SjA08XMEfn0QWrxt0,9513
|
8
8
|
deltacat/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
deltacat/aws/clients.py,sha256=4eQvpkV1PzFfxog7EriuglOGGwNFHR5hbGYpjsNNPxk,6949
|
10
10
|
deltacat/aws/constants.py,sha256=hcYAUot4ahq9GXCMClQiuYCtiDs5XaOebdUoKg4V84k,1222
|
11
|
-
deltacat/aws/s3u.py,sha256=
|
11
|
+
deltacat/aws/s3u.py,sha256=OQYDh0MqwH6UPSU62fzy0g226OiPeFndjsnwFkd8GGc,28572
|
12
12
|
deltacat/benchmarking/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
13
|
-
deltacat/benchmarking/benchmark_engine.py,sha256=
|
13
|
+
deltacat/benchmarking/benchmark_engine.py,sha256=cLoENLTJNAO01Xfsyf14B7xvE4KW1FCyDNcyZp3AUdE,3377
|
14
14
|
deltacat/benchmarking/benchmark_parquet_reads.py,sha256=2BctkvXAYcAxokLwMSTu4TQ6-HGqzkgYcVEAzPN2QQo,1709
|
15
15
|
deltacat/benchmarking/benchmark_report.py,sha256=Bm-7NQFiQM0f47tQ9jMjcaQ8GBNxZ-m8Z130wgwTldk,2719
|
16
16
|
deltacat/benchmarking/benchmark_suite.py,sha256=RbZR1p0U0MU0HkGR06MosV6TKysooQD0HQne2rUAIds,316
|
17
|
-
deltacat/benchmarking/conftest.py,sha256=
|
18
|
-
deltacat/benchmarking/test_benchmark_pipeline.py,sha256=
|
17
|
+
deltacat/benchmarking/conftest.py,sha256=WRfEz46G8PyLp9E3RNpv_jpys7AyGiC-GFpUYs08f9M,2414
|
18
|
+
deltacat/benchmarking/test_benchmark_pipeline.py,sha256=MD6Af3EJ1V80l9xqCbl4N5uEjI8thMb2zXgJIrs2Ofg,3851
|
19
19
|
deltacat/benchmarking/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
deltacat/benchmarking/data/random_row_generator.py,sha256=-D1RFIQ6jE6KBmWGN6We8smhYxWQ19N2Pi8Z3iwBCiM,3227
|
21
21
|
deltacat/benchmarking/data/row_generator.py,sha256=PqtYdbgznqKVfidnR40gwET7yHov2N7Esd8bEY90ALU,333
|
22
|
-
deltacat/catalog/__init__.py,sha256=
|
22
|
+
deltacat/catalog/__init__.py,sha256=8tC0n1Y1LSs-tePt1TAPg9i_kNGxo0WgyFSlGFYxxhw,1500
|
23
23
|
deltacat/catalog/delegate.py,sha256=x3jj_T61gyExuAnbDqhU6smbaAbIN4UxrVMZuBEOg0A,10447
|
24
24
|
deltacat/catalog/interface.py,sha256=YB-qNBFsWupqyWJuHr7eQ-_MshhZZ5HpLphoZ64yn2g,12244
|
25
|
-
deltacat/catalog/iceberg/__init__.py,sha256=LOENcLTQQlu_694MvRhMd2TQDLzwfg2vz0D8DuVO3M8,190
|
26
|
-
deltacat/catalog/iceberg/iceberg_catalog_config.py,sha256=LfHxv8pk-YmTRQy5LvKFzwSqZ8ek2Y6v0KY7xihhIN0,786
|
27
|
-
deltacat/catalog/iceberg/impl.py,sha256=c_ONnLLyh8Vyqo5PusQSHySQ92iM4Qgk-rucHMfdd7s,14288
|
28
|
-
deltacat/catalog/iceberg/overrides.py,sha256=WmM2mxf7ihDl8anb5GzBxo5-sxBkot8ZSRTxDpaauRA,2687
|
29
25
|
deltacat/catalog/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
deltacat/catalog/main/impl.py,sha256
|
26
|
+
deltacat/catalog/main/impl.py,sha256=-thwtB19f45Hh2zlenXMcRRrKDWvjbGU10OagiVpYsI,23681
|
31
27
|
deltacat/catalog/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
-
deltacat/catalog/model/catalog.py,sha256=
|
33
|
-
deltacat/catalog/model/properties.py,sha256=
|
28
|
+
deltacat/catalog/model/catalog.py,sha256=qgIw5faIOdy1Tbn6JJv0J-3gXXGmVY7tTOp5IDvg5Og,11148
|
29
|
+
deltacat/catalog/model/properties.py,sha256=UraiKC99UlZh1ev4UbydQbBaa8-L5QhgSxiMaMbxSE0,3894
|
34
30
|
deltacat/catalog/model/table_definition.py,sha256=mKmwFd2qKlj7ZH4AdZwU3bEcFtzpGvl0mXuWjqLUgBw,1842
|
35
|
-
deltacat/compute/__init__.py,sha256=
|
31
|
+
deltacat/compute/__init__.py,sha256=Yopyz3mokk-HtV9CDjQFCluvHbI7UiOPZYVtapUu13A,247
|
36
32
|
deltacat/compute/compactor/__init__.py,sha256=ivpOPve1yKi3Vz3tVgp-eeFMNEeUSf-dlRJNSCM85sE,1022
|
37
33
|
deltacat/compute/compactor/compaction_session.py,sha256=YthBYNpj6qvr6SqfVfXTy5ylKFOo8zUKI3bn4tHt0e8,27766
|
38
34
|
deltacat/compute/compactor/repartition_session.py,sha256=ujR-CtHIcRw8b4DHhO1m6_6CpVeN-GnAYoZ890w0igw,7260
|
@@ -92,25 +88,28 @@ deltacat/compute/compactor_v2/utils/merge.py,sha256=EV_iKhNc3WflgfLW1Q46dXUvyClx
|
|
92
88
|
deltacat/compute/compactor_v2/utils/primary_key_index.py,sha256=QOMwWxGhZ7VWa3oE6InM4thR5pbjmT7ttNXvx_IiKjo,11676
|
93
89
|
deltacat/compute/compactor_v2/utils/task_options.py,sha256=W0jyWIIZ0tcSAGp8mhpnu1G8p3rmX4d3juCPpAJxnDM,12649
|
94
90
|
deltacat/compute/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
|
-
deltacat/compute/converter/constants.py,sha256=
|
96
|
-
deltacat/compute/converter/converter_session.py,sha256=
|
91
|
+
deltacat/compute/converter/constants.py,sha256=8bavgMWtlfFmI3UPrbRJY5CyfVk_xNzUznx83CxPwNU,431
|
92
|
+
deltacat/compute/converter/converter_session.py,sha256=IxbPH4tAt4c8fHvjuk58MkMJimH1BYLeNIFmXw5VPmw,7803
|
97
93
|
deltacat/compute/converter/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
|
-
deltacat/compute/converter/model/convert_input.py,sha256=
|
94
|
+
deltacat/compute/converter/model/convert_input.py,sha256=DuthWEXjV2oflqeOP6hJkww8LwIJUtn77MoUvJEdXYM,2822
|
99
95
|
deltacat/compute/converter/model/convert_input_files.py,sha256=cC2gCWnmlYeMRa2vl1HpSdCndjcNRFxExynhkQ1T8FE,2155
|
100
|
-
deltacat/compute/converter/model/
|
96
|
+
deltacat/compute/converter/model/convert_result.py,sha256=Wmw8W1dDvwT_35sGkfSj3enzxvyPAiwUFiDKwccRIWs,2003
|
97
|
+
deltacat/compute/converter/model/converter_session_params.py,sha256=eG9JHoAYOdMnXfb2xbbO7PKqU2Wfbxvm8zJ5LE2FPIM,4980
|
101
98
|
deltacat/compute/converter/pyiceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
99
|
deltacat/compute/converter/pyiceberg/catalog.py,sha256=IKio3i7JSUQGUnGxgVoKqay4ebsVQxJRy3rSOZCOM3s,1987
|
103
|
-
deltacat/compute/converter/pyiceberg/overrides.py,sha256=
|
100
|
+
deltacat/compute/converter/pyiceberg/overrides.py,sha256=MJ77EO6brke7do7P5rAL_nTUsIOlsK-QeZnMSxycFug,9713
|
104
101
|
deltacat/compute/converter/pyiceberg/update_snapshot_overrides.py,sha256=YguylurzfWK5wmj9pg56s7TI0yzwow1PDRFVH_WOc3I,9944
|
105
102
|
deltacat/compute/converter/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
|
-
deltacat/compute/converter/steps/convert.py,sha256=
|
107
|
-
deltacat/compute/converter/steps/dedupe.py,sha256=
|
103
|
+
deltacat/compute/converter/steps/convert.py,sha256=qLXi183aOb8uQnvrc_FblYnQrMBTlcKcXzAQdDrCaPI,10390
|
104
|
+
deltacat/compute/converter/steps/dedupe.py,sha256=CAJX-DP3zJJP88CjIFLAy0vIfMG7peqCvkesTbdT9UU,2918
|
108
105
|
deltacat/compute/converter/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
|
-
deltacat/compute/converter/utils/convert_task_options.py,sha256=
|
106
|
+
deltacat/compute/converter/utils/convert_task_options.py,sha256=nVebli5MioF-nwJxsverNbRTw3ehLTojfW_AUxwZNos,4601
|
110
107
|
deltacat/compute/converter/utils/converter_session_utils.py,sha256=0uzbQE3gwps8TTsawlbVKvGmMKOWQS_Cjd_Hk--Pfbo,4334
|
111
|
-
deltacat/compute/converter/utils/iceberg_columns.py,sha256=
|
112
|
-
deltacat/compute/converter/utils/io.py,sha256=
|
113
|
-
deltacat/compute/converter/utils/s3u.py,sha256=
|
108
|
+
deltacat/compute/converter/utils/iceberg_columns.py,sha256=k7ng1LOCU8VUfEHMj6z0l9si-U5pDKll1Sl-4jVBb3E,2425
|
109
|
+
deltacat/compute/converter/utils/io.py,sha256=8ymAFaciRpIhFbe_bl6D-Ozn5HehO5sCKV24DeenNbQ,4218
|
110
|
+
deltacat/compute/converter/utils/s3u.py,sha256=Du5UKB0hdaQmT-yGaFtUVCXB2KTBVXWmKRL2er49KKg,4434
|
111
|
+
deltacat/compute/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
112
|
+
deltacat/compute/jobs/client.py,sha256=xWhZUpBNoSFa7s0MxTbqJ0OKHHiB1O3SIbM8gVJZaq8,14750
|
114
113
|
deltacat/compute/merge_on_read/__init__.py,sha256=ckbgngmqPjYBYz_NySsR1vNTOb_hNpeL1sYkZKvBI9M,214
|
115
114
|
deltacat/compute/merge_on_read/daft.py,sha256=1oC38u5ig_aTrq7EzyWBo8Ui54rb6yERYMk-vEFbpxM,1400
|
116
115
|
deltacat/compute/merge_on_read/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -130,33 +129,92 @@ deltacat/compute/stats/models/delta_stats.py,sha256=hBith8_hbF9TVr6HocLAt6RJ_kZZ
|
|
130
129
|
deltacat/compute/stats/models/delta_stats_cache_result.py,sha256=mbJYxpZd5jaER_BWrCD2hROFy3p1nNdBrj66nUpc6io,1624
|
131
130
|
deltacat/compute/stats/models/manifest_entry_stats.py,sha256=NCDAe2nPDEI4kOkuwNkRFgGPS-rqQaQqLuaLoKk20KQ,2419
|
132
131
|
deltacat/compute/stats/models/stats_result.py,sha256=XQAlmzhUqRmg4jzEMUAOqcYn1HUOBTMryBH1CCVlet8,3820
|
133
|
-
deltacat/daft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
|
-
deltacat/daft/daft_scan.py,sha256=u0RpSZTujF9ScuFkXBLkEXfG2eMkoww5ypG2Eri0HrU,3778
|
135
|
-
deltacat/daft/model.py,sha256=6NaKkp9R0ruE0K2x-moyARNrQisswUl6TjMeA6YHtBM,9078
|
136
132
|
deltacat/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
-
deltacat/examples/basic_logging.py,sha256=
|
138
|
-
deltacat/examples/hello_world.py,sha256=
|
139
|
-
deltacat/examples/
|
140
|
-
deltacat/examples/
|
141
|
-
deltacat/examples/iceberg/
|
142
|
-
deltacat/examples/iceberg/
|
143
|
-
deltacat/examples/
|
133
|
+
deltacat/examples/basic_logging.py,sha256=Umrum-gvY3gJjDNJ4hOMslMMq9bzeTM-s_DO4dGqJiw,2833
|
134
|
+
deltacat/examples/hello_world.py,sha256=FvxkEDB1qVPJv55Fe1I7Coy0VLYJIisU7ZFYYkw9U2g,525
|
135
|
+
deltacat/examples/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
136
|
+
deltacat/examples/experimental/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
+
deltacat/examples/experimental/iceberg/iceberg_bucket_writer.py,sha256=7v4y_qWLpjB1oT_ZfUXORTF7kWZygUmxmKJoGakLsio,6573
|
138
|
+
deltacat/examples/experimental/iceberg/iceberg_reader.py,sha256=ygnfXiZkVI4MGnbkrAFfHl6eECjVUW2jqz6N5tjJ4Bk,4997
|
139
|
+
deltacat/examples/indexer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
|
+
deltacat/examples/indexer/indexer.py,sha256=A5gfWomVtfu9uRrAB6UbitQ158ZFkviUscSveri1ggs,6334
|
141
|
+
deltacat/examples/indexer/job_runner.py,sha256=M3ZKTcPL5gy1u_E3aZPal2u5INWZlBGDrsRhb5-F7n4,5921
|
142
|
+
deltacat/examples/indexer/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
143
|
+
deltacat/examples/indexer/gcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
144
144
|
deltacat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
|
+
deltacat/experimental/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
146
|
+
deltacat/experimental/catalog/iceberg/__init__.py,sha256=rKZk4_5Yh4k50DVxOMb91VUqE18dn3k8XML80ZX_Z60,225
|
147
|
+
deltacat/experimental/catalog/iceberg/iceberg_catalog_config.py,sha256=W3916LCtSP3IPjOzyY-OKH5sSfqixVjVoANb6WVPhB4,799
|
148
|
+
deltacat/experimental/catalog/iceberg/impl.py,sha256=YDNRa6363XCPQXcPJkLmoq5cc-qIB1wh_BGou0y2t7c,14753
|
149
|
+
deltacat/experimental/catalog/iceberg/overrides.py,sha256=WmM2mxf7ihDl8anb5GzBxo5-sxBkot8ZSRTxDpaauRA,2687
|
145
150
|
deltacat/experimental/daft/__init__.py,sha256=0d1SsgjbDher8TKgS0gSBBdy5TGi01fewiwpG0BMwck,108
|
146
151
|
deltacat/experimental/daft/daft_catalog.py,sha256=112wDqqzdtxmtZVwiZW59MektbRsFMjSRgqYHrUOuok,8396
|
147
|
-
deltacat/
|
152
|
+
deltacat/experimental/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
153
|
+
deltacat/experimental/storage/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
154
|
+
deltacat/experimental/storage/iceberg/iceberg_scan_planner.py,sha256=kraWLzN9zC0_7F7jgtWXo6utPDGaez4CR7JgOgmT-R8,1082
|
155
|
+
deltacat/experimental/storage/iceberg/impl.py,sha256=vF8n_W6fY8SNhYS3abj2k36k3dUruYZm8Ol0L-H2_sg,26326
|
156
|
+
deltacat/experimental/storage/iceberg/model.py,sha256=PbEnOEY5Ni7E5pJA2xL2d-rwLGOWw6eTARBAYFgCzm8,24288
|
157
|
+
deltacat/experimental/storage/rivulet/__init__.py,sha256=X7bYog7c4NFjoGw16AsCasBRNqKH9N7Z9Pc8aFUT2sA,353
|
158
|
+
deltacat/experimental/storage/rivulet/dataset.py,sha256=5eNkHZEK9f1t4R-IatUFtGD-x7jWiRE5aJKOKP6YA6g,28740
|
159
|
+
deltacat/experimental/storage/rivulet/dataset_executor.py,sha256=8KVkXLdnyDVfbtFFGw4x3o-1EHUQt8j8DZkfpI-0jaQ,2772
|
160
|
+
deltacat/experimental/storage/rivulet/logical_plan.py,sha256=jvF4fyrIWHuLnMX-_tBytiGekPRqW1dwB6pbL3agF8s,3316
|
161
|
+
deltacat/experimental/storage/rivulet/serializer.py,sha256=LeyPOKzSa0m5mI__i7OUaVvBTT9T78NQe1hmlgvij_8,1690
|
162
|
+
deltacat/experimental/storage/rivulet/serializer_factory.py,sha256=XDntdBRtHRK9T3lZ0KNVlb5hLudfBXJhgZyPM-4G6OY,1920
|
163
|
+
deltacat/experimental/storage/rivulet/arrow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
|
+
deltacat/experimental/storage/rivulet/arrow/serializer.py,sha256=HlMaNlshxYjCq5wgWVI5ETKtf6vQtl0fpv6Y7X3_hfo,2736
|
165
|
+
deltacat/experimental/storage/rivulet/feather/__init__.py,sha256=rR91gf2z-iux8WNV5equ9FEfenrl_eu3F0PJnxDCnKs,321
|
166
|
+
deltacat/experimental/storage/rivulet/feather/file_reader.py,sha256=SpgJDMw5lHFnQF2X0j1omuh02y1noYQPusgPsKTdlMA,4947
|
167
|
+
deltacat/experimental/storage/rivulet/feather/serializer.py,sha256=Jwcpnlo4fdtzwEdTBnzaOc210asi1wm1JppK8kUX0D8,1596
|
168
|
+
deltacat/experimental/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
169
|
+
deltacat/experimental/storage/rivulet/fs/file_provider.py,sha256=NPEdUnvQ6WDS3I8rWk5j4OKesIj4CR-an2BDDziwlHA,3863
|
170
|
+
deltacat/experimental/storage/rivulet/fs/file_store.py,sha256=OgAXGkSEKY0IR-Bk38tvbcDQ9g1ozGzQxNoCUDl8Yzk,5658
|
171
|
+
deltacat/experimental/storage/rivulet/fs/input_file.py,sha256=2SZdngGUlURg6ier3N-0D7zEySxgerg6EHuj3v0DXJM,1921
|
172
|
+
deltacat/experimental/storage/rivulet/fs/output_file.py,sha256=DRU36N3UpoPtu73RPkhnBBipUmUG6NYMd8lhRL_qCoY,2480
|
173
|
+
deltacat/experimental/storage/rivulet/metastore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
174
|
+
deltacat/experimental/storage/rivulet/metastore/delta.py,sha256=EsaLbPvjlhn-UCwVjs-jIbCJF2qkrueeqZ0hAqgwN-A,6316
|
175
|
+
deltacat/experimental/storage/rivulet/metastore/json_sst.py,sha256=Gjw-R2U-v3q4gbjQ1vXqZjJHdE4y5qIvJNx202ivak4,3278
|
176
|
+
deltacat/experimental/storage/rivulet/metastore/sst.py,sha256=7mOn1OE0FNBSJ7C3CiLPqFXnHBb6LtJcAVgadVY7aHA,2432
|
177
|
+
deltacat/experimental/storage/rivulet/metastore/sst_interval_tree.py,sha256=3MQdduJF4TkSFJf9pMTTM8PofnpUpWkdlf0T1dMkzHY,10722
|
178
|
+
deltacat/experimental/storage/rivulet/mvp/Table.py,sha256=j82_-gF7byXx3a0yBCWVCtYH2H93qKPBD_1qp5GrlAA,3016
|
179
|
+
deltacat/experimental/storage/rivulet/mvp/__init__.py,sha256=28ULboqUHUGJuHjDWQgvG7cyR_ylV8fJ3B_wrsvI1f8,234
|
180
|
+
deltacat/experimental/storage/rivulet/parquet/__init__.py,sha256=1zx5IqSRMWsdW03kVmsphY28aWGzC9Tl-oGeoBUASgo,321
|
181
|
+
deltacat/experimental/storage/rivulet/parquet/data_reader.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
|
+
deltacat/experimental/storage/rivulet/parquet/file_reader.py,sha256=4Z0KTe14VquvqFSIRQlZ971L2RDqc_XkL8qO0OnjZEQ,4430
|
183
|
+
deltacat/experimental/storage/rivulet/parquet/serializer.py,sha256=SpILisUAg8Y--86aU4ZjQ24n_0kXOvEBHui2XC4R2sM,1575
|
184
|
+
deltacat/experimental/storage/rivulet/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
185
|
+
deltacat/experimental/storage/rivulet/reader/block_scanner.py,sha256=qVYCS_Cl7J9c-eQmv0QKxjkuMXL5oJoPAYnyEiFWPaU,15671
|
186
|
+
deltacat/experimental/storage/rivulet/reader/data_reader.py,sha256=kZTv2ErglqtILScvn2i7DDACW_2GcNPmnvuxmO0xdpA,4006
|
187
|
+
deltacat/experimental/storage/rivulet/reader/data_scan.py,sha256=-v4qrHQFHFg57yeweqfmhGuCjo539sQPVyNOvTSMUb4,2773
|
188
|
+
deltacat/experimental/storage/rivulet/reader/dataset_metastore.py,sha256=UupYrzzkv1eccGgLyU_zwnTAVs1J0eYx_GMfOWMeDaM,6249
|
189
|
+
deltacat/experimental/storage/rivulet/reader/dataset_reader.py,sha256=rRc0qB063mHToXZ4idA0lA01zL0xA3hrt-E7o8w699s,6236
|
190
|
+
deltacat/experimental/storage/rivulet/reader/pyarrow_data_reader.py,sha256=xjh0qAdpAuXpXIx7f7jfumofRXjQV0t_Gu61wtQ5u4E,4263
|
191
|
+
deltacat/experimental/storage/rivulet/reader/query_expression.py,sha256=S6EqP2Ru0liWbYws_ZKZz_aTCWJAHEGoZ2MUY5LZQLk,3121
|
192
|
+
deltacat/experimental/storage/rivulet/reader/reader_type_registrar.py,sha256=tIuYUOxOgFEBMNMKIXDqjHSR39IBTHyJpaz2FvwLl6Q,3083
|
193
|
+
deltacat/experimental/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
194
|
+
deltacat/experimental/storage/rivulet/schema/datatype.py,sha256=QKlMwaEuALV6viNnNSRN1PNFUg7edzooEO3Jp901j1I,4370
|
195
|
+
deltacat/experimental/storage/rivulet/schema/schema.py,sha256=zjREiUpSXaRRcdCHstmdaAR2ykAo1uDTbrJcDqmHVSQ,9474
|
196
|
+
deltacat/experimental/storage/rivulet/shard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
|
+
deltacat/experimental/storage/rivulet/shard/range_shard.py,sha256=uuulo-I9A2nXq2gY0qIMVC8yKf4xmVNhDheQ_SFBVFQ,4881
|
198
|
+
deltacat/experimental/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
199
|
+
deltacat/experimental/storage/rivulet/writer/dataset_writer.py,sha256=aLLwhMY9K5DENu_Rtqa3oWUmdPOYrP07BXntBW3pgdo,957
|
200
|
+
deltacat/experimental/storage/rivulet/writer/memtable_dataset_writer.py,sha256=jZJnxyB1PjoKgkoAfQzr-qXNISDcaSURLsbUVu6tImM,10164
|
201
|
+
deltacat/io/__init__.py,sha256=QgARmNDGbOKRV2g5HAG9GKL589zt4WUY3T6E6vWZRWI,382
|
148
202
|
deltacat/io/file_object_store.py,sha256=YoNL3Qla8uLOHaWnyBmIgotjSGAy3Td3Tumah0kk73Y,1868
|
149
203
|
deltacat/io/memcached_object_store.py,sha256=C96t77-4BQe0XZ4vC76Ygi2o1POUoMN4t4BiyPmulz0,10997
|
150
204
|
deltacat/io/object_store.py,sha256=z3Crt8TLyLyoRunOuXAri373TQZKFoz66QHpxGOV82U,1910
|
151
205
|
deltacat/io/ray_plasma_object_store.py,sha256=TyoUPWybE_cSISZ2SQa3YfD93QWMp0r82-6WnoVSmzk,905
|
152
206
|
deltacat/io/redis_object_store.py,sha256=OkbQNq1DUVYA7eupmZTF-9OvXUDTOl6WtEifonA5teg,4862
|
153
207
|
deltacat/io/s3_object_store.py,sha256=IxvLUvyQZ1w1oYwN9RvRgmKR0Dw56-GggYJw1UCyhBg,1911
|
154
|
-
deltacat/
|
208
|
+
deltacat/io/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
209
|
+
deltacat/io/dataset/deltacat_dataset.py,sha256=j2uJYq3gBZavoF457CACBZ4NE8VCfImdRbZ6AU_e3ig,3963
|
210
|
+
deltacat/io/datasink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
211
|
+
deltacat/io/datasink/deltacat_datasink.py,sha256=TcXi_jegA0eawUDq3s6nTm3IcAV3B8noWsk7IPpgTdw,7836
|
212
|
+
deltacat/io/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
|
+
deltacat/io/datasource/deltacat_datasource.py,sha256=G9casuqV8c5nYLelZrEX0tGHDYrzJtH2R1q6-z5zFLk,21741
|
214
|
+
deltacat/io/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
215
|
+
deltacat/io/reader/deltacat_read_api.py,sha256=OSQ8PTWvyyRq5UTSFBlkFgphkJEm0EB5oztr_iszzHc,8394
|
216
|
+
deltacat/storage/__init__.py,sha256=93XqQC1UVsFen-nduWpeQ_pqZu355qHryf7YlilmqMo,3696
|
155
217
|
deltacat/storage/interface.py,sha256=OkQr7WvsA_vPtr5OfG9lP8u4m5F8Y21Qa_CIi4LhrNo,25465
|
156
|
-
deltacat/storage/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
157
|
-
deltacat/storage/iceberg/iceberg_scan_planner.py,sha256=TzHTFJidlOXEYCW1czMOOc6oCplDKIs8ooiPlIMXyB0,1069
|
158
|
-
deltacat/storage/iceberg/impl.py,sha256=SbAkGn4wp5UUlZcLtYQgoqDjl9Ak49eSObsp01ZZXlc,26313
|
159
|
-
deltacat/storage/iceberg/model.py,sha256=PbEnOEY5Ni7E5pJA2xL2d-rwLGOWw6eTARBAYFgCzm8,24288
|
160
218
|
deltacat/storage/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
161
219
|
deltacat/storage/main/impl.py,sha256=aVeo2t7m0_LumaDfH2CE_tB9-AXSYqlE-PXvprfTuOg,68493
|
162
220
|
deltacat/storage/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -165,68 +223,29 @@ deltacat/storage/model/interop.py,sha256=CzXdu1NuJF5ER3IjQJztkNECD6MRDwbmMezlfN4
|
|
165
223
|
deltacat/storage/model/list_result.py,sha256=5DpRAu-c0M48cHtKdTRPSgQiq2nCWfjAY8LOVqp5wxI,2703
|
166
224
|
deltacat/storage/model/locator.py,sha256=Q16y-eGSQSZpDPKDYQhOjSA9c5ajwg1jLw_13MIB4SM,4707
|
167
225
|
deltacat/storage/model/manifest.py,sha256=3I4Vohd-PnEQ5NdQu9yN3jvFchqnzb8hQ3bq6w_tO4E,16808
|
168
|
-
deltacat/storage/model/metafile.py,sha256=
|
226
|
+
deltacat/storage/model/metafile.py,sha256=l6XUBMMlHFaHgjttZfq4sEeeSYgH_8eTkOLAvYmEvKY,54703
|
169
227
|
deltacat/storage/model/namespace.py,sha256=gLli1V64O9RHIf-FesmqWA29Wi7P1kwt01uz5sDdJR0,2409
|
170
228
|
deltacat/storage/model/partition.py,sha256=qNCvc74o_4pmFVL-FCyKCZMH4lHSjRO560sb3vaF_H0,20759
|
171
229
|
deltacat/storage/model/schema.py,sha256=uDaOqm1m0DYu89d2vTTMV7hDMvtiVwHqI_HFhRRgAA0,33806
|
172
|
-
deltacat/storage/model/shard.py,sha256=
|
230
|
+
deltacat/storage/model/shard.py,sha256=boPOW45bwLwBazfXZpa3-C5SUSlgelpHf8Yl6357Bq0,1575
|
173
231
|
deltacat/storage/model/sort_key.py,sha256=HAZfDYqV24XClf1KslQw0duFVczvkglp0juENrU41nI,5905
|
174
232
|
deltacat/storage/model/stream.py,sha256=OwzdyCgBOgJ6T5tUASkEE1-Zt8c3psU2ebk8D5OSkTY,12280
|
175
233
|
deltacat/storage/model/table.py,sha256=5dm6ix9d5WEKRn-E-1l7DUEdtHgAOLfjlCRph4mD45Y,7276
|
176
234
|
deltacat/storage/model/table_version.py,sha256=4a1VJy0R-kuhgwNaovBkLmtb3Il4krqy_11L8MAvdd4,17304
|
177
235
|
deltacat/storage/model/transaction.py,sha256=74Ml0EXGjVYSOerDBIDKOSYAZ5d8vuTPdYymF9VJxeI,30483
|
178
236
|
deltacat/storage/model/transform.py,sha256=eVeqcxEvA7VBOWCFStVbfhlxwdb79XwdMKb9F04wlWc,6818
|
179
|
-
deltacat/storage/model/types.py,sha256
|
237
|
+
deltacat/storage/model/types.py,sha256=lDDwTeDftkPHODpRXa4f8qsgGEy7WKKr5Fxmgx8-WWI,4359
|
238
|
+
deltacat/storage/model/expression/__init__.py,sha256=etUDuH5oaeKmE5da_ELgLVWTlLfemC2lwy9fHWEzy2k,802
|
239
|
+
deltacat/storage/model/expression/expression.py,sha256=PMsCbCbZ6EpJ-HSJw0CSJOtf7mvmnhyK-bSrP4UozZU,18209
|
240
|
+
deltacat/storage/model/expression/visitor.py,sha256=ROW4yxgi9r0ececrGHDRzxLQUP4wLe-nWyUhmKhS3X4,9853
|
180
241
|
deltacat/storage/model/scan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
|
-
deltacat/storage/model/scan/push_down.py,sha256=
|
242
|
+
deltacat/storage/model/scan/push_down.py,sha256=SldUHgv-HRDpEqIcsD9HI_XuofFI8BI0yRONO0zCcPQ,1034
|
182
243
|
deltacat/storage/model/scan/scan_plan.py,sha256=P59yYbQWXbKZU068GzIh7ya_h2n7NgZJBY_eWVfGLAU,250
|
183
244
|
deltacat/storage/model/scan/scan_task.py,sha256=pOcGKMjnHrZwabtdk3rw5kbh_d_aJGqzgCj6c_im1vE,855
|
184
|
-
deltacat/storage/rivulet/__init__.py,sha256=yi33jE7VTPKp-ZKIJ-Nf6u-1FRi34hyrV_EbfhYmT0k,205
|
185
|
-
deltacat/storage/rivulet/dataset.py,sha256=WlTCWVS-GImBfEPtHxKsV4WyAJtWxOSBJyjC0_3dxiI,28605
|
186
|
-
deltacat/storage/rivulet/dataset_executor.py,sha256=NXTT8XJIK9ld9EM6bhy0sbxQNsZTdRncJ2uZI5UrRbU,3374
|
187
|
-
deltacat/storage/rivulet/logical_plan.py,sha256=UMW-T7ospMlci2l8suasZTnTUrw75rzTp8lo9lU1oyA,3279
|
188
|
-
deltacat/storage/rivulet/serializer.py,sha256=Xa6rrAy6QNKcFNh_WxkyP8MHrofGdFVRfxX_jp1_FIk,1677
|
189
|
-
deltacat/storage/rivulet/serializer_factory.py,sha256=zUoqew-cddK9o--UeIeDbjqVdSz09t-hzItouogkimo,1837
|
190
|
-
deltacat/storage/rivulet/arrow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
191
|
-
deltacat/storage/rivulet/arrow/serializer.py,sha256=MgODL6vBm8wyLgOH5fQ22OGrKwy-uO3OnJtM7FMomQY,2671
|
192
|
-
deltacat/storage/rivulet/feather/__init__.py,sha256=SsosQE9GeG-jWRy_t3mMBWWS8FLAALdIr-Jj3sXq-04,286
|
193
|
-
deltacat/storage/rivulet/feather/file_reader.py,sha256=riaJwxL0T2YxvPkB5uDtumIKw7eH76Ilx7YQkSCdze8,4873
|
194
|
-
deltacat/storage/rivulet/feather/serializer.py,sha256=0ESomIDsKRvn6OH2k_IG6zoxTlHdHnlK41yDSNWl9ac,1544
|
195
|
-
deltacat/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
|
-
deltacat/storage/rivulet/fs/file_provider.py,sha256=1bFiQcqJjyCMsZjhAicujwBLdo4P_moTY8BOYlbfvdE,3824
|
197
|
-
deltacat/storage/rivulet/fs/file_store.py,sha256=5qWZfWkI__9MNpycgFJVYBhnpbsO-qSbhreYtphqIcA,5632
|
198
|
-
deltacat/storage/rivulet/fs/input_file.py,sha256=2SZdngGUlURg6ier3N-0D7zEySxgerg6EHuj3v0DXJM,1921
|
199
|
-
deltacat/storage/rivulet/fs/output_file.py,sha256=kjJHDhwKxF3TQ81TBQGX2FGyE-Wk7oA8QVGLqTP0nhg,2467
|
200
|
-
deltacat/storage/rivulet/metastore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
|
-
deltacat/storage/rivulet/metastore/delta.py,sha256=HWtDeKft6ExH29TndbrNQhTgUiUkJYmKr6_Tq23CwRs,6303
|
202
|
-
deltacat/storage/rivulet/metastore/json_sst.py,sha256=mckK9bzu1Tt1kDhZhzFFEbOlDMUqHTl9TeHd3r0AwaA,3239
|
203
|
-
deltacat/storage/rivulet/metastore/sst.py,sha256=1uHUHmh6q9hcGXhvrnQFQVLfKBKaBIay1gL5kfbd9nI,2406
|
204
|
-
deltacat/storage/rivulet/metastore/sst_interval_tree.py,sha256=j6BwNkpY18WYG3b4s0v_vt4fBKbrTGj5q_QsLPGU-Cg,10683
|
205
|
-
deltacat/storage/rivulet/mvp/Table.py,sha256=j82_-gF7byXx3a0yBCWVCtYH2H93qKPBD_1qp5GrlAA,3016
|
206
|
-
deltacat/storage/rivulet/mvp/__init__.py,sha256=28ULboqUHUGJuHjDWQgvG7cyR_ylV8fJ3B_wrsvI1f8,234
|
207
|
-
deltacat/storage/rivulet/parquet/__init__.py,sha256=n896g5SyboT2t_foaFnPXOdTgqZ9JarsFFzVrtnGeT0,286
|
208
|
-
deltacat/storage/rivulet/parquet/data_reader.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
209
|
-
deltacat/storage/rivulet/parquet/file_reader.py,sha256=fzDg2VN50GqljFQFFM_bytbOl2w7BP-FrlUThZIWrzQ,4356
|
210
|
-
deltacat/storage/rivulet/parquet/serializer.py,sha256=p9g2oskJTOgw7afiVdr9Vb-PTgzRV4R_9atQHlhnj58,1523
|
211
|
-
deltacat/storage/rivulet/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
212
|
-
deltacat/storage/rivulet/reader/block_scanner.py,sha256=QvaAAop6YunxrYsvTlFrAmgW_ZjmfPcj7ZpEAJ6cl5w,15505
|
213
|
-
deltacat/storage/rivulet/reader/data_reader.py,sha256=GojlClE3W7WwQnvohu3gJK0TEP05_ToGk_wLKtl3hi8,3967
|
214
|
-
deltacat/storage/rivulet/reader/data_scan.py,sha256=ada1INAyql42Q8Dw3l9tq1ZIlD2hllU2ivVc0sClI98,2725
|
215
|
-
deltacat/storage/rivulet/reader/dataset_metastore.py,sha256=E1BCBcBihPF9HLCy9vWaY54BRMTuHKz_yNlaXprxy10,6197
|
216
|
-
deltacat/storage/rivulet/reader/dataset_reader.py,sha256=wjdioXZA3IoLfXKPjjsnkUE1kKGmvy7vEegJNUKSl-4,6149
|
217
|
-
deltacat/storage/rivulet/reader/pyarrow_data_reader.py,sha256=QdtrAJ4d42lVxl7ZGE_lBDb_H6keZlcI2DkNkWcyCrU,4237
|
218
|
-
deltacat/storage/rivulet/reader/query_expression.py,sha256=S6EqP2Ru0liWbYws_ZKZz_aTCWJAHEGoZ2MUY5LZQLk,3121
|
219
|
-
deltacat/storage/rivulet/reader/reader_type_registrar.py,sha256=NFSSBHUopQDQtnadSm0W4HXGhEvPH5sKAXdZG7yNx34,3031
|
220
|
-
deltacat/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
|
-
deltacat/storage/rivulet/schema/datatype.py,sha256=QKlMwaEuALV6viNnNSRN1PNFUg7edzooEO3Jp901j1I,4370
|
222
|
-
deltacat/storage/rivulet/schema/schema.py,sha256=t-y4BHSQkZ2bI8WxQfMsXoSYUe4sOLOA75u-BGKXaZM,9461
|
223
|
-
deltacat/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
224
|
-
deltacat/storage/rivulet/writer/dataset_writer.py,sha256=aLLwhMY9K5DENu_Rtqa3oWUmdPOYrP07BXntBW3pgdo,957
|
225
|
-
deltacat/storage/rivulet/writer/memtable_dataset_writer.py,sha256=YxB6q-FjD0h3VUbLabjRTiE_MVzj1JCDPM8HsOzgGU8,10012
|
226
245
|
deltacat/storage/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
246
|
deltacat/storage/util/scan_planner.py,sha256=yxvExB_rbTc5ijLdnSjJv0BAFGsNRqegzzDBUYzXZ-k,820
|
228
247
|
deltacat/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
deltacat/tests/test_deltacat_api.py,sha256=
|
248
|
+
deltacat/tests/test_deltacat_api.py,sha256=4pQqYMrluCSYXob7M48PE1nIudF67wQdbqzcAM4NtdU,3160
|
230
249
|
deltacat/tests/test_exceptions.py,sha256=V3jUQClHLD24tS18tnGvNIt0psn2WFT3Nf_CIvSqL08,3140
|
231
250
|
deltacat/tests/test_logs.py,sha256=ULmb3OJ8GGEpq_LFgcil-CPjZQpO9341Ws12svoct0s,6909
|
232
251
|
deltacat/tests/_io/__init__.py,sha256=Dl0ouF_riJ16kC2DhUqkL7BJHNrm09u-aMQQCgFD-as,107
|
@@ -236,12 +255,20 @@ deltacat/tests/_io/test_memcached_object_store.py,sha256=0EIaU5MHiEmIEkA4x5qUXFY
|
|
236
255
|
deltacat/tests/_io/test_ray_plasma_object_store.py,sha256=-wJZP6lRtEOogR25wjEiIBGz_lpvWVihwlZ5GqandZU,1911
|
237
256
|
deltacat/tests/_io/test_redis_object_store.py,sha256=4fCxb7PAqYixPbQZEPDwsDU3BEKfOkYxkhAI7V5Zdfc,4988
|
238
257
|
deltacat/tests/_io/test_s3_object_store.py,sha256=I8AbyrPfS32CAYvRHtn_OanL-XPpAnJeuCuhD-u9irQ,2270
|
258
|
+
deltacat/tests/_io/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
259
|
+
deltacat/tests/_io/reader/test_deltacat_read_api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
260
|
deltacat/tests/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
261
|
deltacat/tests/aws/test_clients.py,sha256=23GMWfz27WWBDXSqphG9mfputsyS7j3I5P_HRk4YoKE,3790
|
241
262
|
deltacat/tests/aws/test_s3u.py,sha256=FsYCH8K8DsDRPOtTp-w1Nu3ATqt4p1mqDo6aVJV-SbU,7918
|
242
263
|
deltacat/tests/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
|
-
deltacat/tests/catalog/test_catalogs.py,sha256=
|
244
|
-
deltacat/tests/catalog/test_default_catalog_impl.py,sha256=
|
264
|
+
deltacat/tests/catalog/test_catalogs.py,sha256=hxmjV7tdtcqFdDnY-bqlIruxEt6x1bjJAVmou763jMM,10183
|
265
|
+
deltacat/tests/catalog/test_default_catalog_impl.py,sha256=meqLi9G1ToVQ8ZztgUSh-d1WhFaAlT3mXlugV7ioTDE,3289
|
266
|
+
deltacat/tests/catalog/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
267
|
+
deltacat/tests/catalog/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
268
|
+
deltacat/tests/catalog/main/test_catalog_impl_namespace_operations.py,sha256=XvMoW1yjjoIs4-0A8_dqeY7ArysN6HJkSSHk7JnHeUI,4313
|
269
|
+
deltacat/tests/catalog/main/test_catalog_impl_table_operations.py,sha256=74_c77MMQu4W1s2ildOOs2HO4PDwXUDergkPg6eSus0,15352
|
270
|
+
deltacat/tests/catalog/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
|
+
deltacat/tests/catalog/model/test_table_definition.py,sha256=R-_FGV-52o5fShItXrbcqt2-2ECjrDQmcOHWKBCU-HQ,574
|
245
272
|
deltacat/tests/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
246
273
|
deltacat/tests/compute/compact_partition_multiple_rounds_test_cases.py,sha256=g4DKJEn7BtLtuDIxYVq9ZkK1S91o4ftRB7-3jhDCJ4s,37694
|
247
274
|
deltacat/tests/compute/compact_partition_rebase_test_cases.py,sha256=IwA0w5gURCFlUCFxXmnTSIPh5mkiGKRMw1UB9yU9ESQ,16821
|
@@ -269,13 +296,42 @@ deltacat/tests/compute/compactor_v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-
|
|
269
296
|
deltacat/tests/compute/compactor_v2/utils/test_task_options.py,sha256=37DkR1u_XwhedV9cGed6FFuJTC0XmuiowHJIa_Op6uA,865
|
270
297
|
deltacat/tests/compute/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
298
|
deltacat/tests/compute/converter/conftest.py,sha256=gRXJqf4qmHT1NVwS4dnqVUpTXMKw5vwPDc2hyPmM3Mg,2973
|
272
|
-
deltacat/tests/compute/converter/test_convert_session.py,sha256=
|
299
|
+
deltacat/tests/compute/converter/test_convert_session.py,sha256=9FBMIGXH40QPpoVtfY8LUnEZ05Yup84dqwWeAwL8XZE,21003
|
273
300
|
deltacat/tests/compute/converter/utils.py,sha256=NYnssLhzCGcbMvojav8e7CPge5ir7KhvfcQ8nMReTCU,3917
|
274
301
|
deltacat/tests/compute/resource_estimation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
275
302
|
deltacat/tests/compute/resource_estimation/test_delta.py,sha256=5GyaYObGa-PjTS01d3uRyTLoVAvgoanMQn0EOFhNFjI,25159
|
276
303
|
deltacat/tests/compute/resource_estimation/test_manifest.py,sha256=yrMvqDjolExdRf6Vtg5XaKDuaKz9ok15PCZ7_aJOYrI,32893
|
277
304
|
deltacat/tests/compute/resource_estimation/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
|
-
deltacat/tests/
|
305
|
+
deltacat/tests/daft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
306
|
+
deltacat/tests/daft/test_model.py,sha256=nqKZV1lUqvFzfyjrV1OxtJi3Fj33fcYIl9I0eguxAnQ,3953
|
307
|
+
deltacat/tests/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
308
|
+
deltacat/tests/experimental/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
309
|
+
deltacat/tests/experimental/catalog/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
310
|
+
deltacat/tests/experimental/catalog/iceberg/test_iceberg_catalog.py,sha256=K3YwWX8g_Tf7SQq-ruKj3_fAdPYvHdFYDB57byGhOGc,2029
|
311
|
+
deltacat/tests/experimental/daft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
312
|
+
deltacat/tests/experimental/daft/test_deltacat_daft_integration.py,sha256=Vx-5MSPuvaUMHUBQ4cGhob26JWSxNqiHUYVMwvqfS2c,5102
|
313
|
+
deltacat/tests/experimental/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
314
|
+
deltacat/tests/experimental/storage/rivulet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
315
|
+
deltacat/tests/experimental/storage/rivulet/conftest.py,sha256=rtaU6iaCBlCbUiIc8UcVo5m4ADv8jN9N0FVi-36pS9o,3698
|
316
|
+
deltacat/tests/experimental/storage/rivulet/test_dataset.py,sha256=yD0c5r8a5IogAA_rvv3vM_waXQylA3oyUOHmvM_vcBI,13577
|
317
|
+
deltacat/tests/experimental/storage/rivulet/test_manifest.py,sha256=RS-cZQb7lkwpFFHNnU5varlVp_3njrjBw2B-84tEOPA,1943
|
318
|
+
deltacat/tests/experimental/storage/rivulet/test_sst_interval_tree.py,sha256=eBOFI4Z9GXxRwVTbnfhum-WNTTULyOV53gcvKQ8rfos,6866
|
319
|
+
deltacat/tests/experimental/storage/rivulet/test_utils.py,sha256=d9igdUG7BSoYVZN0-skxmKRPJ4HmDJE-P6wjh2qqk4Q,4469
|
320
|
+
deltacat/tests/experimental/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
321
|
+
deltacat/tests/experimental/storage/rivulet/fs/test_file_location_provider.py,sha256=TlIEWRZjmMSaCn5NoCDsis1lc4lNxD74tXUzm8rERO0,2842
|
322
|
+
deltacat/tests/experimental/storage/rivulet/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
323
|
+
deltacat/tests/experimental/storage/rivulet/reader/query_expression.py,sha256=6z3x5jEX3L0cUtvd-bx4HYWcMrxWf20PQ0USSxq6nTM,2312
|
324
|
+
deltacat/tests/experimental/storage/rivulet/reader/test_data_scan.py,sha256=NMEkkhJvT8Kkc7xXrb5lpN1nup964Qd3vwuo5FbvAE8,3105
|
325
|
+
deltacat/tests/experimental/storage/rivulet/reader/test_dataset_metastore.py,sha256=-OLXFgNHlqVw7ezm51f-x6YMZoBciXoR22BKw5LRH6E,2311
|
326
|
+
deltacat/tests/experimental/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
327
|
+
deltacat/tests/experimental/storage/rivulet/schema/test_schema.py,sha256=aefVhuRnpp60ddw3wiDVYcgl2WJFWhb1AFDHgBzvD0Y,7254
|
328
|
+
deltacat/tests/experimental/storage/rivulet/shard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
329
|
+
deltacat/tests/experimental/storage/rivulet/shard/test_range_shard.py,sha256=aUKD1ASNqUP0a6BOnnU-uVwkGsxtv6PXVGHyW6BeFxQ,4687
|
330
|
+
deltacat/tests/experimental/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
331
|
+
deltacat/tests/experimental/storage/rivulet/writer/test_dataset_write_then_read.py,sha256=-7bA8eS_vzDfwMJZjfnhg7ogp7jnMSZNEuxqthI9g-k,12299
|
332
|
+
deltacat/tests/experimental/storage/rivulet/writer/test_dataset_writer.py,sha256=1bqq9_yGSJD8sXEVDrzNsSA9nsMJ04k7PbxGpUZQ0a4,2884
|
333
|
+
deltacat/tests/experimental/storage/rivulet/writer/test_memtable_dataset_writer.py,sha256=www9mD_vugITO42ojHX8HmNiZxvveB0qYg-1MXwl2AA,2579
|
334
|
+
deltacat/tests/local_deltacat_storage/__init__.py,sha256=kM-g8zLwXmGnCw6fUzc99v_id5lnalsg81u9D8nkvdQ,38771
|
279
335
|
deltacat/tests/local_deltacat_storage/exceptions.py,sha256=oxZ0psmrEO0M6P2r8gHQ2E8E-Y8UBfUCBUIwfuHcx38,251
|
280
336
|
deltacat/tests/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
337
|
deltacat/tests/storage/conftest.py,sha256=PmeSapSImU9f9y2iN0Bn0HwbHR6czjbAPKpH2k6eIUE,561
|
@@ -283,26 +339,13 @@ deltacat/tests/storage/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
283
339
|
deltacat/tests/storage/main/test_main_storage.py,sha256=9dtsAcp9GZ4XQ5-8XhKnAcFF7upowJpTIuqZUB2EYig,58124
|
284
340
|
deltacat/tests/storage/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
341
|
deltacat/tests/storage/model/test_delete_parameters.py,sha256=RcNRMIed0zUzkX9tRXDoYPXHb7721OEt8viY9tpWXZM,822
|
342
|
+
deltacat/tests/storage/model/test_expression.py,sha256=eySWacUo8EK1NwxMQnNqpXAVbG_fZTj7BfyircyKawM,11237
|
286
343
|
deltacat/tests/storage/model/test_manifest.py,sha256=udp9YUNvIBpnT-NutjMaF25abEQOXEcPkQm8Aay_UCs,3733
|
287
344
|
deltacat/tests/storage/model/test_metafile_io.py,sha256=116U9aNJPzR0JS6iadJyyx0_4KyAi3D47WCNbndag6o,101639
|
288
345
|
deltacat/tests/storage/model/test_schema.py,sha256=5m4BscbxbbOiry-lDI8j4vQcnvkG2Y-f0ZfshncPiSI,9599
|
289
|
-
deltacat/tests/storage/model/test_shard.py,sha256=
|
346
|
+
deltacat/tests/storage/model/test_shard.py,sha256=gP8w1KMq73M4uMyQKsV6w1FFTSx0vdJ_ybA-Erqk2UY,785
|
290
347
|
deltacat/tests/storage/model/test_table_version.py,sha256=CtLiOe1EI6Ao9MkxyMWoxTWuqQevupVUEQVU5ZIEB34,3306
|
291
348
|
deltacat/tests/storage/model/test_transaction.py,sha256=Y5JMaYz6mf4DbruxMmz9hWXGX30MjKjRAvxlIf0MnaY,14458
|
292
|
-
deltacat/tests/storage/rivulet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
293
|
-
deltacat/tests/storage/rivulet/conftest.py,sha256=1Ansaxs4WGVKhZ2iSGrFlz1Mjib6BLmZG98eSi9_EiU,3659
|
294
|
-
deltacat/tests/storage/rivulet/test_dataset.py,sha256=ux3rfeaB58hSV2x7pF55AhyF7geom0emvItIWUkuC7w,13529
|
295
|
-
deltacat/tests/storage/rivulet/test_manifest.py,sha256=JBdYUa_DmTRsYCUBsiypwvjRnY1K1teyGfPKioxs2Mk,1854
|
296
|
-
deltacat/tests/storage/rivulet/test_sst_interval_tree.py,sha256=VK8lh5ZtnIsnuyphsnXdnD9OQhAlyOLKJ1M0l4ui6i8,6801
|
297
|
-
deltacat/tests/storage/rivulet/test_utils.py,sha256=NvW_zA5CEEkooWDlc0aBCb_0pceCRb8WFY-HQ78mheM,4395
|
298
|
-
deltacat/tests/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
299
|
-
deltacat/tests/storage/rivulet/fs/test_file_location_provider.py,sha256=UrbPBb1VTiEOZoHBpcEtChX5elIIsCj7niOeu_xEM_0,2727
|
300
|
-
deltacat/tests/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
301
|
-
deltacat/tests/storage/rivulet/schema/test_schema.py,sha256=LngLuRlVK_1fK-JA5rW2_7RBPmeci7R_FdbsWytUVEo,7241
|
302
|
-
deltacat/tests/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
|
-
deltacat/tests/storage/rivulet/writer/test_dataset_write_then_read.py,sha256=IZTzlWLoFvedCN60AOo9tCfOqkNTgGDckOELn3B9Uoo,12173
|
304
|
-
deltacat/tests/storage/rivulet/writer/test_dataset_writer.py,sha256=HW-E7RvuyxloCL4_z7EsAHOYvw0UPzupXrvv3L3s1vQ,2858
|
305
|
-
deltacat/tests/storage/rivulet/writer/test_memtable_dataset_writer.py,sha256=4rrlIXL0f6LtEFWaW2vcoKPj6u3gwk8zzkwLQ_EranE,2464
|
306
349
|
deltacat/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
307
350
|
deltacat/tests/test_utils/constants.py,sha256=UYe--9T_clYjiOpv0M7TtAMGdpje_SMZ-w8n0IeCAjc,214
|
308
351
|
deltacat/tests/test_utils/filesystem.py,sha256=H4LhAZ4q1yC4mrAv5EQQ_NaBeYtuFXKxxAyEvirTt4w,221
|
@@ -323,34 +366,36 @@ deltacat/tests/utils/ray_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
323
366
|
deltacat/tests/utils/ray_utils/test_concurrency.py,sha256=TjZpX0cjMDEIS79p_--j_BfT0zXKNkTLY1ZzNokBTs0,1211
|
324
367
|
deltacat/tests/utils/ray_utils/test_dataset.py,sha256=1hoOR_AIO4iJQ_lCjNsJfq7S-2ZyOKyMkKc4Tjt6cwg,2092
|
325
368
|
deltacat/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
326
|
-
deltacat/types/media.py,sha256=
|
369
|
+
deltacat/types/media.py,sha256=kwp7DtZaa7jfB_hXPHXdXcUQy_nwrakeIPRF7I8rdHs,5487
|
327
370
|
deltacat/types/partial_download.py,sha256=QIpNTSwaiZ4TVl4A1N4PtblevKT5GwdXtGrouQMQs1E,2510
|
328
|
-
deltacat/types/tables.py,sha256=
|
371
|
+
deltacat/types/tables.py,sha256=zz29727VTgu4InLPwjOjmDX0SrCiDq-VI1S75EZfIr8,5594
|
329
372
|
deltacat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
330
373
|
deltacat/utils/arguments.py,sha256=5y1Xz4HSAD8M8Jt83i6gOEKoYjy_fMQe1V43IhIE4hY,1191
|
331
374
|
deltacat/utils/cloudpickle.py,sha256=XE7YDmQe56ksfl3NdYZkzOAhbHSuhNcBZGOehQpgZr0,1187
|
332
375
|
deltacat/utils/common.py,sha256=RG_-enXNpLKaYrqyx1ne2lL10lxN9vK7F631oJP6SE8,1375
|
333
|
-
deltacat/utils/daft.py,sha256=
|
334
|
-
deltacat/utils/export.py,sha256=
|
335
|
-
deltacat/utils/filesystem.py,sha256=
|
376
|
+
deltacat/utils/daft.py,sha256=POX96a67wiOSonaAgA9lVQRZ0buNua0xhFx43e-lLT8,24032
|
377
|
+
deltacat/utils/export.py,sha256=aiebPfWxtc-o7gCqDilcyMxb0GdAByW47dygtQ2Wrzg,1974
|
378
|
+
deltacat/utils/filesystem.py,sha256=7cmEmzc2JPPqbW-zlXv_d28R-IUqX6bmH3DWJ4NHB8A,13213
|
336
379
|
deltacat/utils/metafile_locator.py,sha256=_3yEW9n49jiEBuXHZmUKsFdYx6RxWWuS-Mu2gs_a1bw,2933
|
337
380
|
deltacat/utils/metrics.py,sha256=HYKyZSrtVLu8gXezg_TMNUKJp4h1WWI0VEzn0Xlzf-I,10778
|
338
381
|
deltacat/utils/numpy.py,sha256=SpHKKvC-K8NINTWGVfTZ5-gBFTGYqaXjjgKFhsdUjwg,2049
|
339
382
|
deltacat/utils/pandas.py,sha256=q99mlRB7tymICMcNbfGLfLqFu_C-feyPZKZm2CWJJVc,9574
|
340
383
|
deltacat/utils/performance.py,sha256=7ZLaMkS1ehPSIhT5uOQVBHvjC70iKHzoFquFo-KL0PI,645
|
341
384
|
deltacat/utils/placement.py,sha256=Lj20fb-eq8rgMdm_M2MBMfDLwhDM1sS1nJj2DvIK56s,12060
|
342
|
-
deltacat/utils/
|
385
|
+
deltacat/utils/polars.py,sha256=r46qBc3KflRKEqwW7GUN1kx1gWu2WK8mWF0x62pM1Mg,3688
|
386
|
+
deltacat/utils/pyarrow.py,sha256=gOSCs9XVeLy2PAERXM7DCg--ywuoxHO9dtl3LeIcJQU,34248
|
343
387
|
deltacat/utils/resources.py,sha256=Ax1OgLLbZI4oYpp4Ki27OLaST-7I-AJgZwU87FVfY8g,8253
|
344
388
|
deltacat/utils/s3fs.py,sha256=PmUJ5Fm1WmD-_zp_M6yd9VbXvIoJuBeK6ApOdJJApLE,662
|
345
389
|
deltacat/utils/schema.py,sha256=m4Wm4ZQcpttzOUxex4dVneGlHy1_E36HspTcjNYzvVM,1564
|
390
|
+
deltacat/utils/url.py,sha256=oKBfOKwojtF-G8Ry_shsAJjqWdPsKn1m5IXBbyb4ffc,43822
|
346
391
|
deltacat/utils/ray_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
347
392
|
deltacat/utils/ray_utils/collections.py,sha256=hj20s4D2RF2jZETU_44r6mFbsczA0JI_I_4kWKTmqes,1951
|
348
|
-
deltacat/utils/ray_utils/concurrency.py,sha256=
|
393
|
+
deltacat/utils/ray_utils/concurrency.py,sha256=Ceui6nQYKHTUOTltHNQIdb0OWHFhD73o8DhSXP-DYRQ,5457
|
349
394
|
deltacat/utils/ray_utils/dataset.py,sha256=waHdtH0c835a-2t51HYRHnulfC0_zBxx8mFSAPvPSPM,3274
|
350
395
|
deltacat/utils/ray_utils/performance.py,sha256=d7JFM7vTXHzkGx9qNQcZzUWajnqINvYRwaM088_FpsE,464
|
351
|
-
deltacat/utils/ray_utils/runtime.py,sha256=
|
352
|
-
deltacat-2.0.
|
353
|
-
deltacat-2.0.
|
354
|
-
deltacat-2.0.
|
355
|
-
deltacat-2.0.
|
356
|
-
deltacat-2.0.
|
396
|
+
deltacat/utils/ray_utils/runtime.py,sha256=cf5koY9q4TzRg--BjPtC6y0jztq45F39KcC4K6Wmg4w,6946
|
397
|
+
deltacat-2.0.0b11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
398
|
+
deltacat-2.0.0b11.dist-info/METADATA,sha256=oJQ9Ap_-LkIWKeCArIXq7tf8-kIcD2SdfuanP1XPgCI,2868
|
399
|
+
deltacat-2.0.0b11.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
400
|
+
deltacat-2.0.0b11.dist-info/top_level.txt,sha256=RWdIcid4Bv2i2ozLVh-70kJpyB61xEKXod9XXGpiono,9
|
401
|
+
deltacat-2.0.0b11.dist-info/RECORD,,
|
deltacat/daft/daft_scan.py
DELETED
@@ -1,111 +0,0 @@
|
|
1
|
-
from typing import Iterator
|
2
|
-
|
3
|
-
from daft import Schema
|
4
|
-
from daft.daft import (
|
5
|
-
StorageConfig,
|
6
|
-
PartitionField,
|
7
|
-
Pushdowns,
|
8
|
-
ScanTask,
|
9
|
-
FileFormatConfig,
|
10
|
-
ParquetSourceConfig,
|
11
|
-
)
|
12
|
-
from daft.io.scan import ScanOperator
|
13
|
-
|
14
|
-
from deltacat.catalog.model.table_definition import TableDefinition
|
15
|
-
from deltacat.daft.model import DaftPartitionKeyMapper
|
16
|
-
|
17
|
-
|
18
|
-
class DeltaCatScanOperator(ScanOperator):
|
19
|
-
def __init__(self, table: TableDefinition, storage_config: StorageConfig) -> None:
|
20
|
-
super().__init__()
|
21
|
-
self.table = table
|
22
|
-
self._schema = self._infer_schema()
|
23
|
-
self.partition_keys = self._infer_partition_keys()
|
24
|
-
self.storage_config = storage_config
|
25
|
-
|
26
|
-
def schema(self) -> Schema:
|
27
|
-
return self._schema
|
28
|
-
|
29
|
-
def name(self) -> str:
|
30
|
-
return "DeltaCatScanOperator"
|
31
|
-
|
32
|
-
def display_name(self) -> str:
|
33
|
-
return f"DeltaCATScanOperator({self.table.table.namespace}.{self.table.table.table_name})"
|
34
|
-
|
35
|
-
def partitioning_keys(self) -> list[PartitionField]:
|
36
|
-
return self.partition_keys
|
37
|
-
|
38
|
-
def multiline_display(self) -> list[str]:
|
39
|
-
return [
|
40
|
-
self.display_name(),
|
41
|
-
f"Schema = {self._schema}",
|
42
|
-
f"Partitioning keys = {self.partitioning_keys}",
|
43
|
-
f"Storage config = {self.storage_config}",
|
44
|
-
]
|
45
|
-
|
46
|
-
def to_scan_tasks(self, pushdowns: Pushdowns) -> Iterator[ScanTask]:
|
47
|
-
# TODO: implement pushdown predicate on DeltaCAT
|
48
|
-
dc_scan_plan = self.table.create_scan_plan()
|
49
|
-
scan_tasks = []
|
50
|
-
file_format_config = FileFormatConfig.from_parquet_config(
|
51
|
-
# maybe this: ParquetSourceConfig(field_id_mapping=self._field_id_mapping)
|
52
|
-
ParquetSourceConfig()
|
53
|
-
)
|
54
|
-
for dc_scan_task in dc_scan_plan.scan_tasks:
|
55
|
-
for data_file in dc_scan_task.data_files():
|
56
|
-
st = ScanTask.catalog_scan_task(
|
57
|
-
file=data_file.file_path,
|
58
|
-
file_format=file_format_config,
|
59
|
-
schema=self._schema._schema,
|
60
|
-
storage_config=self.storage_config,
|
61
|
-
pushdowns=pushdowns,
|
62
|
-
)
|
63
|
-
scan_tasks.append(st)
|
64
|
-
return iter(scan_tasks)
|
65
|
-
|
66
|
-
def can_absorb_filter(self) -> bool:
|
67
|
-
return False
|
68
|
-
|
69
|
-
def can_absorb_limit(self) -> bool:
|
70
|
-
return False
|
71
|
-
|
72
|
-
def can_absorb_select(self) -> bool:
|
73
|
-
return True
|
74
|
-
|
75
|
-
def _infer_schema(self) -> Schema:
|
76
|
-
|
77
|
-
if not (
|
78
|
-
self.table and self.table.table_version and self.table.table_version.schema
|
79
|
-
):
|
80
|
-
raise RuntimeError(
|
81
|
-
f"Failed to infer schema for DeltaCAT Table "
|
82
|
-
f"{self.table.table.namespace}.{self.table.table.table_name}"
|
83
|
-
)
|
84
|
-
|
85
|
-
return Schema.from_pyarrow_schema(self.table.table_version.schema.arrow)
|
86
|
-
|
87
|
-
def _infer_partition_keys(self) -> list[PartitionField]:
|
88
|
-
if not (
|
89
|
-
self.table
|
90
|
-
and self.table.table_version
|
91
|
-
and self.table.table_version.partition_scheme
|
92
|
-
and self.table.table_version.schema
|
93
|
-
):
|
94
|
-
raise RuntimeError(
|
95
|
-
f"Failed to infer partition keys for DeltaCAT Table "
|
96
|
-
f"{self.table.table.namespace}.{self.table.table.table_name}"
|
97
|
-
)
|
98
|
-
|
99
|
-
schema = self.table.table_version.schema
|
100
|
-
partition_keys = self.table.table_version.partition_scheme.keys
|
101
|
-
if not partition_keys:
|
102
|
-
return []
|
103
|
-
|
104
|
-
partition_fields = []
|
105
|
-
for key in partition_keys:
|
106
|
-
field = DaftPartitionKeyMapper.unmap(key, schema)
|
107
|
-
# Assert that the returned value is not None.
|
108
|
-
assert field is not None, f"Unmapping failed for key {key}"
|
109
|
-
partition_fields.append(field)
|
110
|
-
|
111
|
-
return partition_fields
|