acryl-datahub-cloud 0.3.7.7rc5__py3-none-any.whl → 0.3.7.7rc7__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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "acryl-datahub-cloud",
3
- "version": "0.3.7.7rc5",
3
+ "version": "0.3.7.7rc7",
4
4
  "install_requires": [
5
5
  "avro-gen3==0.7.16",
6
6
  "acryl-datahub"
@@ -0,0 +1,163 @@
1
+ from typing import Dict
2
+
3
+
4
+ class QueryBuilder:
5
+ @staticmethod
6
+ def get_soft_deleted_entities_query() -> Dict:
7
+ return {
8
+ "sort": [{"urn": {"order": "asc"}}],
9
+ }
10
+
11
+ @staticmethod
12
+ def get_query_entities_query() -> Dict:
13
+ return {
14
+ "sort": [{"urn": {"order": "asc"}}],
15
+ "query": {
16
+ "bool": {
17
+ "filter": {
18
+ "bool": {
19
+ "must_not": [
20
+ {"term": {"source": "MANUAL"}},
21
+ ]
22
+ }
23
+ }
24
+ }
25
+ },
26
+ }
27
+
28
+ @staticmethod
29
+ def get_upstreams_query() -> Dict:
30
+ return {
31
+ "sort": [{"destination.urn": {"order": "asc"}}],
32
+ "query": {
33
+ "bool": {
34
+ "must": [
35
+ {"terms": {"destination.entityType": ["dataset"]}},
36
+ {"terms": {"source.entityType": ["dataset"]}},
37
+ ]
38
+ }
39
+ },
40
+ }
41
+
42
+ @staticmethod
43
+ def get_dashboard_usage_query(days: int) -> Dict:
44
+ return {
45
+ "sort": [{"urn": {"order": "asc"}}],
46
+ "query": {
47
+ "bool": {
48
+ "filter": {
49
+ "bool": {
50
+ "must": [
51
+ {
52
+ "range": {
53
+ "@timestamp": {
54
+ "gte": f"now-{days}d",
55
+ "lt": "now/d",
56
+ }
57
+ }
58
+ },
59
+ {"term": {"isExploded": False}},
60
+ ]
61
+ }
62
+ }
63
+ }
64
+ },
65
+ }
66
+
67
+ @staticmethod
68
+ def get_dataset_usage_query(days: int) -> Dict:
69
+ return {
70
+ "sort": [{"urn": {"order": "asc"}}],
71
+ "query": {
72
+ "bool": {
73
+ "filter": {
74
+ "bool": {
75
+ "must": [
76
+ {
77
+ "range": {
78
+ "@timestamp": {
79
+ "gte": f"now-{days}d/d",
80
+ "lt": "now/d",
81
+ }
82
+ }
83
+ },
84
+ {"term": {"isExploded": False}},
85
+ {"range": {"totalSqlQueries": {"gt": 0}}},
86
+ ]
87
+ }
88
+ }
89
+ }
90
+ },
91
+ }
92
+
93
+ @staticmethod
94
+ def get_dataset_write_usage_raw_query(days: int) -> Dict:
95
+ return {
96
+ "sort": [{"urn": {"order": "asc"}}, {"@timestamp": {"order": "asc"}}],
97
+ "query": {
98
+ "bool": {
99
+ "must": [
100
+ {
101
+ "range": {
102
+ "@timestamp": {"gte": f"now-{days}d/d", "lte": "now/d"}
103
+ }
104
+ },
105
+ {"terms": {"operationType": ["INSERT", "UPDATE", "CREATE"]}},
106
+ ]
107
+ }
108
+ },
109
+ "_source": {
110
+ "includes": ["urn", "@timestamp"],
111
+ },
112
+ }
113
+
114
+ @staticmethod
115
+ def get_dataset_write_usage_composite_query(days: int) -> Dict:
116
+ return {
117
+ "query": {
118
+ "bool": {
119
+ "must": [
120
+ {
121
+ "range": {
122
+ "@timestamp": {"gte": f"now-{days}d/d", "lte": "now/d"}
123
+ }
124
+ },
125
+ {"terms": {"operationType": ["INSERT", "UPDATE", "CREATE"]}},
126
+ ]
127
+ }
128
+ },
129
+ "aggs": {
130
+ "urn_count": {
131
+ "composite": {
132
+ "sources": [
133
+ {"dataset_operationaspect_v1": {"terms": {"field": "urn"}}}
134
+ ]
135
+ }
136
+ }
137
+ },
138
+ }
139
+
140
+ @staticmethod
141
+ def get_query_usage_query(days: int) -> Dict:
142
+ return {
143
+ "sort": [{"urn": {"order": "asc"}}],
144
+ "query": {
145
+ "bool": {
146
+ "filter": {
147
+ "bool": {
148
+ "must": [
149
+ {
150
+ "range": {
151
+ "@timestamp": {
152
+ "gte": f"now-{days}d/d",
153
+ "lt": "now/d",
154
+ }
155
+ }
156
+ },
157
+ {"term": {"isExploded": False}},
158
+ ]
159
+ }
160
+ }
161
+ }
162
+ },
163
+ }
@@ -20,6 +20,7 @@ from opensearchpy import OpenSearch
20
20
  from pydantic import Field
21
21
  from scipy.stats import expon
22
22
 
23
+ from acryl_datahub_cloud.datahub_usage_reporting.query_builder import QueryBuilder
23
24
  from acryl_datahub_cloud.datahub_usage_reporting.usage_feature_patch_builder import (
24
25
  UsageFeaturePatchBuilder,
25
26
  )
@@ -58,119 +59,6 @@ platform_regexp = re.compile(r"urn:li:dataset:\(urn:li:dataPlatform:(.+?),.*")
58
59
  dashboard_chart_platform_regexp = re.compile(r"urn:li:(?:dashboard|chart):\((.+?),.*")
59
60
  dbt_platform_regexp = re.compile(r"urn:li:dataset:\(urn:li:dataPlatform:dbt,.*\)")
60
61
 
61
- GET_SOFT_DELETED_ENTITIES = {
62
- "sort": [{"urn": {"order": "asc"}}],
63
- }
64
-
65
- GET_QUERY_ENTITIES = {
66
- "sort": [{"urn": {"order": "asc"}}],
67
- "query": {
68
- "bool": {
69
- "filter": {
70
- "bool": {
71
- "must_not": [
72
- {"term": {"source": "MANUAL"}},
73
- ]
74
- }
75
- }
76
- }
77
- },
78
- }
79
-
80
- GET_UPSTREAMS = {
81
- "sort": [{"destination.urn": {"order": "asc"}}],
82
- "query": {
83
- "bool": {
84
- "must": [
85
- {"terms": {"destination.entityType": ["dataset"]}},
86
- {"terms": {"source.entityType": ["dataset"]}},
87
- ]
88
- }
89
- },
90
- }
91
-
92
- GET_DASHBOARD_USAGE_QUERY = {
93
- "sort": [{"urn": {"order": "asc"}}],
94
- "query": {
95
- "bool": {
96
- "filter": {
97
- "bool": {
98
- "must": [
99
- {"range": {"@timestamp": {"gte": "now-30d", "lt": "now/d"}}},
100
- {"term": {"isExploded": False}},
101
- ]
102
- }
103
- }
104
- }
105
- },
106
- }
107
-
108
- GET_DATASET_USAGE_QUERY = {
109
- "sort": [{"urn": {"order": "asc"}}],
110
- "query": {
111
- "bool": {
112
- "filter": {
113
- "bool": {
114
- "must": [
115
- {"range": {"@timestamp": {"gte": "now-30d/d", "lt": "now/d"}}},
116
- {"term": {"isExploded": False}},
117
- {"range": {"totalSqlQueries": {"gt": 0}}},
118
- ]
119
- }
120
- }
121
- }
122
- },
123
- }
124
-
125
- DATASET_WRITE_USAGE_RAW_QUERY = {
126
- "sort": [{"urn": {"order": "asc"}}, {"@timestamp": {"order": "asc"}}],
127
- "query": {
128
- "bool": {
129
- "must": [
130
- {"range": {"@timestamp": {"gte": "now-30d/d", "lte": "now/d"}}},
131
- {"terms": {"operationType": ["INSERT", "UPDATE", "CREATE"]}},
132
- ]
133
- }
134
- },
135
- "_source": {
136
- "includes": ["urn", "@timestamp"],
137
- },
138
- }
139
-
140
- DATASET_WRITE_USAGE_COMPOSITE_QUERY = {
141
- "query": {
142
- "bool": {
143
- "must": [
144
- {"range": {"@timestamp": {"gte": "now-30d/d", "lte": "now/d"}}},
145
- {"terms": {"operationType": ["INSERT", "UPDATE", "CREATE"]}},
146
- ]
147
- }
148
- },
149
- "aggs": {
150
- "urn_count": {
151
- "composite": {
152
- "sources": [{"dataset_operationaspect_v1": {"terms": {"field": "urn"}}}]
153
- }
154
- }
155
- },
156
- }
157
-
158
- GET_QUERY_USAGE_QUERY = {
159
- "sort": [{"urn": {"order": "asc"}}],
160
- "query": {
161
- "bool": {
162
- "filter": {
163
- "bool": {
164
- "must": [
165
- {"range": {"@timestamp": {"gte": "now-30d/d", "lt": "now/d"}}},
166
- {"term": {"isExploded": False}},
167
- ]
168
- }
169
- }
170
- }
171
- },
172
- }
173
-
174
62
 
175
63
  class S3ClientConfig(ConfigModel):
176
64
  bucket: str = os.getenv("DATA_BUCKET", "")
@@ -206,7 +94,13 @@ class RankingPolicy(ConfigModel):
206
94
  regexp_based_factors: List[RegexpFactor] = []
207
95
 
208
96
 
209
- class DataHubUsageFeatureReportingSourceConfig(StatefulIngestionConfigBase):
97
+ class DataHubUsageFeatureReportingSourceConfig(
98
+ ConfigModel, StatefulIngestionConfigBase
99
+ ):
100
+ lookback_days: int = Field(
101
+ 30, description="Number of days to look back for usage data."
102
+ )
103
+
210
104
  server: Optional[DatahubClientConfig] = Field(
211
105
  None, description="Optional configuration for the DataHub server connection."
212
106
  )
@@ -882,7 +776,9 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
882
776
  if self.config.streaming_mode:
883
777
  wdf = self.load_es_data_to_lf(
884
778
  index="dataset_operationaspect_v1",
885
- query=DATASET_WRITE_USAGE_RAW_QUERY,
779
+ query=QueryBuilder.get_dataset_write_usage_raw_query(
780
+ self.config.lookback_days
781
+ ),
886
782
  read_function=self.write_stat_raw_batch,
887
783
  schema={"urn": polars.Categorical, "platform": polars.Categorical},
888
784
  )
@@ -891,7 +787,9 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
891
787
  wdf = polars.LazyFrame(
892
788
  self.load_data_from_es(
893
789
  "dataset_operationaspect_v1",
894
- DATASET_WRITE_USAGE_RAW_QUERY,
790
+ QueryBuilder.get_dataset_write_usage_raw_query(
791
+ self.config.lookback_days
792
+ ),
895
793
  self.write_stat_raw_batch,
896
794
  ),
897
795
  schema={"urn": polars.Categorical, "platform": polars.Categorical},
@@ -918,12 +816,12 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
918
816
  def load_write_usage_server_side_aggregation(
919
817
  self, soft_deleted_entities_df: polars.LazyFrame
920
818
  ) -> polars.LazyFrame:
921
- query: Dict = DATASET_WRITE_USAGE_COMPOSITE_QUERY
922
- query["aggs"]["urn_count"]["composite"]["size"] = self.config.extract_batch_size
923
819
  wdf = polars.LazyFrame(
924
820
  self.load_data_from_es(
925
821
  "dataset_operationaspect_v1",
926
- DATASET_WRITE_USAGE_COMPOSITE_QUERY,
822
+ QueryBuilder.get_dataset_write_usage_composite_query(
823
+ self.config.lookback_days
824
+ ),
927
825
  self.write_stat_batch,
928
826
  aggregation_key="urn_count",
929
827
  ),
@@ -954,7 +852,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
954
852
  upstreams_lf = polars.LazyFrame(
955
853
  self.load_data_from_es(
956
854
  "graph_service_v1",
957
- GET_UPSTREAMS,
855
+ QueryBuilder.get_upstreams_query(),
958
856
  self.upstream_lineage_batch,
959
857
  ),
960
858
  schema={
@@ -1289,7 +1187,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
1289
1187
  soft_deleted_df = polars.LazyFrame(
1290
1188
  self.load_data_from_es(
1291
1189
  index=entity_index,
1292
- query=GET_SOFT_DELETED_ENTITIES,
1190
+ query=QueryBuilder.get_soft_deleted_entities_query(),
1293
1191
  process_function=self.soft_deleted_batch,
1294
1192
  ),
1295
1193
  schema={
@@ -1305,7 +1203,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
1305
1203
  lf: polars.LazyFrame = polars.LazyFrame(
1306
1204
  self.load_data_from_es(
1307
1205
  index=usage_index,
1308
- query=GET_DASHBOARD_USAGE_QUERY,
1206
+ query=QueryBuilder.get_dashboard_usage_query(self.config.lookback_days),
1309
1207
  process_function=self.process_dashboard_usage,
1310
1208
  ),
1311
1209
  schema={
@@ -1405,7 +1303,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
1405
1303
  query_entities = polars.LazyFrame(
1406
1304
  self.load_data_from_es(
1407
1305
  index=entity_index,
1408
- query=GET_QUERY_ENTITIES,
1306
+ query=QueryBuilder.get_query_entities_query(),
1409
1307
  process_function=self.queries_entities_batch,
1410
1308
  ),
1411
1309
  schema={
@@ -1420,7 +1318,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
1420
1318
  lf: polars.LazyFrame = polars.LazyFrame(
1421
1319
  self.load_data_from_es(
1422
1320
  index=usage_index,
1423
- query=GET_QUERY_USAGE_QUERY,
1321
+ query=QueryBuilder.get_query_usage_query(self.config.lookback_days),
1424
1322
  process_function=self.process_query_usage,
1425
1323
  ),
1426
1324
  schema={
@@ -1484,7 +1382,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
1484
1382
  lf: polars.LazyFrame = polars.LazyFrame(
1485
1383
  self.load_data_from_es(
1486
1384
  index=index,
1487
- query=GET_DATASET_USAGE_QUERY,
1385
+ query=QueryBuilder.get_dataset_usage_query(self.config.lookback_days),
1488
1386
  process_function=self.process_batch,
1489
1387
  ),
1490
1388
  schema={
@@ -1576,7 +1474,7 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
1576
1474
  datasets_df = polars.LazyFrame(
1577
1475
  self.load_data_from_es(
1578
1476
  index="datasetindex_v2",
1579
- query=GET_SOFT_DELETED_ENTITIES,
1477
+ query=QueryBuilder.get_soft_deleted_entities_query(),
1580
1478
  process_function=self.soft_deleted_batch,
1581
1479
  ),
1582
1480
  schema={
@@ -1,80 +1,80 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: acryl-datahub-cloud
3
- Version: 0.3.7.7rc5
3
+ Version: 0.3.7.7rc7
4
4
  Requires-Dist: avro-gen3==0.7.16
5
5
  Requires-Dist: acryl-datahub
6
6
  Provides-Extra: datahub-lineage-features
7
+ Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
8
+ Requires-Dist: pyarrow; extra == "datahub-lineage-features"
7
9
  Requires-Dist: duckdb; extra == "datahub-lineage-features"
8
10
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
9
- Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
10
11
  Requires-Dist: pandas; extra == "datahub-lineage-features"
11
- Requires-Dist: pyarrow; extra == "datahub-lineage-features"
12
12
  Provides-Extra: datahub-reporting-forms
13
- Requires-Dist: duckdb; extra == "datahub-reporting-forms"
14
- Requires-Dist: boto3; extra == "datahub-reporting-forms"
15
13
  Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
16
- Requires-Dist: pandas; extra == "datahub-reporting-forms"
17
14
  Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
15
+ Requires-Dist: boto3; extra == "datahub-reporting-forms"
16
+ Requires-Dist: duckdb; extra == "datahub-reporting-forms"
17
+ Requires-Dist: pandas; extra == "datahub-reporting-forms"
18
18
  Provides-Extra: datahub-reporting-extract-graph
19
+ Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
20
+ Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
21
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
19
22
  Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
20
23
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
21
- Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
22
- Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
23
24
  Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
24
- Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
25
25
  Provides-Extra: datahub-reporting-extract-sql
26
- Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
27
- Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
28
26
  Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
29
- Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
30
27
  Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
28
+ Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
29
+ Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
30
+ Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
31
31
  Provides-Extra: datahub-usage-feature-reporting
32
+ Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
33
+ Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
34
+ Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
35
+ Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
32
36
  Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
37
+ Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
38
+ Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
39
+ Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
33
40
  Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
34
- Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
35
41
  Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
36
- Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
37
- Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
38
- Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
39
42
  Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
40
- Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
41
- Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
42
- Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
43
43
  Provides-Extra: acryl-cs-issues
44
- Requires-Dist: jinja2; extra == "acryl-cs-issues"
45
- Requires-Dist: openai; extra == "acryl-cs-issues"
46
44
  Requires-Dist: zenpy; extra == "acryl-cs-issues"
45
+ Requires-Dist: openai; extra == "acryl-cs-issues"
46
+ Requires-Dist: jinja2; extra == "acryl-cs-issues"
47
47
  Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
48
48
  Provides-Extra: all
49
- Requires-Dist: pyarrow<=18.0.0; extra == "all"
50
- Requires-Dist: scipy<=1.14.1; extra == "all"
51
- Requires-Dist: openai; extra == "all"
49
+ Requires-Dist: pydantic<2; extra == "all"
50
+ Requires-Dist: elasticsearch==7.13.4; extra == "all"
51
+ Requires-Dist: pyarrow; extra == "all"
52
52
  Requires-Dist: numpy<2; extra == "all"
53
+ Requires-Dist: pyarrow<=18.0.0; extra == "all"
53
54
  Requires-Dist: zenpy; extra == "all"
54
- Requires-Dist: opensearch-py==2.4.2; extra == "all"
55
- Requires-Dist: pyarrow; extra == "all"
56
- Requires-Dist: duckdb; extra == "all"
57
- Requires-Dist: elasticsearch==7.13.4; extra == "all"
58
- Requires-Dist: pandas; extra == "all"
55
+ Requires-Dist: polars<=1.16.0; extra == "all"
59
56
  Requires-Dist: jinja2; extra == "all"
60
57
  Requires-Dist: boto3; extra == "all"
58
+ Requires-Dist: duckdb; extra == "all"
61
59
  Requires-Dist: slack-sdk; extra == "all"
62
- Requires-Dist: pydantic<2; extra == "all"
63
- Requires-Dist: polars<=1.16.0; extra == "all"
60
+ Requires-Dist: scipy<=1.14.1; extra == "all"
61
+ Requires-Dist: opensearch-py==2.4.2; extra == "all"
62
+ Requires-Dist: pandas; extra == "all"
63
+ Requires-Dist: openai; extra == "all"
64
64
  Provides-Extra: dev
65
- Requires-Dist: pyarrow<=18.0.0; extra == "dev"
66
- Requires-Dist: scipy<=1.14.1; extra == "dev"
67
- Requires-Dist: openai; extra == "dev"
65
+ Requires-Dist: pydantic<2; extra == "dev"
66
+ Requires-Dist: elasticsearch==7.13.4; extra == "dev"
67
+ Requires-Dist: pyarrow; extra == "dev"
68
68
  Requires-Dist: numpy<2; extra == "dev"
69
- Requires-Dist: acryl-datahub[dev]; extra == "dev"
69
+ Requires-Dist: pyarrow<=18.0.0; extra == "dev"
70
70
  Requires-Dist: zenpy; extra == "dev"
71
- Requires-Dist: opensearch-py==2.4.2; extra == "dev"
72
- Requires-Dist: pyarrow; extra == "dev"
73
- Requires-Dist: duckdb; extra == "dev"
74
- Requires-Dist: elasticsearch==7.13.4; extra == "dev"
71
+ Requires-Dist: polars<=1.16.0; extra == "dev"
72
+ Requires-Dist: acryl-datahub[dev]; extra == "dev"
75
73
  Requires-Dist: jinja2; extra == "dev"
76
74
  Requires-Dist: boto3; extra == "dev"
75
+ Requires-Dist: duckdb; extra == "dev"
77
76
  Requires-Dist: slack-sdk; extra == "dev"
78
- Requires-Dist: pydantic<2; extra == "dev"
77
+ Requires-Dist: scipy<=1.14.1; extra == "dev"
78
+ Requires-Dist: opensearch-py==2.4.2; extra == "dev"
79
79
  Requires-Dist: pandas; extra == "dev"
80
- Requires-Dist: polars<=1.16.0; extra == "dev"
80
+ Requires-Dist: openai; extra == "dev"
@@ -1,5 +1,5 @@
1
1
  acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
2
- acryl_datahub_cloud/_codegen_config.json,sha256=XnVki-dBie6uVIRgKYRrEvrDAZmHoYftJ-gBrXHOYCs,557
2
+ acryl_datahub_cloud/_codegen_config.json,sha256=t6Faupx_kI2Tm3LxzHjqXz5vMOtcdD6rvraj_OdRMhk,557
3
3
  acryl_datahub_cloud/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  acryl_datahub_cloud/acryl_cs_issues/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  acryl_datahub_cloud/acryl_cs_issues/acryl_customer.py,sha256=uFjR2SqGS34y09-S9WqOqNGY8nOq6ptGf4y9781i8Z4,25230
@@ -16,8 +16,9 @@ acryl_datahub_cloud/datahub_reporting/extract_sql.py,sha256=5CakspY_EyDJCjbDH3P3
16
16
  acryl_datahub_cloud/datahub_reporting/forms.py,sha256=rOw3aZZ8XRb4JPrfMte8-Xq34snis6bp0gpx7Hf7uw4,5940
17
17
  acryl_datahub_cloud/datahub_reporting/forms_config.py,sha256=3uzFKriUoWBNXLVMaEtnx74fLuujV59kDQwi1HSxFNI,2102
18
18
  acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ acryl_datahub_cloud/datahub_usage_reporting/query_builder.py,sha256=qOVyjPv-LlszFGjBvCZgMi9gcb1fT72uh_p64JRnWBk,5280
19
20
  acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=gR9neaHfi0JMQmAKMlgJCEuZIni7cdPFApGOKa5Pn4Y,14406
20
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=3glHpWFmkDGPUnCUvlWUPsaPiO4SExnJFOut6jYTiW0,65332
21
+ acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=oV9z-XF_Euj7lzoHUPeEJz6TVVohnsluc7jc4cqPsro,63014
21
22
  acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
23
  acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
23
24
  acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
@@ -373,8 +374,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
373
374
  acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
374
375
  acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
375
376
  acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
376
- acryl_datahub_cloud-0.3.7.7rc5.dist-info/METADATA,sha256=bA0L1rUguBWWbX_y8QmDaLm2hQMHVhsqE5yjN02qG94,4067
377
- acryl_datahub_cloud-0.3.7.7rc5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
378
- acryl_datahub_cloud-0.3.7.7rc5.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
379
- acryl_datahub_cloud-0.3.7.7rc5.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
380
- acryl_datahub_cloud-0.3.7.7rc5.dist-info/RECORD,,
377
+ acryl_datahub_cloud-0.3.7.7rc7.dist-info/METADATA,sha256=PzpIhzZFMxrQPPfxbRYuZrvstrQXA2yENFycP3RTjO8,4067
378
+ acryl_datahub_cloud-0.3.7.7rc7.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
379
+ acryl_datahub_cloud-0.3.7.7rc7.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
380
+ acryl_datahub_cloud-0.3.7.7rc7.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
381
+ acryl_datahub_cloud-0.3.7.7rc7.dist-info/RECORD,,