deltacat 2.0.0b12__py3-none-any.whl → 2.0.0.post1__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 CHANGED
@@ -122,7 +122,7 @@ if importlib.util.find_spec("pyiceberg") is not None:
122
122
 
123
123
  deltacat.logs.configure_deltacat_logger(logging.getLogger(__name__))
124
124
 
125
- __version__ = "2.0.0b12"
125
+ __version__ = "2.0.0.post1"
126
126
 
127
127
 
128
128
  __all__ = [
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: deltacat
3
- Version: 2.0.0b12
4
- Summary: A portable, scalable, fast, and Pythonic Data Lakehouse for AI.
3
+ Version: 2.0.0.post1
4
+ Summary: DeltaCAT is a portable Pythonic Data Lakehouse powered by Ray.
5
5
  Home-page: https://github.com/ray-project/deltacat
6
6
  Author: Ray Team
7
7
  Classifier: Development Status :: 4 - Beta
@@ -50,7 +50,7 @@ Dynamic: requires-python
50
50
  Dynamic: summary
51
51
 
52
52
  <p align="center">
53
- <img src="media/deltacat-logo-alpha-750.png" alt="deltacat logo" style="width:55%; height:auto; text-align: center;">
53
+ <img src="https://github.com/ray-project/deltacat/raw/2.0/media/deltacat-logo-alpha-750.png" alt="deltacat logo" style="width:55%; height:auto; text-align: center;">
54
54
  </p>
55
55
 
56
56
  DeltaCAT is a portable Pythonic Data Lakehouse powered by [Ray](https://github.com/ray-project/ray). It lets you define and manage
@@ -62,16 +62,16 @@ It uses the Ray distributed compute framework together with [Apache Arrow](https
62
62
  merge-on-read and copy-on-write operations.
63
63
 
64
64
  DeltaCAT provides the following high-level components:
65
- 1. [**Catalog**](deltacat/catalog/interface.py): High-level APIs to create, discover, organize, share, and manage datasets.
66
- 2. [**Compute**](deltacat/compute/): Distributed data management procedures to read, write, and optimize datasets.
67
- 3. [**Storage**](deltacat/storage/): In-memory and on-disk multimodal dataset formats.
65
+ 1. [**Catalog**](https://github.com/ray-project/deltacat/tree/2.0/deltacat/catalog/interface.py): High-level APIs to create, discover, organize, share, and manage datasets.
66
+ 2. [**Compute**](https://github.com/ray-project/deltacat/tree/2.0/deltacat/compute/): Distributed data management procedures to read, write, and optimize datasets.
67
+ 3. [**Storage**](https://github.com/ray-project/deltacat/tree/2.0/deltacat/storage/): In-memory and on-disk multimodal dataset formats.
68
68
  4. **Sync** (in development): Synchronize DeltaCAT datasets to data warehouses and other table formats.
69
69
 
70
70
  ## Overview
71
71
  DeltaCAT's **Catalog**, **Compute**, and **Storage** layers work together to bring ACID-compliant data management to any Ray application. These components automate data indexing, change management, dataset read/write optimization, schema evolution, and other common data management tasks across any set of data files readable by Ray Data, Daft, Pandas, Polars, PyArrow, or NumPy.
72
72
 
73
73
  <p align="center">
74
- <img src="media/deltacat-tech-overview.png" alt="deltacat tech overview" style="width:100%; height:auto; text-align: center;">
74
+ <img src="https://github.com/ray-project/deltacat/raw/2.0/media/deltacat-tech-overview.png" alt="deltacat tech overview" style="width:100%; height:auto; text-align: center;">
75
75
  </p>
76
76
 
77
77
  Data consumers that prefer to stay within the ecosystem of Pythonic data management tools can use DeltaCAT's native table format to manage their data with minimal overhead. For integration with other data analytics frameworks (e.g., Apache Spark, Trino, Apache Flink), DeltaCAT's **Sync** component offers zero-copy synchronization of your tables to Apache Iceberg and other table formats.
@@ -1146,18 +1146,18 @@ Taken together, these requirements make DeltaCAT suitable for production use on
1146
1146
  ## Additional Resources
1147
1147
  ### Table Documentation
1148
1148
 
1149
- The [Table](deltacat/docs/table/README.md) documentation provides a more comprehensive overview of DeltaCAT's table management APIs, including how to create, read, write, and manage tables.
1149
+ The [Table](https://github.com/ray-project/deltacat/tree/2.0/deltacat/docs/table/README.md) documentation provides a more comprehensive overview of DeltaCAT's table management APIs, including how to create, read, write, and manage tables.
1150
1150
 
1151
1151
  ### Schema Documentation
1152
1152
 
1153
- The [Schema](deltacat/docs/schema/README.md) documentation provides a more comprehensive overview of DeltaCAT's schema management APIs, supported data types, file formats, and data consistency guarantees.
1153
+ The [Schema](https://github.com/ray-project/deltacat/tree/2.0/deltacat/docs/schema/README.md) documentation provides a more comprehensive overview of DeltaCAT's schema management APIs, supported data types, file formats, and data consistency guarantees.
1154
1154
 
1155
1155
  ### DeltaCAT URLs and Filesystem APIs
1156
- The [DeltaCAT API Tests](deltacat/tests/test_deltacat_api.py) provide examples of how to efficiently explore, clone, and manipulate DeltaCAT catalogs by using DeltaCAT URLs together with filesystem-like list/copy/get/put APIs.
1156
+ The [DeltaCAT API Tests](https://github.com/ray-project/deltacat/tree/2.0/deltacat/tests/test_deltacat_api.py) provide examples of how to efficiently explore, clone, and manipulate DeltaCAT catalogs by using DeltaCAT URLs together with filesystem-like list/copy/get/put APIs.
1157
1157
 
1158
1158
  ### DeltaCAT Catalog APIs
1159
- The [Default Catalog Tests](deltacat/tests/catalog/test_default_catalog_impl.py) provide more exhaustive examples of DeltaCAT **Catalog** API behavior.
1159
+ The [Default Catalog Tests](https://github.com/ray-project/deltacat/tree/2.0/deltacat/tests/catalog/test_default_catalog_impl.py) provide more exhaustive examples of DeltaCAT **Catalog** API behavior.
1160
1160
 
1161
1161
  ### Examples
1162
1162
 
1163
- The [DeltaCAT Examples](deltacat/examples/) show how to build more advanced applications like external data source indexers and custom dataset compactors. They also demonstrate some experimental features like Apache Iceberg and Apache Beam integrations.
1163
+ The [DeltaCAT Examples](https://github.com/ray-project/deltacat/tree/2.0/deltacat/examples/) show how to build more advanced applications like external data source indexers and custom dataset compactors. They also demonstrate some experimental features like Apache Iceberg and Apache Beam integrations.
@@ -1,4 +1,4 @@
1
- deltacat/__init__.py,sha256=zZ_TWAoH2cJMZ6Hj6Y_tbXlDOIvjMWbsmvs-PypCJk0,4449
1
+ deltacat/__init__.py,sha256=mTb9CK1GTZuGmALUxQtr717n6eUNusG9tbcPyTpXNI8,4452
2
2
  deltacat/annotations.py,sha256=9lBi34DpIV_RPjCCK2Aiz_6nMyd-e-_CfQ1XtdRQQlM,1196
3
3
  deltacat/api.py,sha256=MwCB60tWzEru-Jv1tTWcxYWuID3e5GbCy1jwn4XiDXs,20497
4
4
  deltacat/constants.py,sha256=HPE3SbK1-LRjtTu3OKD9s4N__LWMwj3xFP2N3Qy8fzM,4701
@@ -432,8 +432,8 @@ deltacat/utils/ray_utils/concurrency.py,sha256=Ceui6nQYKHTUOTltHNQIdb0OWHFhD73o8
432
432
  deltacat/utils/ray_utils/dataset.py,sha256=5RnVqFlKoZ6zabnQfjfXAKWuXDMKvLp4eNcDgpFj3OM,6480
433
433
  deltacat/utils/ray_utils/performance.py,sha256=d7JFM7vTXHzkGx9qNQcZzUWajnqINvYRwaM088_FpsE,464
434
434
  deltacat/utils/ray_utils/runtime.py,sha256=cf5koY9q4TzRg--BjPtC6y0jztq45F39KcC4K6Wmg4w,6946
435
- deltacat-2.0.0b12.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
436
- deltacat-2.0.0b12.dist-info/METADATA,sha256=ueX4vMg9w5PZNI6XwmUM8W_x0nXh7RFU21aYfSszunA,46462
437
- deltacat-2.0.0b12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
438
- deltacat-2.0.0b12.dist-info/top_level.txt,sha256=RWdIcid4Bv2i2ozLVh-70kJpyB61xEKXod9XXGpiono,9
439
- deltacat-2.0.0b12.dist-info/RECORD,,
435
+ deltacat-2.0.0.post1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
436
+ deltacat-2.0.0.post1.dist-info/METADATA,sha256=RPLgM5MfzkMaH55vich_RCULmhvzmDi_2Zq6uK3-5aA,46952
437
+ deltacat-2.0.0.post1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
438
+ deltacat-2.0.0.post1.dist-info/top_level.txt,sha256=RWdIcid4Bv2i2ozLVh-70kJpyB61xEKXod9XXGpiono,9
439
+ deltacat-2.0.0.post1.dist-info/RECORD,,