acryl-datahub-cloud 0.3.7.8rc1__py3-none-any.whl → 0.3.7.8rc2__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.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py +5 -3
- {acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/METADATA +33 -33
- {acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/RECORD +7 -7
- {acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/top_level.txt +0 -0
|
@@ -275,25 +275,27 @@ class DataHubUsageFeatureReportingSource(StatefulIngestionSourceBase):
|
|
|
275
275
|
"last_modified_at": (
|
|
276
276
|
doc["_source"]["lastModifiedAt"]
|
|
277
277
|
if "lastModifiedAt" in doc["_source"]
|
|
278
|
+
and doc["_source"]["lastModifiedAt"]
|
|
278
279
|
else (
|
|
279
280
|
doc["_source"]["lastModifiedAt"]
|
|
280
281
|
if "lastModifiedAt" in doc["_source"]
|
|
282
|
+
and doc["_source"]["lastModifiedAt"]
|
|
281
283
|
else None
|
|
282
284
|
)
|
|
283
285
|
),
|
|
284
286
|
"removed": (
|
|
285
287
|
doc["_source"]["removed"]
|
|
286
|
-
if "removed" in doc["_source"]
|
|
288
|
+
if "removed" in doc["_source"] and doc["_source"]["removed"]
|
|
287
289
|
else False
|
|
288
290
|
),
|
|
289
291
|
"siblings": (
|
|
290
292
|
doc["_source"]["siblings"]
|
|
291
|
-
if "siblings" in doc["_source"]
|
|
293
|
+
if "siblings" in doc["_source"] and doc["_source"]["siblings"]
|
|
292
294
|
else []
|
|
293
295
|
),
|
|
294
296
|
"isView": (
|
|
295
297
|
"View" in doc["_source"]["typeNames"]
|
|
296
|
-
if "typeNames" in doc["_source"]
|
|
298
|
+
if "typeNames" in doc["_source"] and doc["_source"]["typeNames"]
|
|
297
299
|
else False
|
|
298
300
|
),
|
|
299
301
|
}
|
{acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/METADATA
RENAMED
|
@@ -1,80 +1,80 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: acryl-datahub-cloud
|
|
3
|
-
Version: 0.3.7.
|
|
3
|
+
Version: 0.3.7.8rc2
|
|
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: pandas; extra == "datahub-lineage-features"
|
|
8
7
|
Requires-Dist: pydantic<2; extra == "datahub-lineage-features"
|
|
9
8
|
Requires-Dist: pyarrow; extra == "datahub-lineage-features"
|
|
10
9
|
Requires-Dist: duckdb; extra == "datahub-lineage-features"
|
|
11
10
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-lineage-features"
|
|
11
|
+
Requires-Dist: pandas; extra == "datahub-lineage-features"
|
|
12
12
|
Provides-Extra: datahub-reporting-forms
|
|
13
|
-
Requires-Dist:
|
|
13
|
+
Requires-Dist: boto3; extra == "datahub-reporting-forms"
|
|
14
14
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-forms"
|
|
15
15
|
Requires-Dist: pyarrow; extra == "datahub-reporting-forms"
|
|
16
16
|
Requires-Dist: duckdb; extra == "datahub-reporting-forms"
|
|
17
|
-
Requires-Dist:
|
|
17
|
+
Requires-Dist: pandas; extra == "datahub-reporting-forms"
|
|
18
18
|
Provides-Extra: datahub-reporting-extract-graph
|
|
19
|
-
Requires-Dist:
|
|
19
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-graph"
|
|
20
20
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-graph"
|
|
21
21
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-graph"
|
|
22
22
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-graph"
|
|
23
23
|
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-reporting-extract-graph"
|
|
24
|
-
Requires-Dist:
|
|
24
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-graph"
|
|
25
25
|
Provides-Extra: datahub-reporting-extract-sql
|
|
26
|
-
Requires-Dist:
|
|
26
|
+
Requires-Dist: boto3; extra == "datahub-reporting-extract-sql"
|
|
27
27
|
Requires-Dist: pydantic<2; extra == "datahub-reporting-extract-sql"
|
|
28
28
|
Requires-Dist: pyarrow; extra == "datahub-reporting-extract-sql"
|
|
29
29
|
Requires-Dist: duckdb; extra == "datahub-reporting-extract-sql"
|
|
30
|
-
Requires-Dist:
|
|
30
|
+
Requires-Dist: pandas; extra == "datahub-reporting-extract-sql"
|
|
31
31
|
Provides-Extra: datahub-usage-feature-reporting
|
|
32
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
|
|
33
33
|
Requires-Dist: pydantic<2; extra == "datahub-usage-feature-reporting"
|
|
34
|
+
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
35
|
+
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
34
36
|
Requires-Dist: scipy<=1.14.1; extra == "datahub-usage-feature-reporting"
|
|
37
|
+
Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
|
|
35
38
|
Requires-Dist: elasticsearch==7.13.4; extra == "datahub-usage-feature-reporting"
|
|
36
39
|
Requires-Dist: duckdb; extra == "datahub-usage-feature-reporting"
|
|
37
|
-
Requires-Dist: numpy<2; extra == "datahub-usage-feature-reporting"
|
|
38
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
39
|
-
Requires-Dist: boto3; extra == "datahub-usage-feature-reporting"
|
|
40
|
-
Requires-Dist: polars<=1.16.0; extra == "datahub-usage-feature-reporting"
|
|
41
|
-
Requires-Dist: pyarrow; extra == "datahub-usage-feature-reporting"
|
|
42
40
|
Requires-Dist: pyarrow<=18.0.0; extra == "datahub-usage-feature-reporting"
|
|
41
|
+
Requires-Dist: pandas; extra == "datahub-usage-feature-reporting"
|
|
42
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "datahub-usage-feature-reporting"
|
|
43
43
|
Provides-Extra: acryl-cs-issues
|
|
44
|
+
Requires-Dist: openai; extra == "acryl-cs-issues"
|
|
44
45
|
Requires-Dist: zenpy; extra == "acryl-cs-issues"
|
|
45
|
-
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
46
46
|
Requires-Dist: jinja2; extra == "acryl-cs-issues"
|
|
47
|
-
Requires-Dist:
|
|
47
|
+
Requires-Dist: slack-sdk; extra == "acryl-cs-issues"
|
|
48
48
|
Provides-Extra: all
|
|
49
|
-
Requires-Dist:
|
|
50
|
-
Requires-Dist: zenpy; extra == "all"
|
|
49
|
+
Requires-Dist: boto3; extra == "all"
|
|
51
50
|
Requires-Dist: pydantic<2; extra == "all"
|
|
51
|
+
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
52
|
+
Requires-Dist: numpy<2; extra == "all"
|
|
52
53
|
Requires-Dist: scipy<=1.14.1; extra == "all"
|
|
54
|
+
Requires-Dist: pyarrow; extra == "all"
|
|
53
55
|
Requires-Dist: elasticsearch==7.13.4; extra == "all"
|
|
56
|
+
Requires-Dist: jinja2; extra == "all"
|
|
54
57
|
Requires-Dist: duckdb; extra == "all"
|
|
55
|
-
Requires-Dist:
|
|
56
|
-
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
57
|
-
Requires-Dist: boto3; extra == "all"
|
|
58
|
+
Requires-Dist: zenpy; extra == "all"
|
|
58
59
|
Requires-Dist: pyarrow<=18.0.0; extra == "all"
|
|
59
60
|
Requires-Dist: slack-sdk; extra == "all"
|
|
60
|
-
Requires-Dist:
|
|
61
|
-
Requires-Dist: polars<=1.16.0; extra == "all"
|
|
62
|
-
Requires-Dist: jinja2; extra == "all"
|
|
61
|
+
Requires-Dist: pandas; extra == "all"
|
|
63
62
|
Requires-Dist: openai; extra == "all"
|
|
63
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "all"
|
|
64
64
|
Provides-Extra: dev
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist: zenpy; extra == "dev"
|
|
65
|
+
Requires-Dist: boto3; extra == "dev"
|
|
67
66
|
Requires-Dist: pydantic<2; extra == "dev"
|
|
67
|
+
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
68
|
+
Requires-Dist: numpy<2; extra == "dev"
|
|
68
69
|
Requires-Dist: scipy<=1.14.1; extra == "dev"
|
|
70
|
+
Requires-Dist: pyarrow; extra == "dev"
|
|
69
71
|
Requires-Dist: elasticsearch==7.13.4; extra == "dev"
|
|
70
|
-
Requires-Dist:
|
|
72
|
+
Requires-Dist: jinja2; extra == "dev"
|
|
71
73
|
Requires-Dist: duckdb; extra == "dev"
|
|
72
|
-
Requires-Dist:
|
|
73
|
-
Requires-Dist: boto3; extra == "dev"
|
|
74
|
-
Requires-Dist: numpy<2; extra == "dev"
|
|
74
|
+
Requires-Dist: zenpy; extra == "dev"
|
|
75
75
|
Requires-Dist: pyarrow<=18.0.0; extra == "dev"
|
|
76
76
|
Requires-Dist: slack-sdk; extra == "dev"
|
|
77
|
-
Requires-Dist:
|
|
78
|
-
Requires-Dist: polars<=1.16.0; extra == "dev"
|
|
79
|
-
Requires-Dist: jinja2; extra == "dev"
|
|
77
|
+
Requires-Dist: pandas; extra == "dev"
|
|
80
78
|
Requires-Dist: openai; extra == "dev"
|
|
79
|
+
Requires-Dist: acryl-datahub[dev]; extra == "dev"
|
|
80
|
+
Requires-Dist: opensearch-py==2.4.2; extra == "dev"
|
{acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/RECORD
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
acryl_datahub_cloud/__init__.py,sha256=axrMXkn0RW80YmuZgwUP_YQImcv6L28duZLWnW-gaNM,521
|
|
2
|
-
acryl_datahub_cloud/_codegen_config.json,sha256=
|
|
2
|
+
acryl_datahub_cloud/_codegen_config.json,sha256=adOOP7JhlcXyTJqfnXY7if96pMI-Zpr_4drGYlJLgQI,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
|
|
@@ -18,7 +18,7 @@ acryl_datahub_cloud/datahub_reporting/forms_config.py,sha256=3uzFKriUoWBNXLVMaEt
|
|
|
18
18
|
acryl_datahub_cloud/datahub_usage_reporting/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
acryl_datahub_cloud/datahub_usage_reporting/query_builder.py,sha256=qOVyjPv-LlszFGjBvCZgMi9gcb1fT72uh_p64JRnWBk,5280
|
|
20
20
|
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_patch_builder.py,sha256=gR9neaHfi0JMQmAKMlgJCEuZIni7cdPFApGOKa5Pn4Y,14406
|
|
21
|
-
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=
|
|
21
|
+
acryl_datahub_cloud/datahub_usage_reporting/usage_feature_reporter.py,sha256=MC-TecCxqZeIrjJaWTArOyCkhYNd4FaL9QbAk3XrWAo,63233
|
|
22
22
|
acryl_datahub_cloud/elasticsearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
23
|
acryl_datahub_cloud/elasticsearch/config.py,sha256=6QNBOmoQZu1cJrDIBZyvZgdQt0QLfP82hdQkPtP-4HE,1220
|
|
24
24
|
acryl_datahub_cloud/elasticsearch/graph_service.py,sha256=K4ykcSMxlrhlDrchhte3vEb1mcw8QkOmdIFSVSX4OVU,2788
|
|
@@ -375,8 +375,8 @@ acryl_datahub_cloud/metadata/schemas/UsageFeatures.avsc,sha256=B7mqUWVwduvWSP9zp
|
|
|
375
375
|
acryl_datahub_cloud/metadata/schemas/VersionInfo.avsc,sha256=9gMcZ8tjuhgcZiq2gOAp_EOV9q9jvuOgfph6m6v_X7c,1189
|
|
376
376
|
acryl_datahub_cloud/metadata/schemas/ViewProperties.avsc,sha256=3HhcbH5493dJUnEUtFMYMVfbYQ52aDedm5L4j77Nym4,1032
|
|
377
377
|
acryl_datahub_cloud/metadata/schemas/__init__.py,sha256=uvLNC3VyCkWA_v8e9FdA1leFf46NFKDD0AajCfihepI,581
|
|
378
|
-
acryl_datahub_cloud-0.3.7.
|
|
379
|
-
acryl_datahub_cloud-0.3.7.
|
|
380
|
-
acryl_datahub_cloud-0.3.7.
|
|
381
|
-
acryl_datahub_cloud-0.3.7.
|
|
382
|
-
acryl_datahub_cloud-0.3.7.
|
|
378
|
+
acryl_datahub_cloud-0.3.7.8rc2.dist-info/METADATA,sha256=TDedJfi81nt1jiIjCRi9B6re2OFDw5O0gvnG2xGODKg,4067
|
|
379
|
+
acryl_datahub_cloud-0.3.7.8rc2.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
380
|
+
acryl_datahub_cloud-0.3.7.8rc2.dist-info/entry_points.txt,sha256=pnIeD0q0iBd34tcq2N2vtgVOlos5oGp-bQ8bTvfNUd8,879
|
|
381
|
+
acryl_datahub_cloud-0.3.7.8rc2.dist-info/top_level.txt,sha256=EwgCxfX-DzJANwxj-Mx_j4TOfAFhmc_FgMbRPzWsoZs,20
|
|
382
|
+
acryl_datahub_cloud-0.3.7.8rc2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{acryl_datahub_cloud-0.3.7.8rc1.dist-info → acryl_datahub_cloud-0.3.7.8rc2.dist-info}/top_level.txt
RENAMED
|
File without changes
|