deltacat 0.1.18b4__py3-none-any.whl → 0.1.18b7__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 +1 -1
- deltacat/compute/compactor/compaction_session.py +46 -6
- deltacat/compute/compactor/steps/dedupe.py +9 -14
- deltacat/compute/compactor/steps/hash_bucket.py +5 -3
- deltacat/compute/compactor/steps/materialize.py +18 -37
- deltacat/compute/compactor/utils/primary_key_index.py +9 -15
- deltacat/compute/compactor/utils/round_completion_file.py +11 -4
- deltacat/io/__init__.py +0 -7
- deltacat/io/file_object_store.py +48 -0
- deltacat/io/memcached_object_store.py +121 -0
- deltacat/io/object_store.py +51 -0
- deltacat/io/ray_plasma_object_store.py +23 -0
- deltacat/io/redis_object_store.py +114 -0
- deltacat/io/s3_object_store.py +44 -0
- deltacat/tests/compactor/utils/test_io.py +4 -0
- deltacat/tests/io/__init__.py +0 -0
- deltacat/tests/io/test_file_object_store.py +86 -0
- deltacat/tests/io/test_memcached_object_store.py +158 -0
- deltacat/tests/io/test_ray_plasma_object_store.py +54 -0
- deltacat/tests/io/test_redis_object_store.py +103 -0
- deltacat/tests/io/test_s3_object_store.py +59 -0
- deltacat/tests/utils/test_resources.py +4 -0
- {deltacat-0.1.18b4.dist-info → deltacat-0.1.18b7.dist-info}/METADATA +3 -1
- {deltacat-0.1.18b4.dist-info → deltacat-0.1.18b7.dist-info}/RECORD +27 -15
- {deltacat-0.1.18b4.dist-info → deltacat-0.1.18b7.dist-info}/LICENSE +0 -0
- {deltacat-0.1.18b4.dist-info → deltacat-0.1.18b7.dist-info}/WHEEL +0 -0
- {deltacat-0.1.18b4.dist-info → deltacat-0.1.18b7.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,103 @@
|
|
1
|
+
import unittest
|
2
|
+
from unittest import mock
|
3
|
+
|
4
|
+
|
5
|
+
class TestRedisObjectStore(unittest.TestCase):
|
6
|
+
|
7
|
+
TEST_VALUE = "test-value"
|
8
|
+
|
9
|
+
def setUp(self):
|
10
|
+
self.cloudpickle_patcher = mock.patch(
|
11
|
+
"deltacat.io.redis_object_store.cloudpickle"
|
12
|
+
)
|
13
|
+
self.cloudpickle_mock = self.cloudpickle_patcher.start()
|
14
|
+
self.socket_patcher = mock.patch("deltacat.io.redis_object_store.socket")
|
15
|
+
self.socket_mock = self.socket_patcher.start()
|
16
|
+
|
17
|
+
self.cloudpickle_mock.dumps.return_value = self.TEST_VALUE
|
18
|
+
self.cloudpickle_mock.loads.return_value = self.TEST_VALUE
|
19
|
+
self.socket_mock.gethostbyname.return_value = "0.0.0.0"
|
20
|
+
self.socket_mock.gethostname.return_value = "test-host"
|
21
|
+
|
22
|
+
from deltacat.io.redis_object_store import RedisObjectStore
|
23
|
+
|
24
|
+
self.object_store = RedisObjectStore()
|
25
|
+
|
26
|
+
super().setUpClass()
|
27
|
+
|
28
|
+
def tearDown(self) -> None:
|
29
|
+
self.cloudpickle_patcher.stop()
|
30
|
+
self.socket_patcher.stop()
|
31
|
+
|
32
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
33
|
+
def test_put_many_sanity(self, mock_client):
|
34
|
+
mock_client.Redis.return_value.mset.return_value = ["a", "b"]
|
35
|
+
|
36
|
+
result = self.object_store.put_many(["a", "b"])
|
37
|
+
|
38
|
+
self.assertEqual(2, len(result))
|
39
|
+
self.assertRegex(result[0], ".*_.*")
|
40
|
+
self.assertEqual(1, mock_client.Redis.return_value.mset.call_count)
|
41
|
+
|
42
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
43
|
+
def test_put_many_when_cache_fails(self, mock_client):
|
44
|
+
mock_client.Redis.return_value.mset.return_value = []
|
45
|
+
|
46
|
+
with self.assertRaises(RuntimeError):
|
47
|
+
self.object_store.put_many(["a", "b"])
|
48
|
+
|
49
|
+
self.assertEqual(1, mock_client.Redis.return_value.mset.call_count)
|
50
|
+
|
51
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
52
|
+
def test_get_many_sanity(self, mock_client):
|
53
|
+
mock_client.Redis.return_value.mget.return_value = ["a", "b"]
|
54
|
+
|
55
|
+
result = self.object_store.get_many(["test_ip", "test_ip"])
|
56
|
+
|
57
|
+
self.assertEqual(2, len(result))
|
58
|
+
self.assertEqual(1, mock_client.Redis.return_value.mget.call_count)
|
59
|
+
|
60
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
61
|
+
def test_get_many_when_cache_expired(self, mock_client):
|
62
|
+
mock_client.Redis.return_value.mget.return_value = ["value1"]
|
63
|
+
|
64
|
+
with self.assertRaises(AssertionError):
|
65
|
+
self.object_store.get_many(["test_ip", "test_ip"])
|
66
|
+
|
67
|
+
self.assertEqual(1, mock_client.Redis.return_value.mget.call_count)
|
68
|
+
|
69
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
70
|
+
def test_get_sanity(self, mock_client):
|
71
|
+
mock_client.Redis.return_value.get.return_value = self.TEST_VALUE
|
72
|
+
|
73
|
+
result = self.object_store.get("test_ip")
|
74
|
+
|
75
|
+
self.assertEqual(self.TEST_VALUE, result)
|
76
|
+
self.assertEqual(1, mock_client.Redis.return_value.get.call_count)
|
77
|
+
|
78
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
79
|
+
def test_get_when_cache_fails(self, mock_client):
|
80
|
+
mock_client.Redis.return_value.get.side_effect = RuntimeError()
|
81
|
+
|
82
|
+
with self.assertRaises(RuntimeError):
|
83
|
+
self.object_store.get("test_ip")
|
84
|
+
|
85
|
+
self.assertEqual(1, mock_client.Redis.return_value.get.call_count)
|
86
|
+
|
87
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
88
|
+
def test_put_sanity(self, mock_client):
|
89
|
+
mock_client.Redis.return_value.set.return_value = True
|
90
|
+
|
91
|
+
result = self.object_store.put("test")
|
92
|
+
|
93
|
+
self.assertIsNotNone(result)
|
94
|
+
self.assertEqual(1, mock_client.Redis.return_value.set.call_count)
|
95
|
+
|
96
|
+
@mock.patch("deltacat.io.redis_object_store.redis")
|
97
|
+
def test_put_when_cache_fails(self, mock_client):
|
98
|
+
mock_client.Redis.return_value.set.return_value = False
|
99
|
+
|
100
|
+
with self.assertRaises(RuntimeError):
|
101
|
+
self.object_store.put("test_ip")
|
102
|
+
|
103
|
+
self.assertEqual(1, mock_client.Redis.return_value.set.call_count)
|
@@ -0,0 +1,59 @@
|
|
1
|
+
import unittest
|
2
|
+
from unittest import mock
|
3
|
+
|
4
|
+
|
5
|
+
class TestS3ObjectStore(unittest.TestCase):
|
6
|
+
|
7
|
+
TEST_VALUE = "test-value"
|
8
|
+
|
9
|
+
@classmethod
|
10
|
+
def setUpClass(cls):
|
11
|
+
cls.ray_mock = mock.MagicMock()
|
12
|
+
|
13
|
+
cls.module_patcher = mock.patch.dict("sys.modules", {"ray": cls.ray_mock})
|
14
|
+
cls.module_patcher.start()
|
15
|
+
|
16
|
+
from deltacat.io.s3_object_store import S3ObjectStore
|
17
|
+
|
18
|
+
cls.object_store = S3ObjectStore(bucket_prefix="test")
|
19
|
+
|
20
|
+
super().setUpClass()
|
21
|
+
|
22
|
+
@classmethod
|
23
|
+
def tearDownClass(cls) -> None:
|
24
|
+
cls.module_patcher.stop()
|
25
|
+
|
26
|
+
@mock.patch("deltacat.io.s3_object_store.s3_utils.upload")
|
27
|
+
def test_put_many_sanity(self, mock_upload):
|
28
|
+
self.ray_mock.cloudpickle.dumps.return_value = self.TEST_VALUE
|
29
|
+
result = self.object_store.put_many(["a", "b"])
|
30
|
+
|
31
|
+
self.assertEqual(2, len(result))
|
32
|
+
self.assertEqual(2, mock_upload.call_count)
|
33
|
+
|
34
|
+
@mock.patch("deltacat.io.s3_object_store.s3_utils.download")
|
35
|
+
def test_get_many_sanity(self, mock_download):
|
36
|
+
self.ray_mock.cloudpickle.loads.return_value = self.TEST_VALUE
|
37
|
+
|
38
|
+
result = self.object_store.get_many(["test", "test"])
|
39
|
+
|
40
|
+
self.assertEqual(2, len(result))
|
41
|
+
self.assertEqual(2, mock_download.call_count)
|
42
|
+
|
43
|
+
@mock.patch("deltacat.io.s3_object_store.s3_utils.download")
|
44
|
+
def test_get_sanity(self, mock_download):
|
45
|
+
self.ray_mock.cloudpickle.loads.return_value = self.TEST_VALUE
|
46
|
+
|
47
|
+
result = self.object_store.get("test")
|
48
|
+
|
49
|
+
self.assertEqual(self.TEST_VALUE, result)
|
50
|
+
self.assertEqual(1, mock_download.call_count)
|
51
|
+
|
52
|
+
@mock.patch("deltacat.io.s3_object_store.s3_utils.upload")
|
53
|
+
def test_put_sanity(self, mock_upload):
|
54
|
+
self.ray_mock.cloudpickle.dumps.return_value = self.TEST_VALUE
|
55
|
+
|
56
|
+
result = self.object_store.put("test")
|
57
|
+
|
58
|
+
self.assertIsNotNone(result)
|
59
|
+
self.assertEqual(1, mock_upload.call_count)
|
@@ -27,6 +27,10 @@ class TestGetCurrentClusterUtilization(unittest.TestCase):
|
|
27
27
|
|
28
28
|
super().setUpClass()
|
29
29
|
|
30
|
+
@classmethod
|
31
|
+
def tearDownClass(cls) -> None:
|
32
|
+
cls.module_patcher.stop()
|
33
|
+
|
30
34
|
def test_sanity(self):
|
31
35
|
from deltacat.utils.resources import ClusterUtilization
|
32
36
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: deltacat
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.18b7
|
4
4
|
Summary: A scalable, fast, ACID-compliant Data Catalog powered by Ray.
|
5
5
|
Home-page: https://github.com/ray-project/deltacat
|
6
6
|
Author: Ray Team
|
@@ -23,6 +23,8 @@ Requires-Dist: ray[default] (~=2.0)
|
|
23
23
|
Requires-Dist: s3fs (==2022.2.0)
|
24
24
|
Requires-Dist: tenacity (==8.1.0)
|
25
25
|
Requires-Dist: typing-extensions (==4.4.0)
|
26
|
+
Requires-Dist: pymemcache (==4.0.0)
|
27
|
+
Requires-Dist: redis (==4.6.0)
|
26
28
|
|
27
29
|
# DeltaCAT
|
28
30
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
deltacat/__init__.py,sha256=
|
1
|
+
deltacat/__init__.py,sha256=j2URX0ymVm1wouW1S1SUL7icyOO--sonM98V129b5_w,1810
|
2
2
|
deltacat/constants.py,sha256=oMU8ypqvDBTG54-6MLGWrt9iJKTN-HKsSWxEWnWp77c,1969
|
3
3
|
deltacat/exceptions.py,sha256=x7qem7FLujXf-DzPsNcQ-XYkW3cF3A0YGIbxkcpz0Mw,146
|
4
4
|
deltacat/logs.py,sha256=yyve_6Y4bLWAdCOnxFOPrSR9FRXwZuh68_rRoPpmg08,5633
|
@@ -17,7 +17,7 @@ deltacat/catalog/model/catalog.py,sha256=-Ho7a3rV1hiOS9cSRCAor9AtXV9nJn9t_MDVql9
|
|
17
17
|
deltacat/catalog/model/table_definition.py,sha256=tKrM1mmaQlvxqXrLt3QJVZK5BZfaJnhjTZ6KjybYlhE,727
|
18
18
|
deltacat/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
19
19
|
deltacat/compute/compactor/__init__.py,sha256=kmWC-Qnw861k7mPhLH4fQEL6CaMeBql2AipHeFqJ2uI,1127
|
20
|
-
deltacat/compute/compactor/compaction_session.py,sha256=
|
20
|
+
deltacat/compute/compactor/compaction_session.py,sha256=pIm5SH-nIef5a75AFlD1wBTKhJECIUIl9sQzZ3Snj1E,25826
|
21
21
|
deltacat/compute/compactor/repartition_session.py,sha256=7e-5exas25725aNh326wK8m9qDmzlcchS7GT6fh0a2o,6776
|
22
22
|
deltacat/compute/compactor/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
23
23
|
deltacat/compute/compactor/model/compact_partition_params.py,sha256=QvjH10IsA8O6ufVzwPz-mcw326BT-Zbs29wFGCcGerA,5677
|
@@ -34,17 +34,17 @@ deltacat/compute/compactor/model/repartition_result.py,sha256=HZy7Ls6toI4rXgVW2y
|
|
34
34
|
deltacat/compute/compactor/model/round_completion_info.py,sha256=FEeFzsqXfSrWGjWbwodrXGtqx-FMXvrgqURSF0TbIVU,3763
|
35
35
|
deltacat/compute/compactor/model/sort_key.py,sha256=XDIoYrV18FciomV5yWxu1OaDsD78trmUUtseyRurIKo,4124
|
36
36
|
deltacat/compute/compactor/steps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
37
|
-
deltacat/compute/compactor/steps/dedupe.py,sha256=
|
38
|
-
deltacat/compute/compactor/steps/hash_bucket.py,sha256=
|
39
|
-
deltacat/compute/compactor/steps/materialize.py,sha256=
|
37
|
+
deltacat/compute/compactor/steps/dedupe.py,sha256=R6p43mOUWgA1t468FS8JU-Wlrr96tt0ccwa0uytuaRY,10063
|
38
|
+
deltacat/compute/compactor/steps/hash_bucket.py,sha256=ZzJQWulSOMve7bDZX7ZRuYAl4bSC4U5SJzPhpeGpKB0,9769
|
39
|
+
deltacat/compute/compactor/steps/materialize.py,sha256=mXxKSaPL7iYtqP-eiJlFwi8kuywFmiU5FLS2-DW5314,13964
|
40
40
|
deltacat/compute/compactor/steps/repartition.py,sha256=lpvxhiTC27MKqUXPN70H5L-FcLA1-yCCElERQq74Zig,9487
|
41
41
|
deltacat/compute/compactor/steps/rehash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
42
42
|
deltacat/compute/compactor/steps/rehash/rehash_bucket.py,sha256=yh-sBuUI3hqw2vk_nK9o-KDrgSww4oSvAz2hBxTkv8s,1765
|
43
43
|
deltacat/compute/compactor/steps/rehash/rewrite_index.py,sha256=-HVM08pk5ROHEgDP-FVty55-a_0dsGRiSnPlNJw7C6Q,1838
|
44
44
|
deltacat/compute/compactor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
45
45
|
deltacat/compute/compactor/utils/io.py,sha256=itraIfLGUFfVFrW-XHnsEEa9GNIJR4VCnav0LyjHons,16543
|
46
|
-
deltacat/compute/compactor/utils/primary_key_index.py,sha256=
|
47
|
-
deltacat/compute/compactor/utils/round_completion_file.py,sha256=
|
46
|
+
deltacat/compute/compactor/utils/primary_key_index.py,sha256=Y8MBkDMS4N9xgJpuqWcdqpdNbfrfycIABrKlGZwfoRM,11359
|
47
|
+
deltacat/compute/compactor/utils/round_completion_file.py,sha256=DmZfHeAXlQn0DDdcsIHZROHWfyBCKTY3pNUdHzalqkE,2284
|
48
48
|
deltacat/compute/compactor/utils/system_columns.py,sha256=I36NAEGwRegv56ouVLwTCCisyoOupDCbbaxtoFDzYTE,8121
|
49
49
|
deltacat/compute/metastats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
50
50
|
deltacat/compute/metastats/meta_stats.py,sha256=-Fb0yQAdUUgm2IShcWlPZto-qdivF-nK05sQqJu7K5s,18588
|
@@ -71,9 +71,15 @@ deltacat/compute/stats/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
71
71
|
deltacat/compute/stats/utils/intervals.py,sha256=9ezOzIrBGU1fWBuAn1CorJ3uX5COU7vxrfA7kI1cB7I,3094
|
72
72
|
deltacat/compute/stats/utils/io.py,sha256=ZXpntXqa41l5bxxAa2vcTW5mVpWeBIvd3QA9VWnX-aw,8573
|
73
73
|
deltacat/compute/stats/utils/manifest_stats_file.py,sha256=PtqW5Zc5e09HcfiAgvoZHVMJ2gamGdwmynMXOJNJUaY,3693
|
74
|
-
deltacat/io/__init__.py,sha256=
|
74
|
+
deltacat/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
75
75
|
deltacat/io/dataset.py,sha256=8w9sPVDpGnjjGVDWB39YSKWxq4zRv9VEfDtj7PYwjqM,3755
|
76
|
+
deltacat/io/file_object_store.py,sha256=HCFeXu9cWXPXVk54MHel_nw3-wIuzhMt2RI6jKzjRYM,1346
|
77
|
+
deltacat/io/memcached_object_store.py,sha256=2fhC1WAY2qcFzAynDrSaIIaMCqC8kUGsmvGeR0pD4I0,3943
|
78
|
+
deltacat/io/object_store.py,sha256=GX4pK-LY92s3uXRGcj8YsG2FFoiKfcJr2USIVz1ruGg,1380
|
79
|
+
deltacat/io/ray_plasma_object_store.py,sha256=pupw7ulZY_EV5dERJDCCW_y_hzVx3Hl_uAvpQTNIh-E,705
|
76
80
|
deltacat/io/read_api.py,sha256=BhkjL3xjY-fsa62AA9Yv20_88uTskn4_Bv2W6VmMXVA,7023
|
81
|
+
deltacat/io/redis_object_store.py,sha256=f54Qw-NMCDjUmKxrrok_swt0LkVDjfmaHdbtAujnxyA,3507
|
82
|
+
deltacat/io/s3_object_store.py,sha256=aF-Mn7qbyz1AjdvcbXGZfuUge6vzkR6PrUMsq3sBxk4,1317
|
77
83
|
deltacat/io/aws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
84
|
deltacat/io/aws/redshift/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
85
|
deltacat/io/aws/redshift/redshift_datasource.py,sha256=X183O4tgBqtaZOSFmMFvp-9mv8NX5kGvRvX0eoSX8rA,22599
|
@@ -94,14 +100,20 @@ deltacat/tests/test_repartition.py,sha256=xzqdfRzZS-bA1yBdPNxelecTFe2MtON5Lrd-jT
|
|
94
100
|
deltacat/tests/compactor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
101
|
deltacat/tests/compactor/test_compact_partition_params.py,sha256=0h0cXNg-1NslQ98Nld7brD1WHHhzzBZR1x16kUd7MdA,8848
|
96
102
|
deltacat/tests/compactor/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
97
|
-
deltacat/tests/compactor/utils/test_io.py,sha256=
|
103
|
+
deltacat/tests/compactor/utils/test_io.py,sha256=ioPyW0of5DdmK1NOe-UtKQYBOgMpA-yQfJVKoiuaXdE,3097
|
104
|
+
deltacat/tests/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
|
+
deltacat/tests/io/test_file_object_store.py,sha256=bHEJRleVHwvk-bbvAlNOFnOA_tbR8i0SxtsllMTb8w0,2559
|
106
|
+
deltacat/tests/io/test_memcached_object_store.py,sha256=ZViHYo5h-cThTXg3d46jvdU4C3e7WV5_kuIFKZigfxY,6907
|
107
|
+
deltacat/tests/io/test_ray_plasma_object_store.py,sha256=-wJZP6lRtEOogR25wjEiIBGz_lpvWVihwlZ5GqandZU,1911
|
108
|
+
deltacat/tests/io/test_redis_object_store.py,sha256=sZrXrYjkw8u_XrvFilhBbLc8PPnZiuMKa1_Bt9ka5qs,3838
|
109
|
+
deltacat/tests/io/test_s3_object_store.py,sha256=4b7PYEfQJnYGUz6fcLFWVVyRHTlH_yd8CIaCv9l33Gg,1900
|
98
110
|
deltacat/tests/stats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
99
111
|
deltacat/tests/stats/test_intervals.py,sha256=S92DgkALQ1WmbLWcxtvS7RlVGvL-XoPJKUUbkdn9_CQ,1955
|
100
112
|
deltacat/tests/test_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
101
113
|
deltacat/tests/test_utils/constants.py,sha256=zgqFmfIE5ZCtDw4NF-Y4ZEEnaPUP5nDY5768WPod0Fc,208
|
102
114
|
deltacat/tests/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
103
115
|
deltacat/tests/utils/test_record_batch_tables.py,sha256=AkG1WyljQmjnl-AxhbFWyo5LnMIKRyLScfgC2B_ES-s,11321
|
104
|
-
deltacat/tests/utils/test_resources.py,sha256=
|
116
|
+
deltacat/tests/utils/test_resources.py,sha256=8oCGNofatgWuif9-Mcis6fFcRCWXXtJnQ9Ff16Gp14g,1456
|
105
117
|
deltacat/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
106
118
|
deltacat/types/media.py,sha256=py1BnfMqNpJlW1RKzHWwB0NmQ33oCk9qg1fz7alvi3E,2187
|
107
119
|
deltacat/types/tables.py,sha256=yUzkzmUij8kssEYI_dfVDSLXf8HfMm_jpgWkPxDHAas,3893
|
@@ -120,8 +132,8 @@ deltacat/utils/ray_utils/concurrency.py,sha256=AyL7hpvYjkmsz-KcpYjVgPpNsmu-x8-rl
|
|
120
132
|
deltacat/utils/ray_utils/dataset.py,sha256=SIljK3UkSqQ6Ntit_iSiYt9yYjN_gGrCTX6_72XdQ3w,3244
|
121
133
|
deltacat/utils/ray_utils/performance.py,sha256=d7JFM7vTXHzkGx9qNQcZzUWajnqINvYRwaM088_FpsE,464
|
122
134
|
deltacat/utils/ray_utils/runtime.py,sha256=xOVkqL6o8qGsewGvzhMKxmCcqcFZDnNILuz5IGMgxSc,4991
|
123
|
-
deltacat-0.1.
|
124
|
-
deltacat-0.1.
|
125
|
-
deltacat-0.1.
|
126
|
-
deltacat-0.1.
|
127
|
-
deltacat-0.1.
|
135
|
+
deltacat-0.1.18b7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
136
|
+
deltacat-0.1.18b7.dist-info/METADATA,sha256=o8gkDXBrItOzyPPs72dvXTSL9MEwP5G8J5LCirD6XdY,1542
|
137
|
+
deltacat-0.1.18b7.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
138
|
+
deltacat-0.1.18b7.dist-info/top_level.txt,sha256=RWdIcid4Bv2i2ozLVh-70kJpyB61xEKXod9XXGpiono,9
|
139
|
+
deltacat-0.1.18b7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|