acryl-datahub 0.15.0.1rc12__py3-none-any.whl → 0.15.0.1rc13__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 might be problematic. Click here for more details.
- {acryl_datahub-0.15.0.1rc12.dist-info → acryl_datahub-0.15.0.1rc13.dist-info}/METADATA +2563 -2563
- {acryl_datahub-0.15.0.1rc12.dist-info → acryl_datahub-0.15.0.1rc13.dist-info}/RECORD +14 -13
- datahub/__init__.py +1 -1
- datahub/ingestion/reporting/datahub_ingestion_run_summary_provider.py +44 -1
- datahub/ingestion/source/gc/dataprocess_cleanup.py +4 -4
- datahub/ingestion/source/gc/soft_deleted_entity_cleanup.py +159 -71
- datahub/metadata/_schema_classes.py +61 -1
- datahub/metadata/com/linkedin/pegasus2avro/common/__init__.py +4 -0
- datahub/metadata/schema.avsc +64 -29
- datahub/metadata/schemas/DataJobKey.avsc +2 -1
- datahub/metadata/schemas/DataTransformLogic.avsc +63 -0
- {acryl_datahub-0.15.0.1rc12.dist-info → acryl_datahub-0.15.0.1rc13.dist-info}/WHEEL +0 -0
- {acryl_datahub-0.15.0.1rc12.dist-info → acryl_datahub-0.15.0.1rc13.dist-info}/entry_points.txt +0 -0
- {acryl_datahub-0.15.0.1rc12.dist-info → acryl_datahub-0.15.0.1rc13.dist-info}/top_level.txt +0 -0
datahub/metadata/schema.avsc
CHANGED
|
@@ -400,6 +400,69 @@
|
|
|
400
400
|
],
|
|
401
401
|
"doc": "Institutional memory of an entity. This is a way to link to relevant documentation and provide description of the documentation. Institutional or tribal knowledge is very important for users to leverage the entity."
|
|
402
402
|
},
|
|
403
|
+
{
|
|
404
|
+
"type": "record",
|
|
405
|
+
"Aspect": {
|
|
406
|
+
"name": "dataTransformLogic"
|
|
407
|
+
},
|
|
408
|
+
"name": "DataTransformLogic",
|
|
409
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
410
|
+
"fields": [
|
|
411
|
+
{
|
|
412
|
+
"type": {
|
|
413
|
+
"type": "array",
|
|
414
|
+
"items": {
|
|
415
|
+
"type": "record",
|
|
416
|
+
"name": "DataTransform",
|
|
417
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
418
|
+
"fields": [
|
|
419
|
+
{
|
|
420
|
+
"type": [
|
|
421
|
+
"null",
|
|
422
|
+
{
|
|
423
|
+
"type": "record",
|
|
424
|
+
"name": "QueryStatement",
|
|
425
|
+
"namespace": "com.linkedin.pegasus2avro.query",
|
|
426
|
+
"fields": [
|
|
427
|
+
{
|
|
428
|
+
"type": "string",
|
|
429
|
+
"name": "value",
|
|
430
|
+
"doc": "The query text"
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"type": {
|
|
434
|
+
"type": "enum",
|
|
435
|
+
"symbolDocs": {
|
|
436
|
+
"SQL": "A SQL Query"
|
|
437
|
+
},
|
|
438
|
+
"name": "QueryLanguage",
|
|
439
|
+
"namespace": "com.linkedin.pegasus2avro.query",
|
|
440
|
+
"symbols": [
|
|
441
|
+
"SQL"
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
"name": "language",
|
|
445
|
+
"default": "SQL",
|
|
446
|
+
"doc": "The language of the Query, e.g. SQL."
|
|
447
|
+
}
|
|
448
|
+
],
|
|
449
|
+
"doc": "A query statement against one or more data assets."
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"name": "queryStatement",
|
|
453
|
+
"default": null,
|
|
454
|
+
"doc": "The data transform may be defined by a query statement"
|
|
455
|
+
}
|
|
456
|
+
],
|
|
457
|
+
"doc": "Information about a transformation. It may be a query,"
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"name": "transforms",
|
|
461
|
+
"doc": "List of transformations applied"
|
|
462
|
+
}
|
|
463
|
+
],
|
|
464
|
+
"doc": "Information about a Query against one or more data assets (e.g. Tables or Views)."
|
|
465
|
+
},
|
|
403
466
|
{
|
|
404
467
|
"type": "record",
|
|
405
468
|
"Aspect": {
|
|
@@ -11947,35 +12010,7 @@
|
|
|
11947
12010
|
"namespace": "com.linkedin.pegasus2avro.query",
|
|
11948
12011
|
"fields": [
|
|
11949
12012
|
{
|
|
11950
|
-
"type":
|
|
11951
|
-
"type": "record",
|
|
11952
|
-
"name": "QueryStatement",
|
|
11953
|
-
"namespace": "com.linkedin.pegasus2avro.query",
|
|
11954
|
-
"fields": [
|
|
11955
|
-
{
|
|
11956
|
-
"type": "string",
|
|
11957
|
-
"name": "value",
|
|
11958
|
-
"doc": "The query text"
|
|
11959
|
-
},
|
|
11960
|
-
{
|
|
11961
|
-
"type": {
|
|
11962
|
-
"type": "enum",
|
|
11963
|
-
"symbolDocs": {
|
|
11964
|
-
"SQL": "A SQL Query"
|
|
11965
|
-
},
|
|
11966
|
-
"name": "QueryLanguage",
|
|
11967
|
-
"namespace": "com.linkedin.pegasus2avro.query",
|
|
11968
|
-
"symbols": [
|
|
11969
|
-
"SQL"
|
|
11970
|
-
]
|
|
11971
|
-
},
|
|
11972
|
-
"name": "language",
|
|
11973
|
-
"default": "SQL",
|
|
11974
|
-
"doc": "The language of the Query, e.g. SQL."
|
|
11975
|
-
}
|
|
11976
|
-
],
|
|
11977
|
-
"doc": "A query statement against one or more data assets."
|
|
11978
|
-
},
|
|
12013
|
+
"type": "com.linkedin.pegasus2avro.query.QueryStatement",
|
|
11979
12014
|
"name": "statement",
|
|
11980
12015
|
"doc": "The Query Statement."
|
|
11981
12016
|
},
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "record",
|
|
3
|
+
"Aspect": {
|
|
4
|
+
"name": "dataTransformLogic"
|
|
5
|
+
},
|
|
6
|
+
"name": "DataTransformLogic",
|
|
7
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
8
|
+
"fields": [
|
|
9
|
+
{
|
|
10
|
+
"type": {
|
|
11
|
+
"type": "array",
|
|
12
|
+
"items": {
|
|
13
|
+
"type": "record",
|
|
14
|
+
"name": "DataTransform",
|
|
15
|
+
"namespace": "com.linkedin.pegasus2avro.common",
|
|
16
|
+
"fields": [
|
|
17
|
+
{
|
|
18
|
+
"type": [
|
|
19
|
+
"null",
|
|
20
|
+
{
|
|
21
|
+
"type": "record",
|
|
22
|
+
"name": "QueryStatement",
|
|
23
|
+
"namespace": "com.linkedin.pegasus2avro.query",
|
|
24
|
+
"fields": [
|
|
25
|
+
{
|
|
26
|
+
"type": "string",
|
|
27
|
+
"name": "value",
|
|
28
|
+
"doc": "The query text"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"type": {
|
|
32
|
+
"type": "enum",
|
|
33
|
+
"symbolDocs": {
|
|
34
|
+
"SQL": "A SQL Query"
|
|
35
|
+
},
|
|
36
|
+
"name": "QueryLanguage",
|
|
37
|
+
"namespace": "com.linkedin.pegasus2avro.query",
|
|
38
|
+
"symbols": [
|
|
39
|
+
"SQL"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"name": "language",
|
|
43
|
+
"default": "SQL",
|
|
44
|
+
"doc": "The language of the Query, e.g. SQL."
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"doc": "A query statement against one or more data assets."
|
|
48
|
+
}
|
|
49
|
+
],
|
|
50
|
+
"name": "queryStatement",
|
|
51
|
+
"default": null,
|
|
52
|
+
"doc": "The data transform may be defined by a query statement"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"doc": "Information about a transformation. It may be a query,"
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"name": "transforms",
|
|
59
|
+
"doc": "List of transformations applied"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"doc": "Information about a Query against one or more data assets (e.g. Tables or Views)."
|
|
63
|
+
}
|
|
File without changes
|
{acryl_datahub-0.15.0.1rc12.dist-info → acryl_datahub-0.15.0.1rc13.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|