deltacat 2.0.0b9__py3-none-any.whl → 2.0.0b10__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 +27 -6
- deltacat/api.py +478 -123
- deltacat/aws/s3u.py +2 -2
- deltacat/benchmarking/conftest.py +1 -1
- deltacat/catalog/main/impl.py +12 -6
- deltacat/catalog/model/catalog.py +65 -47
- deltacat/catalog/model/properties.py +1 -3
- 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/__init__.py +0 -0
- deltacat/compute/jobs/client.py +404 -0
- deltacat/constants.py +4 -4
- deltacat/daft/daft_scan.py +7 -3
- deltacat/daft/translator.py +126 -0
- deltacat/examples/basic_logging.py +5 -3
- deltacat/examples/hello_world.py +4 -2
- deltacat/examples/indexer/__init__.py +0 -0
- deltacat/examples/indexer/aws/__init__.py +0 -0
- deltacat/examples/indexer/gcp/__init__.py +0 -0
- deltacat/examples/indexer/indexer.py +163 -0
- deltacat/examples/indexer/job_runner.py +199 -0
- 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/types.py +5 -3
- deltacat/storage/rivulet/__init__.py +4 -4
- deltacat/tests/_io/reader/__init__.py +0 -0
- deltacat/tests/_io/reader/test_deltacat_read_api.py +0 -0
- deltacat/tests/compute/converter/test_convert_session.py +209 -46
- deltacat/tests/local_deltacat_storage/__init__.py +1 -0
- deltacat/tests/storage/model/test_expression.py +327 -0
- deltacat/tests/storage/rivulet/fs/test_file_location_provider.py +2 -1
- deltacat/tests/storage/rivulet/test_dataset.py +1 -1
- deltacat/tests/storage/rivulet/test_manifest.py +1 -1
- deltacat/tests/storage/rivulet/writer/test_memtable_dataset_writer.py +1 -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 +2 -2
- 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.0b10.dist-info}/METADATA +9 -6
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b10.dist-info}/RECORD +73 -48
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b10.dist-info}/LICENSE +0 -0
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b10.dist-info}/WHEEL +0 -0
- {deltacat-2.0.0b9.dist-info → deltacat-2.0.0b10.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.0b10
|
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,16 @@ 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
|
21
22
|
Requires-Dist: intervaltree==3.1.0
|
22
|
-
Requires-Dist: numpy==1.
|
23
|
-
Requires-Dist: pandas==
|
23
|
+
Requires-Dist: numpy==1.22.4
|
24
|
+
Requires-Dist: pandas==2.2.3
|
25
|
+
Requires-Dist: polars==1.28.1
|
24
26
|
Requires-Dist: pyarrow==16.0.0
|
25
27
|
Requires-Dist: pydantic!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,<3
|
26
28
|
Requires-Dist: pymemcache==4.0.0
|
27
|
-
Requires-Dist: ray
|
28
|
-
Requires-Dist: s3fs==2024.5.0
|
29
|
+
Requires-Dist: ray[default]==2.43.0
|
29
30
|
Requires-Dist: tenacity==8.2.3
|
30
31
|
Requires-Dist: typing-extensions==4.6.1
|
31
32
|
Requires-Dist: redis==4.6.0
|
@@ -34,6 +35,8 @@ Provides-Extra: iceberg
|
|
34
35
|
Requires-Dist: pyiceberg[glue]>=0.9.0; extra == "iceberg"
|
35
36
|
Requires-Dist: pyiceberg[hive]>=0.9.0; extra == "iceberg"
|
36
37
|
Requires-Dist: pyiceberg[sql-sqlite]>=0.9.0; extra == "iceberg"
|
38
|
+
Provides-Extra: s3fs
|
39
|
+
Requires-Dist: s3fs==2025.3.2; extra == "s3fs"
|
37
40
|
|
38
41
|
<p align="center">
|
39
42
|
<img src="media/deltacat-logo-alpha-750.png" alt="DeltaCAT Logo" style="width:55%; height:auto; text-align: center;">
|
@@ -1,20 +1,20 @@
|
|
1
|
-
deltacat/__init__.py,sha256=
|
1
|
+
deltacat/__init__.py,sha256=Or3bYqhSPeNUOTbbDRsou9tcCw3JoOpswtS3a-EZeV8,2859
|
2
2
|
deltacat/annotations.py,sha256=9lBi34DpIV_RPjCCK2Aiz_6nMyd-e-_CfQ1XtdRQQlM,1196
|
3
|
-
deltacat/api.py,sha256=
|
4
|
-
deltacat/constants.py,sha256=
|
3
|
+
deltacat/api.py,sha256=8wXFzNWDUYqy40ZtRex4outDPiFy8K8KHF-PSxMsZsw,18396
|
4
|
+
deltacat/constants.py,sha256=gMfNHQNh8FXXweiYz3yvE1Cc1S5FVkQLRZQKUcWypZg,3441
|
5
5
|
deltacat/env.py,sha256=cDEdyNtT448fAnioU3VoavLyprWR8si0YRLhfviNZrY,1994
|
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
13
|
deltacat/benchmarking/benchmark_engine.py,sha256=v3s5VcY8U7s_G6gaAiSbH0RP92dIcrfai0oOsEfW0Nk,3342
|
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=
|
17
|
+
deltacat/benchmarking/conftest.py,sha256=WRfEz46G8PyLp9E3RNpv_jpys7AyGiC-GFpUYs08f9M,2414
|
18
18
|
deltacat/benchmarking/test_benchmark_pipeline.py,sha256=XRqrShvtbCrPsPDRSQkn4FM6fTawwxsY2xJN9P6jiQI,3790
|
19
19
|
deltacat/benchmarking/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
deltacat/benchmarking/data/random_row_generator.py,sha256=-D1RFIQ6jE6KBmWGN6We8smhYxWQ19N2Pi8Z3iwBCiM,3227
|
@@ -27,12 +27,12 @@ deltacat/catalog/iceberg/iceberg_catalog_config.py,sha256=LfHxv8pk-YmTRQy5LvKFzw
|
|
27
27
|
deltacat/catalog/iceberg/impl.py,sha256=c_ONnLLyh8Vyqo5PusQSHySQ92iM4Qgk-rucHMfdd7s,14288
|
28
28
|
deltacat/catalog/iceberg/overrides.py,sha256=WmM2mxf7ihDl8anb5GzBxo5-sxBkot8ZSRTxDpaauRA,2687
|
29
29
|
deltacat/catalog/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
|
-
deltacat/catalog/main/impl.py,sha256=
|
30
|
+
deltacat/catalog/main/impl.py,sha256=nPM7TbgF3OeGkgtP3iDEiTbS1DdoV3wTfZWgb1mSqvo,23148
|
31
31
|
deltacat/catalog/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
32
|
-
deltacat/catalog/model/catalog.py,sha256=
|
33
|
-
deltacat/catalog/model/properties.py,sha256=
|
32
|
+
deltacat/catalog/model/catalog.py,sha256=ioDzHqWJ6XMcFPHWVV1bEu7ICPi1prOfbR_n4XSDuuM,10714
|
33
|
+
deltacat/catalog/model/properties.py,sha256=4Y-DjpYa5LrwdRYWYgxkv_R4qg6dw7gXuU2Cqj_-EV0,4081
|
34
34
|
deltacat/catalog/model/table_definition.py,sha256=mKmwFd2qKlj7ZH4AdZwU3bEcFtzpGvl0mXuWjqLUgBw,1842
|
35
|
-
deltacat/compute/__init__.py,sha256=
|
35
|
+
deltacat/compute/__init__.py,sha256=Yopyz3mokk-HtV9CDjQFCluvHbI7UiOPZYVtapUu13A,247
|
36
36
|
deltacat/compute/compactor/__init__.py,sha256=ivpOPve1yKi3Vz3tVgp-eeFMNEeUSf-dlRJNSCM85sE,1022
|
37
37
|
deltacat/compute/compactor/compaction_session.py,sha256=YthBYNpj6qvr6SqfVfXTy5ylKFOo8zUKI3bn4tHt0e8,27766
|
38
38
|
deltacat/compute/compactor/repartition_session.py,sha256=ujR-CtHIcRw8b4DHhO1m6_6CpVeN-GnAYoZ890w0igw,7260
|
@@ -92,25 +92,28 @@ deltacat/compute/compactor_v2/utils/merge.py,sha256=EV_iKhNc3WflgfLW1Q46dXUvyClx
|
|
92
92
|
deltacat/compute/compactor_v2/utils/primary_key_index.py,sha256=QOMwWxGhZ7VWa3oE6InM4thR5pbjmT7ttNXvx_IiKjo,11676
|
93
93
|
deltacat/compute/compactor_v2/utils/task_options.py,sha256=W0jyWIIZ0tcSAGp8mhpnu1G8p3rmX4d3juCPpAJxnDM,12649
|
94
94
|
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=
|
95
|
+
deltacat/compute/converter/constants.py,sha256=8bavgMWtlfFmI3UPrbRJY5CyfVk_xNzUznx83CxPwNU,431
|
96
|
+
deltacat/compute/converter/converter_session.py,sha256=IxbPH4tAt4c8fHvjuk58MkMJimH1BYLeNIFmXw5VPmw,7803
|
97
97
|
deltacat/compute/converter/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
|
-
deltacat/compute/converter/model/convert_input.py,sha256=
|
98
|
+
deltacat/compute/converter/model/convert_input.py,sha256=DuthWEXjV2oflqeOP6hJkww8LwIJUtn77MoUvJEdXYM,2822
|
99
99
|
deltacat/compute/converter/model/convert_input_files.py,sha256=cC2gCWnmlYeMRa2vl1HpSdCndjcNRFxExynhkQ1T8FE,2155
|
100
|
-
deltacat/compute/converter/model/
|
100
|
+
deltacat/compute/converter/model/convert_result.py,sha256=Wmw8W1dDvwT_35sGkfSj3enzxvyPAiwUFiDKwccRIWs,2003
|
101
|
+
deltacat/compute/converter/model/converter_session_params.py,sha256=eG9JHoAYOdMnXfb2xbbO7PKqU2Wfbxvm8zJ5LE2FPIM,4980
|
101
102
|
deltacat/compute/converter/pyiceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
103
|
deltacat/compute/converter/pyiceberg/catalog.py,sha256=IKio3i7JSUQGUnGxgVoKqay4ebsVQxJRy3rSOZCOM3s,1987
|
103
|
-
deltacat/compute/converter/pyiceberg/overrides.py,sha256=
|
104
|
+
deltacat/compute/converter/pyiceberg/overrides.py,sha256=MJ77EO6brke7do7P5rAL_nTUsIOlsK-QeZnMSxycFug,9713
|
104
105
|
deltacat/compute/converter/pyiceberg/update_snapshot_overrides.py,sha256=YguylurzfWK5wmj9pg56s7TI0yzwow1PDRFVH_WOc3I,9944
|
105
106
|
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=
|
107
|
+
deltacat/compute/converter/steps/convert.py,sha256=qLXi183aOb8uQnvrc_FblYnQrMBTlcKcXzAQdDrCaPI,10390
|
108
|
+
deltacat/compute/converter/steps/dedupe.py,sha256=CAJX-DP3zJJP88CjIFLAy0vIfMG7peqCvkesTbdT9UU,2918
|
108
109
|
deltacat/compute/converter/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
|
-
deltacat/compute/converter/utils/convert_task_options.py,sha256=
|
110
|
+
deltacat/compute/converter/utils/convert_task_options.py,sha256=nVebli5MioF-nwJxsverNbRTw3ehLTojfW_AUxwZNos,4601
|
110
111
|
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=
|
112
|
+
deltacat/compute/converter/utils/iceberg_columns.py,sha256=k7ng1LOCU8VUfEHMj6z0l9si-U5pDKll1Sl-4jVBb3E,2425
|
113
|
+
deltacat/compute/converter/utils/io.py,sha256=8ymAFaciRpIhFbe_bl6D-Ozn5HehO5sCKV24DeenNbQ,4218
|
114
|
+
deltacat/compute/converter/utils/s3u.py,sha256=Du5UKB0hdaQmT-yGaFtUVCXB2KTBVXWmKRL2er49KKg,4434
|
115
|
+
deltacat/compute/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
|
+
deltacat/compute/jobs/client.py,sha256=Gli733BnvG0-o3gvH2AtJkYvbE08JbjzCx2jpgaPRWo,14737
|
114
117
|
deltacat/compute/merge_on_read/__init__.py,sha256=ckbgngmqPjYBYz_NySsR1vNTOb_hNpeL1sYkZKvBI9M,214
|
115
118
|
deltacat/compute/merge_on_read/daft.py,sha256=1oC38u5ig_aTrq7EzyWBo8Ui54rb6yERYMk-vEFbpxM,1400
|
116
119
|
deltacat/compute/merge_on_read/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -131,27 +134,41 @@ deltacat/compute/stats/models/delta_stats_cache_result.py,sha256=mbJYxpZd5jaER_B
|
|
131
134
|
deltacat/compute/stats/models/manifest_entry_stats.py,sha256=NCDAe2nPDEI4kOkuwNkRFgGPS-rqQaQqLuaLoKk20KQ,2419
|
132
135
|
deltacat/compute/stats/models/stats_result.py,sha256=XQAlmzhUqRmg4jzEMUAOqcYn1HUOBTMryBH1CCVlet8,3820
|
133
136
|
deltacat/daft/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
134
|
-
deltacat/daft/daft_scan.py,sha256=
|
137
|
+
deltacat/daft/daft_scan.py,sha256=30S6OgKx3eBovpAVomHcr8xjjJVf_vwhJ9FA6dKQKYc,3981
|
135
138
|
deltacat/daft/model.py,sha256=6NaKkp9R0ruE0K2x-moyARNrQisswUl6TjMeA6YHtBM,9078
|
139
|
+
deltacat/daft/translator.py,sha256=Tm2K1Zcik2TjV_vKCd8Jc2IEA5MvSKLz1FvGODKrWR8,3771
|
136
140
|
deltacat/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
137
|
-
deltacat/examples/basic_logging.py,sha256=
|
138
|
-
deltacat/examples/hello_world.py,sha256=
|
141
|
+
deltacat/examples/basic_logging.py,sha256=Ia4eUyvSINjIGEOMnVMyo6a1iIxEdqlUtC_FLoBtQ5c,2872
|
142
|
+
deltacat/examples/hello_world.py,sha256=FvxkEDB1qVPJv55Fe1I7Coy0VLYJIisU7ZFYYkw9U2g,525
|
139
143
|
deltacat/examples/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
144
|
deltacat/examples/common/fixtures.py,sha256=MS0Hz1c__f9Axm3JgTajfWuMVeDAQmFmZ7KB7vz_1q4,430
|
141
145
|
deltacat/examples/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
142
146
|
deltacat/examples/iceberg/iceberg_bucket_writer.py,sha256=PdJG3jXcgPVds4UanfyNWB1egv-Os7LnZCPhdgv9Yyk,6586
|
143
147
|
deltacat/examples/iceberg/iceberg_reader.py,sha256=mlF-277vT04at-2jibAjgRJG6Y-zle_NNy1-pXwS2YQ,5023
|
148
|
+
deltacat/examples/indexer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
149
|
+
deltacat/examples/indexer/indexer.py,sha256=jjJAwyL0AJ6FdZbbtCeHGSsWr09-7WaMEFg1GSr-4ew,6320
|
150
|
+
deltacat/examples/indexer/job_runner.py,sha256=YlT89YB5s5pZLNrUuK0-i600NDu4O0Zbb5agAk1XDg8,5940
|
151
|
+
deltacat/examples/indexer/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
152
|
+
deltacat/examples/indexer/gcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
144
153
|
deltacat/experimental/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
145
154
|
deltacat/experimental/daft/__init__.py,sha256=0d1SsgjbDher8TKgS0gSBBdy5TGi01fewiwpG0BMwck,108
|
146
155
|
deltacat/experimental/daft/daft_catalog.py,sha256=112wDqqzdtxmtZVwiZW59MektbRsFMjSRgqYHrUOuok,8396
|
147
|
-
deltacat/io/__init__.py,sha256=
|
156
|
+
deltacat/io/__init__.py,sha256=QgARmNDGbOKRV2g5HAG9GKL589zt4WUY3T6E6vWZRWI,382
|
148
157
|
deltacat/io/file_object_store.py,sha256=YoNL3Qla8uLOHaWnyBmIgotjSGAy3Td3Tumah0kk73Y,1868
|
149
158
|
deltacat/io/memcached_object_store.py,sha256=C96t77-4BQe0XZ4vC76Ygi2o1POUoMN4t4BiyPmulz0,10997
|
150
159
|
deltacat/io/object_store.py,sha256=z3Crt8TLyLyoRunOuXAri373TQZKFoz66QHpxGOV82U,1910
|
151
160
|
deltacat/io/ray_plasma_object_store.py,sha256=TyoUPWybE_cSISZ2SQa3YfD93QWMp0r82-6WnoVSmzk,905
|
152
161
|
deltacat/io/redis_object_store.py,sha256=OkbQNq1DUVYA7eupmZTF-9OvXUDTOl6WtEifonA5teg,4862
|
153
162
|
deltacat/io/s3_object_store.py,sha256=IxvLUvyQZ1w1oYwN9RvRgmKR0Dw56-GggYJw1UCyhBg,1911
|
154
|
-
deltacat/
|
163
|
+
deltacat/io/dataset/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
|
+
deltacat/io/dataset/deltacat_dataset.py,sha256=j2uJYq3gBZavoF457CACBZ4NE8VCfImdRbZ6AU_e3ig,3963
|
165
|
+
deltacat/io/datasink/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
166
|
+
deltacat/io/datasink/deltacat_datasink.py,sha256=TcXi_jegA0eawUDq3s6nTm3IcAV3B8noWsk7IPpgTdw,7836
|
167
|
+
deltacat/io/datasource/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
168
|
+
deltacat/io/datasource/deltacat_datasource.py,sha256=G9casuqV8c5nYLelZrEX0tGHDYrzJtH2R1q6-z5zFLk,21741
|
169
|
+
deltacat/io/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
170
|
+
deltacat/io/reader/deltacat_read_api.py,sha256=WqO5ZSGqlYPgmOBIjrmdQy0MaFw6epBwBUQ6tj10d2c,8393
|
171
|
+
deltacat/storage/__init__.py,sha256=93XqQC1UVsFen-nduWpeQ_pqZu355qHryf7YlilmqMo,3696
|
155
172
|
deltacat/storage/interface.py,sha256=OkQr7WvsA_vPtr5OfG9lP8u4m5F8Y21Qa_CIi4LhrNo,25465
|
156
173
|
deltacat/storage/iceberg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
157
174
|
deltacat/storage/iceberg/iceberg_scan_planner.py,sha256=TzHTFJidlOXEYCW1czMOOc6oCplDKIs8ooiPlIMXyB0,1069
|
@@ -165,7 +182,7 @@ deltacat/storage/model/interop.py,sha256=CzXdu1NuJF5ER3IjQJztkNECD6MRDwbmMezlfN4
|
|
165
182
|
deltacat/storage/model/list_result.py,sha256=5DpRAu-c0M48cHtKdTRPSgQiq2nCWfjAY8LOVqp5wxI,2703
|
166
183
|
deltacat/storage/model/locator.py,sha256=Q16y-eGSQSZpDPKDYQhOjSA9c5ajwg1jLw_13MIB4SM,4707
|
167
184
|
deltacat/storage/model/manifest.py,sha256=3I4Vohd-PnEQ5NdQu9yN3jvFchqnzb8hQ3bq6w_tO4E,16808
|
168
|
-
deltacat/storage/model/metafile.py,sha256=
|
185
|
+
deltacat/storage/model/metafile.py,sha256=l6XUBMMlHFaHgjttZfq4sEeeSYgH_8eTkOLAvYmEvKY,54703
|
169
186
|
deltacat/storage/model/namespace.py,sha256=gLli1V64O9RHIf-FesmqWA29Wi7P1kwt01uz5sDdJR0,2409
|
170
187
|
deltacat/storage/model/partition.py,sha256=qNCvc74o_4pmFVL-FCyKCZMH4lHSjRO560sb3vaF_H0,20759
|
171
188
|
deltacat/storage/model/schema.py,sha256=uDaOqm1m0DYu89d2vTTMV7hDMvtiVwHqI_HFhRRgAA0,33806
|
@@ -176,12 +193,15 @@ deltacat/storage/model/table.py,sha256=5dm6ix9d5WEKRn-E-1l7DUEdtHgAOLfjlCRph4mD4
|
|
176
193
|
deltacat/storage/model/table_version.py,sha256=4a1VJy0R-kuhgwNaovBkLmtb3Il4krqy_11L8MAvdd4,17304
|
177
194
|
deltacat/storage/model/transaction.py,sha256=74Ml0EXGjVYSOerDBIDKOSYAZ5d8vuTPdYymF9VJxeI,30483
|
178
195
|
deltacat/storage/model/transform.py,sha256=eVeqcxEvA7VBOWCFStVbfhlxwdb79XwdMKb9F04wlWc,6818
|
179
|
-
deltacat/storage/model/types.py,sha256
|
196
|
+
deltacat/storage/model/types.py,sha256=lDDwTeDftkPHODpRXa4f8qsgGEy7WKKr5Fxmgx8-WWI,4359
|
197
|
+
deltacat/storage/model/expression/__init__.py,sha256=etUDuH5oaeKmE5da_ELgLVWTlLfemC2lwy9fHWEzy2k,802
|
198
|
+
deltacat/storage/model/expression/expression.py,sha256=PMsCbCbZ6EpJ-HSJw0CSJOtf7mvmnhyK-bSrP4UozZU,18209
|
199
|
+
deltacat/storage/model/expression/visitor.py,sha256=ROW4yxgi9r0ececrGHDRzxLQUP4wLe-nWyUhmKhS3X4,9853
|
180
200
|
deltacat/storage/model/scan/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
|
-
deltacat/storage/model/scan/push_down.py,sha256=
|
201
|
+
deltacat/storage/model/scan/push_down.py,sha256=SldUHgv-HRDpEqIcsD9HI_XuofFI8BI0yRONO0zCcPQ,1034
|
182
202
|
deltacat/storage/model/scan/scan_plan.py,sha256=P59yYbQWXbKZU068GzIh7ya_h2n7NgZJBY_eWVfGLAU,250
|
183
203
|
deltacat/storage/model/scan/scan_task.py,sha256=pOcGKMjnHrZwabtdk3rw5kbh_d_aJGqzgCj6c_im1vE,855
|
184
|
-
deltacat/storage/rivulet/__init__.py,sha256=
|
204
|
+
deltacat/storage/rivulet/__init__.py,sha256=OQcvRBY6cG-pvBQU8Wu-gncry8UIIS9ke1TY0v8yrAo,301
|
185
205
|
deltacat/storage/rivulet/dataset.py,sha256=WlTCWVS-GImBfEPtHxKsV4WyAJtWxOSBJyjC0_3dxiI,28605
|
186
206
|
deltacat/storage/rivulet/dataset_executor.py,sha256=NXTT8XJIK9ld9EM6bhy0sbxQNsZTdRncJ2uZI5UrRbU,3374
|
187
207
|
deltacat/storage/rivulet/logical_plan.py,sha256=UMW-T7ospMlci2l8suasZTnTUrw75rzTp8lo9lU1oyA,3279
|
@@ -226,7 +246,7 @@ deltacat/storage/rivulet/writer/memtable_dataset_writer.py,sha256=YxB6q-FjD0h3VU
|
|
226
246
|
deltacat/storage/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
227
247
|
deltacat/storage/util/scan_planner.py,sha256=yxvExB_rbTc5ijLdnSjJv0BAFGsNRqegzzDBUYzXZ-k,820
|
228
248
|
deltacat/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
229
|
-
deltacat/tests/test_deltacat_api.py,sha256=
|
249
|
+
deltacat/tests/test_deltacat_api.py,sha256=4pQqYMrluCSYXob7M48PE1nIudF67wQdbqzcAM4NtdU,3160
|
230
250
|
deltacat/tests/test_exceptions.py,sha256=V3jUQClHLD24tS18tnGvNIt0psn2WFT3Nf_CIvSqL08,3140
|
231
251
|
deltacat/tests/test_logs.py,sha256=ULmb3OJ8GGEpq_LFgcil-CPjZQpO9341Ws12svoct0s,6909
|
232
252
|
deltacat/tests/_io/__init__.py,sha256=Dl0ouF_riJ16kC2DhUqkL7BJHNrm09u-aMQQCgFD-as,107
|
@@ -236,6 +256,8 @@ deltacat/tests/_io/test_memcached_object_store.py,sha256=0EIaU5MHiEmIEkA4x5qUXFY
|
|
236
256
|
deltacat/tests/_io/test_ray_plasma_object_store.py,sha256=-wJZP6lRtEOogR25wjEiIBGz_lpvWVihwlZ5GqandZU,1911
|
237
257
|
deltacat/tests/_io/test_redis_object_store.py,sha256=4fCxb7PAqYixPbQZEPDwsDU3BEKfOkYxkhAI7V5Zdfc,4988
|
238
258
|
deltacat/tests/_io/test_s3_object_store.py,sha256=I8AbyrPfS32CAYvRHtn_OanL-XPpAnJeuCuhD-u9irQ,2270
|
259
|
+
deltacat/tests/_io/reader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
260
|
+
deltacat/tests/_io/reader/test_deltacat_read_api.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
239
261
|
deltacat/tests/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
262
|
deltacat/tests/aws/test_clients.py,sha256=23GMWfz27WWBDXSqphG9mfputsyS7j3I5P_HRk4YoKE,3790
|
241
263
|
deltacat/tests/aws/test_s3u.py,sha256=FsYCH8K8DsDRPOtTp-w1Nu3ATqt4p1mqDo6aVJV-SbU,7918
|
@@ -269,13 +291,13 @@ deltacat/tests/compute/compactor_v2/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-
|
|
269
291
|
deltacat/tests/compute/compactor_v2/utils/test_task_options.py,sha256=37DkR1u_XwhedV9cGed6FFuJTC0XmuiowHJIa_Op6uA,865
|
270
292
|
deltacat/tests/compute/converter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
271
293
|
deltacat/tests/compute/converter/conftest.py,sha256=gRXJqf4qmHT1NVwS4dnqVUpTXMKw5vwPDc2hyPmM3Mg,2973
|
272
|
-
deltacat/tests/compute/converter/test_convert_session.py,sha256=
|
294
|
+
deltacat/tests/compute/converter/test_convert_session.py,sha256=9FBMIGXH40QPpoVtfY8LUnEZ05Yup84dqwWeAwL8XZE,21003
|
273
295
|
deltacat/tests/compute/converter/utils.py,sha256=NYnssLhzCGcbMvojav8e7CPge5ir7KhvfcQ8nMReTCU,3917
|
274
296
|
deltacat/tests/compute/resource_estimation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
275
297
|
deltacat/tests/compute/resource_estimation/test_delta.py,sha256=5GyaYObGa-PjTS01d3uRyTLoVAvgoanMQn0EOFhNFjI,25159
|
276
298
|
deltacat/tests/compute/resource_estimation/test_manifest.py,sha256=yrMvqDjolExdRf6Vtg5XaKDuaKz9ok15PCZ7_aJOYrI,32893
|
277
299
|
deltacat/tests/compute/resource_estimation/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
278
|
-
deltacat/tests/local_deltacat_storage/__init__.py,sha256=
|
300
|
+
deltacat/tests/local_deltacat_storage/__init__.py,sha256=kM-g8zLwXmGnCw6fUzc99v_id5lnalsg81u9D8nkvdQ,38771
|
279
301
|
deltacat/tests/local_deltacat_storage/exceptions.py,sha256=oxZ0psmrEO0M6P2r8gHQ2E8E-Y8UBfUCBUIwfuHcx38,251
|
280
302
|
deltacat/tests/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
281
303
|
deltacat/tests/storage/conftest.py,sha256=PmeSapSImU9f9y2iN0Bn0HwbHR6czjbAPKpH2k6eIUE,561
|
@@ -283,6 +305,7 @@ deltacat/tests/storage/main/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
283
305
|
deltacat/tests/storage/main/test_main_storage.py,sha256=9dtsAcp9GZ4XQ5-8XhKnAcFF7upowJpTIuqZUB2EYig,58124
|
284
306
|
deltacat/tests/storage/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
285
307
|
deltacat/tests/storage/model/test_delete_parameters.py,sha256=RcNRMIed0zUzkX9tRXDoYPXHb7721OEt8viY9tpWXZM,822
|
308
|
+
deltacat/tests/storage/model/test_expression.py,sha256=eySWacUo8EK1NwxMQnNqpXAVbG_fZTj7BfyircyKawM,11237
|
286
309
|
deltacat/tests/storage/model/test_manifest.py,sha256=udp9YUNvIBpnT-NutjMaF25abEQOXEcPkQm8Aay_UCs,3733
|
287
310
|
deltacat/tests/storage/model/test_metafile_io.py,sha256=116U9aNJPzR0JS6iadJyyx0_4KyAi3D47WCNbndag6o,101639
|
288
311
|
deltacat/tests/storage/model/test_schema.py,sha256=5m4BscbxbbOiry-lDI8j4vQcnvkG2Y-f0ZfshncPiSI,9599
|
@@ -291,18 +314,18 @@ deltacat/tests/storage/model/test_table_version.py,sha256=CtLiOe1EI6Ao9MkxyMWoxT
|
|
291
314
|
deltacat/tests/storage/model/test_transaction.py,sha256=Y5JMaYz6mf4DbruxMmz9hWXGX30MjKjRAvxlIf0MnaY,14458
|
292
315
|
deltacat/tests/storage/rivulet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
293
316
|
deltacat/tests/storage/rivulet/conftest.py,sha256=1Ansaxs4WGVKhZ2iSGrFlz1Mjib6BLmZG98eSi9_EiU,3659
|
294
|
-
deltacat/tests/storage/rivulet/test_dataset.py,sha256=
|
295
|
-
deltacat/tests/storage/rivulet/test_manifest.py,sha256=
|
317
|
+
deltacat/tests/storage/rivulet/test_dataset.py,sha256=4V6FFxz66TNwl6Vviw-zfu_K2mBTRDT-zcaarcPVCn4,13529
|
318
|
+
deltacat/tests/storage/rivulet/test_manifest.py,sha256=mx3jlE0opEKla4i12V2THoM0f8-aWdPEJyJUrzi3lzg,1878
|
296
319
|
deltacat/tests/storage/rivulet/test_sst_interval_tree.py,sha256=VK8lh5ZtnIsnuyphsnXdnD9OQhAlyOLKJ1M0l4ui6i8,6801
|
297
320
|
deltacat/tests/storage/rivulet/test_utils.py,sha256=NvW_zA5CEEkooWDlc0aBCb_0pceCRb8WFY-HQ78mheM,4395
|
298
321
|
deltacat/tests/storage/rivulet/fs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
299
|
-
deltacat/tests/storage/rivulet/fs/test_file_location_provider.py,sha256=
|
322
|
+
deltacat/tests/storage/rivulet/fs/test_file_location_provider.py,sha256=vH3QPEnEFHXKQrnHPbJjVKRK3H6mOIWaNyqlHfCZqEE,2803
|
300
323
|
deltacat/tests/storage/rivulet/schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
301
324
|
deltacat/tests/storage/rivulet/schema/test_schema.py,sha256=LngLuRlVK_1fK-JA5rW2_7RBPmeci7R_FdbsWytUVEo,7241
|
302
325
|
deltacat/tests/storage/rivulet/writer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
326
|
deltacat/tests/storage/rivulet/writer/test_dataset_write_then_read.py,sha256=IZTzlWLoFvedCN60AOo9tCfOqkNTgGDckOELn3B9Uoo,12173
|
304
327
|
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=
|
328
|
+
deltacat/tests/storage/rivulet/writer/test_memtable_dataset_writer.py,sha256=lefIWItakJIYOfL3O0jvA2bpcY7t5C1u_TF-PygkU28,2488
|
306
329
|
deltacat/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
307
330
|
deltacat/tests/test_utils/constants.py,sha256=UYe--9T_clYjiOpv0M7TtAMGdpje_SMZ-w8n0IeCAjc,214
|
308
331
|
deltacat/tests/test_utils/filesystem.py,sha256=H4LhAZ4q1yC4mrAv5EQQ_NaBeYtuFXKxxAyEvirTt4w,221
|
@@ -323,34 +346,36 @@ deltacat/tests/utils/ray_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
323
346
|
deltacat/tests/utils/ray_utils/test_concurrency.py,sha256=TjZpX0cjMDEIS79p_--j_BfT0zXKNkTLY1ZzNokBTs0,1211
|
324
347
|
deltacat/tests/utils/ray_utils/test_dataset.py,sha256=1hoOR_AIO4iJQ_lCjNsJfq7S-2ZyOKyMkKc4Tjt6cwg,2092
|
325
348
|
deltacat/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
326
|
-
deltacat/types/media.py,sha256=
|
349
|
+
deltacat/types/media.py,sha256=tW8PebSmr2mMobHFjuWYhrsc8UjD9CN_gCIcXJSwob4,5488
|
327
350
|
deltacat/types/partial_download.py,sha256=QIpNTSwaiZ4TVl4A1N4PtblevKT5GwdXtGrouQMQs1E,2510
|
328
|
-
deltacat/types/tables.py,sha256=
|
351
|
+
deltacat/types/tables.py,sha256=zz29727VTgu4InLPwjOjmDX0SrCiDq-VI1S75EZfIr8,5594
|
329
352
|
deltacat/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
330
353
|
deltacat/utils/arguments.py,sha256=5y1Xz4HSAD8M8Jt83i6gOEKoYjy_fMQe1V43IhIE4hY,1191
|
331
354
|
deltacat/utils/cloudpickle.py,sha256=XE7YDmQe56ksfl3NdYZkzOAhbHSuhNcBZGOehQpgZr0,1187
|
332
355
|
deltacat/utils/common.py,sha256=RG_-enXNpLKaYrqyx1ne2lL10lxN9vK7F631oJP6SE8,1375
|
333
|
-
deltacat/utils/daft.py,sha256=
|
356
|
+
deltacat/utils/daft.py,sha256=ujZarxTdSA2GY_pOxXhHbMUB-CdOvYKLIqoM00NLdCI,5754
|
334
357
|
deltacat/utils/export.py,sha256=As5aiwOw9vLxtfolPLU0yak6W2RVR0rkuaYQ5YCy49U,1952
|
335
|
-
deltacat/utils/filesystem.py,sha256=
|
358
|
+
deltacat/utils/filesystem.py,sha256=7cmEmzc2JPPqbW-zlXv_d28R-IUqX6bmH3DWJ4NHB8A,13213
|
336
359
|
deltacat/utils/metafile_locator.py,sha256=_3yEW9n49jiEBuXHZmUKsFdYx6RxWWuS-Mu2gs_a1bw,2933
|
337
360
|
deltacat/utils/metrics.py,sha256=HYKyZSrtVLu8gXezg_TMNUKJp4h1WWI0VEzn0Xlzf-I,10778
|
338
361
|
deltacat/utils/numpy.py,sha256=SpHKKvC-K8NINTWGVfTZ5-gBFTGYqaXjjgKFhsdUjwg,2049
|
339
362
|
deltacat/utils/pandas.py,sha256=q99mlRB7tymICMcNbfGLfLqFu_C-feyPZKZm2CWJJVc,9574
|
340
363
|
deltacat/utils/performance.py,sha256=7ZLaMkS1ehPSIhT5uOQVBHvjC70iKHzoFquFo-KL0PI,645
|
341
364
|
deltacat/utils/placement.py,sha256=Lj20fb-eq8rgMdm_M2MBMfDLwhDM1sS1nJj2DvIK56s,12060
|
342
|
-
deltacat/utils/
|
365
|
+
deltacat/utils/polars.py,sha256=r46qBc3KflRKEqwW7GUN1kx1gWu2WK8mWF0x62pM1Mg,3688
|
366
|
+
deltacat/utils/pyarrow.py,sha256=gOSCs9XVeLy2PAERXM7DCg--ywuoxHO9dtl3LeIcJQU,34248
|
343
367
|
deltacat/utils/resources.py,sha256=Ax1OgLLbZI4oYpp4Ki27OLaST-7I-AJgZwU87FVfY8g,8253
|
344
368
|
deltacat/utils/s3fs.py,sha256=PmUJ5Fm1WmD-_zp_M6yd9VbXvIoJuBeK6ApOdJJApLE,662
|
345
369
|
deltacat/utils/schema.py,sha256=m4Wm4ZQcpttzOUxex4dVneGlHy1_E36HspTcjNYzvVM,1564
|
370
|
+
deltacat/utils/url.py,sha256=V3SWhxfIMJ5g4mvNXb29NrxOiOKnPp3VVWspVdYD34Y,43821
|
346
371
|
deltacat/utils/ray_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
347
372
|
deltacat/utils/ray_utils/collections.py,sha256=hj20s4D2RF2jZETU_44r6mFbsczA0JI_I_4kWKTmqes,1951
|
348
|
-
deltacat/utils/ray_utils/concurrency.py,sha256=
|
373
|
+
deltacat/utils/ray_utils/concurrency.py,sha256=Ceui6nQYKHTUOTltHNQIdb0OWHFhD73o8DhSXP-DYRQ,5457
|
349
374
|
deltacat/utils/ray_utils/dataset.py,sha256=waHdtH0c835a-2t51HYRHnulfC0_zBxx8mFSAPvPSPM,3274
|
350
375
|
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.
|
376
|
+
deltacat/utils/ray_utils/runtime.py,sha256=cf5koY9q4TzRg--BjPtC6y0jztq45F39KcC4K6Wmg4w,6946
|
377
|
+
deltacat-2.0.0b10.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
378
|
+
deltacat-2.0.0b10.dist-info/METADATA,sha256=ySDCisOen9HXsW7IxUwKTnGXhec0L2de3CxpQJ7gA8M,2923
|
379
|
+
deltacat-2.0.0b10.dist-info/WHEEL,sha256=tZoeGjtWxWRfdplE7E3d45VPlLNQnvbKiYnx7gwAy8A,92
|
380
|
+
deltacat-2.0.0b10.dist-info/top_level.txt,sha256=RWdIcid4Bv2i2ozLVh-70kJpyB61xEKXod9XXGpiono,9
|
381
|
+
deltacat-2.0.0b10.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|