fluent-plugin-openlineage-light 0.1.0

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.
Files changed (120) hide show
  1. checksums.yaml +7 -0
  2. data/.github/dependabot.yml +6 -0
  3. data/.github/workflows/linux.yml +30 -0
  4. data/.gitignore +16 -0
  5. data/.idea/.gitignore +8 -0
  6. data/.idea/fluentd.iml +204 -0
  7. data/.idea/misc.xml +4 -0
  8. data/.idea/modules/benchmark-memory-0.2.iml +12 -0
  9. data/.idea/modules/bigdecimal-3.1.iml +11 -0
  10. data/.idea/modules/certstore_c-0.1.iml +15 -0
  11. data/.idea/modules/concurrent-ruby-1.3.iml +18 -0
  12. data/.idea/modules/concurrent-ruby-1.31.iml +15 -0
  13. data/.idea/modules/connection_pool-2.4.iml +11 -0
  14. data/.idea/modules/cool.io-1.8.iml +16 -0
  15. data/.idea/modules/drb-2.2.iml +14 -0
  16. data/.idea/modules/drb-2.21.iml +11 -0
  17. data/.idea/modules/ffi-1.17.iml +20 -0
  18. data/.idea/modules/ffi-win32-extensions-1.0.iml +19 -0
  19. data/.idea/modules/fluentd-1.17.iml +43 -0
  20. data/.idea/modules/http_parser.rb-0.8.iml +17 -0
  21. data/.idea/modules/json-2.7.iml +14 -0
  22. data/.idea/modules/json-2.71.iml +11 -0
  23. data/.idea/modules/msgpack-1.7.iml +15 -0
  24. data/.idea/modules/mutex_m-0.2.iml +15 -0
  25. data/.idea/modules/new_gem.iml +15 -0
  26. data/.idea/modules/power_assert-2.0.iml +19 -0
  27. data/.idea/modules/rake-13.2.iml +18 -0
  28. data/.idea/modules/rake-13.21.iml +15 -0
  29. data/.idea/modules/rake-compiler-1.2.iml +13 -0
  30. data/.idea/modules/rusty_json_schema-0.15.iml +15 -0
  31. data/.idea/modules/serverengine-2.3.iml +17 -0
  32. data/.idea/modules/sigdump-0.2.iml +16 -0
  33. data/.idea/modules/specifications.iml +14 -0
  34. data/.idea/modules/specifications1.iml +11 -0
  35. data/.idea/modules/strptime-0.2.iml +16 -0
  36. data/.idea/modules/thermite-0.13.iml +17 -0
  37. data/.idea/modules/webrick-1.8.iml +18 -0
  38. data/.idea/modules/win32-event-0.6.iml +21 -0
  39. data/.idea/modules/win32-ipc-0.7.iml +20 -0
  40. data/.idea/modules/yajl-ruby-1.4.iml +779 -0
  41. data/.idea/modules.xml +41 -0
  42. data/.rspec +2 -0
  43. data/ChangeLog +3 -0
  44. data/Gemfile +3 -0
  45. data/LICENSE +202 -0
  46. data/README.md +41 -0
  47. data/Rakefile +13 -0
  48. data/fluent-plugin-openlineage-light.gemspec +28 -0
  49. data/lib/fluent/plugin/parser_openlineage.rb +203 -0
  50. data/misc/fluent.conf +101 -0
  51. data/misc/test-complete.json +73 -0
  52. data/misc/test-start.json +73 -0
  53. data/spec/Naming.md +500 -0
  54. data/spec/OpenLineage.json +304 -0
  55. data/spec/Versioning.md +49 -0
  56. data/spec/events/event_full.json +206 -0
  57. data/spec/events/event_invalid_dataset_facet.json +31 -0
  58. data/spec/events/event_invalid_input_dataset_facet.json +29 -0
  59. data/spec/events/event_invalid_job_facet.json +26 -0
  60. data/spec/events/event_invalid_output_dataset_facet.json +29 -0
  61. data/spec/events/event_invalid_run_facet.json +28 -0
  62. data/spec/events/event_no_run_id.json +28 -0
  63. data/spec/events/event_simple.json +29 -0
  64. data/spec/facets/ColumnLineageDatasetFacet.json +96 -0
  65. data/spec/facets/ColumnLineageDatasetFacet.md +106 -0
  66. data/spec/facets/DataQualityAssertionsDatasetFacet.json +49 -0
  67. data/spec/facets/DataQualityMetricsInputDatasetFacet.json +76 -0
  68. data/spec/facets/DatasetVersionDatasetFacet.json +31 -0
  69. data/spec/facets/DatasourceDatasetFacet.json +32 -0
  70. data/spec/facets/DocumentationDatasetFacet.json +31 -0
  71. data/spec/facets/DocumentationJobFacet.json +30 -0
  72. data/spec/facets/ErrorMessageRunFacet.json +41 -0
  73. data/spec/facets/ExternalQueryRunFacet.json +36 -0
  74. data/spec/facets/ExternalQueryRunFacet.md +49 -0
  75. data/spec/facets/ExtractionErrorRunFacet.json +58 -0
  76. data/spec/facets/JobTypeJobFacet.json +41 -0
  77. data/spec/facets/LifecycleStateChangeDatasetFacet.json +46 -0
  78. data/spec/facets/NominalTimeRunFacet.json +38 -0
  79. data/spec/facets/OutputStatisticsOutputDatasetFacet.json +36 -0
  80. data/spec/facets/OwnershipDatasetFacet.json +45 -0
  81. data/spec/facets/OwnershipJobFacet.json +45 -0
  82. data/spec/facets/ParentRunFacet.json +54 -0
  83. data/spec/facets/ProcessingEngineRunFacet.json +41 -0
  84. data/spec/facets/SQLJobFacet.json +30 -0
  85. data/spec/facets/SchemaDatasetFacet.json +59 -0
  86. data/spec/facets/SourceCodeJobFacet.json +34 -0
  87. data/spec/facets/SourceCodeLocationJobFacet.json +60 -0
  88. data/spec/facets/StorageDatasetFacet.json +35 -0
  89. data/spec/facets/SymlinksDatasetFacet.json +47 -0
  90. data/spec/fluent/plugin/test_parser_openlineage.rb +141 -0
  91. data/spec/registry/core/registry.json +31 -0
  92. data/spec/registry/gcp/facets/GcpCommonJobFacet.json +43 -0
  93. data/spec/registry/gcp/registry.json +6 -0
  94. data/spec/spec_helper.rb +8 -0
  95. data/spec/tests/ColumnLineageDatasetFacet/1.json +172 -0
  96. data/spec/tests/DataQualityAssertionsDatasetFacet/1.json +58 -0
  97. data/spec/tests/DataQualityMetricsInputDatasetFacet/1.json +23 -0
  98. data/spec/tests/DatasetVersionDatasetFacet/1.json +7 -0
  99. data/spec/tests/DatasourceDatasetFacet/1.json +7 -0
  100. data/spec/tests/DocumentationDatasetFacet/1.json +7 -0
  101. data/spec/tests/DocumentationJobFacet/1.json +7 -0
  102. data/spec/tests/ErrorMessageRunFacet/1.json +9 -0
  103. data/spec/tests/ExternalQueryRunFacet/1.json +8 -0
  104. data/spec/tests/ExtractionErrorRunFacet/1.json +15 -0
  105. data/spec/tests/JobTypeJobFacet/1.json +9 -0
  106. data/spec/tests/LifecycleStateChangeDatasetFacet/1.json +11 -0
  107. data/spec/tests/NominalTimeRunFacet/1.json +8 -0
  108. data/spec/tests/OutputStatisticsOutputDatasetFacet/1.json +9 -0
  109. data/spec/tests/OwnershipDatasetFacet/1.json +11 -0
  110. data/spec/tests/OwnershipJobFacet/1.json +11 -0
  111. data/spec/tests/ParentRunFacet/1.json +13 -0
  112. data/spec/tests/ProcessingEngineRunFacet/1.json +9 -0
  113. data/spec/tests/SQLJobFacet/1.json +7 -0
  114. data/spec/tests/SchemaDatasetFacet/1.json +92 -0
  115. data/spec/tests/SourceCodeJobFacet/1.json +8 -0
  116. data/spec/tests/SourceCodeLocationJobFacet/1.json +8 -0
  117. data/spec/tests/StorageDatasetFacet/1.json +8 -0
  118. data/spec/tests/SymlinksDatasetFacet/1.json +13 -0
  119. data/spec/tests/example_full_event.json +24 -0
  120. metadata +304 -0
@@ -0,0 +1,8 @@
1
+ {
2
+ "nominalTime": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/tree/0.0.1/client/python",
4
+ "_schemaURL": "https://raw.githubusercontent.com/OpenLineage/OpenLineage/main/spec/OpenLineage.json#/definitions/NominalTimeRunFacet",
5
+ "nominalEndTime": "2020-01-02",
6
+ "nominalStartTime": "2020-01-01"
7
+ }
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "outputStatistics": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
4
+ "_schemaURL": "https://openlineage.io/spec/1-0-1/OpenLineage.json#/definitions/OutputStatisticsOutputDatasetFacet",
5
+ "rowCount": 2000,
6
+ "size": 2097152,
7
+ "fileCount": 5
8
+ }
9
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "ownership": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
4
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/OwnershipDatasetFacet.json",
5
+ "owners": [
6
+ {
7
+ "name": "owner"
8
+ }
9
+ ]
10
+ }
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "ownership": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
4
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/OwnershipJobFacet.json",
5
+ "owners": [
6
+ {
7
+ "name": "owner"
8
+ }
9
+ ]
10
+ }
11
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "parent": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/tree/0.0.1/integration/dbt",
4
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/ParentRunFacet.json",
5
+ "run": {
6
+ "runId": "f99310b4-3c3c-1a1a-2b2b-c1b95c24ff11"
7
+ },
8
+ "job": {
9
+ "namespace": "dbt",
10
+ "name": "dbt-job-name"
11
+ }
12
+ }
13
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "processing_engine": {
3
+ "version": "2.5.0",
4
+ "name": "Airflow",
5
+ "openlineageAdapterVersion": "0.29.2",
6
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
7
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/ProcessingEngineRunFacet.json"
8
+ }
9
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "sql": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/tree/0.0.1/integration/dbt",
4
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/SQLJobFacet.json",
5
+ "query": "\n\nwith orders as (\n\n select * from \"postgres\".\"public\".\"stg_orders\"\n\n),\n\npayments as (\n\n select * from \"postgres\".\"public\".\"stg_payments\"\n\n),\n\norder_payments as (\n\n select\n order_id,\n\n sum(case when payment_method = 'credit_card' then amount else 0 end) as credit_card_amount,\n sum(case when payment_method = 'coupon' then amount else 0 end) as coupon_amount,\n sum(case when payment_method = 'bank_transfer' then amount else 0 end) as bank_transfer_amount,\n sum(case when payment_method = 'gift_card' then amount else 0 end) as gift_card_amount,\n sum(amount) as total_amount\n\n from payments\n\n group by order_id\n\n),\n\nfinal as (\n\n select\n orders.order_id,\n orders.customer_id,\n orders.order_date,\n orders.status,\n\n order_payments.credit_card_amount,\n\n order_payments.coupon_amount,\n\n order_payments.bank_transfer_amount,\n\n order_payments.gift_card_amount,\n\n order_payments.total_amount as amount\n\n from orders\n\n\n left join order_payments\n on orders.order_id = order_payments.order_id\n\n)\n\nselect * from final"
6
+ }
7
+ }
@@ -0,0 +1,92 @@
1
+ {
2
+ "schema": {
3
+ "fields": [
4
+ {
5
+ "name": "user_id",
6
+ "type": "int64"
7
+ },
8
+ {
9
+ "name": "counterparty_id",
10
+ "type": "int64"
11
+ },
12
+ {
13
+ "name": "currency",
14
+ "type": "object"
15
+ },
16
+ {
17
+ "name": "amount",
18
+ "type": "int64"
19
+ },
20
+ {
21
+ "name": "phones",
22
+ "type": "array",
23
+ "description": "List of phone numbers",
24
+ "fields": [
25
+ {
26
+ "name": "_element",
27
+ "type": "string",
28
+ "description": "Phone number"
29
+ }
30
+ ]
31
+ },
32
+ {
33
+ "name": "addresses",
34
+ "type": "struct",
35
+ "description": "Has customer completed activation process",
36
+ "fields": [
37
+ {
38
+ "name": "type",
39
+ "type": "string",
40
+ "description": "Address type, g.e. home, work, etc."
41
+ },
42
+ {
43
+ "name": "country",
44
+ "type": "string",
45
+ "description": "Country name"
46
+ },
47
+ {
48
+ "name": "zip",
49
+ "type": "string",
50
+ "description": "Zip code"
51
+ },
52
+ {
53
+ "name": "state",
54
+ "type": "string",
55
+ "description": "State name"
56
+ },
57
+ {
58
+ "name": "street",
59
+ "type": "string",
60
+ "description": "Street name"
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "name": "custom_properties",
66
+ "type": "map",
67
+ "fields": [
68
+ {
69
+ "name": "key",
70
+ "type": "string"
71
+ },
72
+ {
73
+ "name": "value",
74
+ "type": "union",
75
+ "fields": [
76
+ {
77
+ "name": "_0",
78
+ "type": "string"
79
+ },
80
+ {
81
+ "name": "_1",
82
+ "type": "int64"
83
+ }
84
+ ]
85
+ }
86
+ ]
87
+ }
88
+ ],
89
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
90
+ "_schemaURL": "https://openlineage.io/spec/facets/1-1-0/SchemaDatasetFacet.json"
91
+ }
92
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "sourceCode": {
3
+ "language": "bash",
4
+ "sourceCode": "ls -halt && exit 0",
5
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
6
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/SourceCodeJobFacet.json"
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "sourceCodeLocation": {
3
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
4
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/SourceCodeLocationJobFacet.json",
5
+ "type": "git",
6
+ "url": "http://example.com"
7
+ }
8
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "storage": {
3
+ "storageLayer": "delta",
4
+ "fileFormat": "parquet",
5
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
6
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/StorageDatasetFacet.json"
7
+ }
8
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "symlinks": {
3
+ "identifiers": [
4
+ {
5
+ "namespace": "/tmp/alter_test",
6
+ "name": "default.alter_table_test_new",
7
+ "type": "TABLE"
8
+ }
9
+ ],
10
+ "_producer": "https://github.com/OpenLineage/OpenLineage/blob/v1-0-0/client",
11
+ "_schemaURL": "https://openlineage.io/spec/facets/1-0-0/SymlinksDatasetFacet.json"
12
+ }
13
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "eventTime": "2023-07-17T10:54:22.355067Z",
3
+ "eventType": "COMPLETE",
4
+ "inputs": [],
5
+ "job": {
6
+ "facets": {
7
+ "sql": {
8
+ "query": "SELECT 1",
9
+ "_producer": "http://123",
10
+ "_schemaURL": "http://123"
11
+ }
12
+ },
13
+ "name": "dbt",
14
+ "namespace": "food_delivery"
15
+ },
16
+ "outputs": [],
17
+ "producer": "https://github.com/OpenLineage/OpenLineage/tree/0.30.0/integration/airflow",
18
+ "run": {
19
+ "facets": {},
20
+ "runId": "f69a6e9b-9bac-3c9a-9cf6-eacb70ecc9a9"
21
+ },
22
+ "dataset": { "namespace": "123", "name": "1" },
23
+ "schemaURL": "https://openlineage.io/spec/1-0-5/OpenLineage.json#/definitions/RunEvent"
24
+ }
metadata ADDED
@@ -0,0 +1,304 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fluent-plugin-openlineage-light
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Pawel Leszczynski
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-08-12 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: test-unit
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: fluentd
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: 0.14.10
62
+ - - "<"
63
+ - !ruby/object:Gem::Version
64
+ version: '2'
65
+ type: :runtime
66
+ prerelease: false
67
+ version_requirements: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: 0.14.10
72
+ - - "<"
73
+ - !ruby/object:Gem::Version
74
+ version: '2'
75
+ - !ruby/object:Gem::Dependency
76
+ name: rusty_json_schema
77
+ requirement: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ type: :runtime
83
+ prerelease: false
84
+ version_requirements: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ description: Fluentd parser that validates if JSON is a valid Openlineage event.
90
+ email:
91
+ - leszczynski.pawel@gmail.com
92
+ executables: []
93
+ extensions: []
94
+ extra_rdoc_files: []
95
+ files:
96
+ - ".github/dependabot.yml"
97
+ - ".github/workflows/linux.yml"
98
+ - ".gitignore"
99
+ - ".idea/.gitignore"
100
+ - ".idea/fluentd.iml"
101
+ - ".idea/misc.xml"
102
+ - ".idea/modules.xml"
103
+ - ".idea/modules/benchmark-memory-0.2.iml"
104
+ - ".idea/modules/bigdecimal-3.1.iml"
105
+ - ".idea/modules/certstore_c-0.1.iml"
106
+ - ".idea/modules/concurrent-ruby-1.3.iml"
107
+ - ".idea/modules/concurrent-ruby-1.31.iml"
108
+ - ".idea/modules/connection_pool-2.4.iml"
109
+ - ".idea/modules/cool.io-1.8.iml"
110
+ - ".idea/modules/drb-2.2.iml"
111
+ - ".idea/modules/drb-2.21.iml"
112
+ - ".idea/modules/ffi-1.17.iml"
113
+ - ".idea/modules/ffi-win32-extensions-1.0.iml"
114
+ - ".idea/modules/fluentd-1.17.iml"
115
+ - ".idea/modules/http_parser.rb-0.8.iml"
116
+ - ".idea/modules/json-2.7.iml"
117
+ - ".idea/modules/json-2.71.iml"
118
+ - ".idea/modules/msgpack-1.7.iml"
119
+ - ".idea/modules/mutex_m-0.2.iml"
120
+ - ".idea/modules/new_gem.iml"
121
+ - ".idea/modules/power_assert-2.0.iml"
122
+ - ".idea/modules/rake-13.2.iml"
123
+ - ".idea/modules/rake-13.21.iml"
124
+ - ".idea/modules/rake-compiler-1.2.iml"
125
+ - ".idea/modules/rusty_json_schema-0.15.iml"
126
+ - ".idea/modules/serverengine-2.3.iml"
127
+ - ".idea/modules/sigdump-0.2.iml"
128
+ - ".idea/modules/specifications.iml"
129
+ - ".idea/modules/specifications1.iml"
130
+ - ".idea/modules/strptime-0.2.iml"
131
+ - ".idea/modules/thermite-0.13.iml"
132
+ - ".idea/modules/webrick-1.8.iml"
133
+ - ".idea/modules/win32-event-0.6.iml"
134
+ - ".idea/modules/win32-ipc-0.7.iml"
135
+ - ".idea/modules/yajl-ruby-1.4.iml"
136
+ - ".rspec"
137
+ - ChangeLog
138
+ - Gemfile
139
+ - LICENSE
140
+ - README.md
141
+ - Rakefile
142
+ - fluent-plugin-openlineage-light.gemspec
143
+ - lib/fluent/plugin/parser_openlineage.rb
144
+ - misc/fluent.conf
145
+ - misc/test-complete.json
146
+ - misc/test-start.json
147
+ - spec/Naming.md
148
+ - spec/OpenLineage.json
149
+ - spec/Versioning.md
150
+ - spec/events/event_full.json
151
+ - spec/events/event_invalid_dataset_facet.json
152
+ - spec/events/event_invalid_input_dataset_facet.json
153
+ - spec/events/event_invalid_job_facet.json
154
+ - spec/events/event_invalid_output_dataset_facet.json
155
+ - spec/events/event_invalid_run_facet.json
156
+ - spec/events/event_no_run_id.json
157
+ - spec/events/event_simple.json
158
+ - spec/facets/ColumnLineageDatasetFacet.json
159
+ - spec/facets/ColumnLineageDatasetFacet.md
160
+ - spec/facets/DataQualityAssertionsDatasetFacet.json
161
+ - spec/facets/DataQualityMetricsInputDatasetFacet.json
162
+ - spec/facets/DatasetVersionDatasetFacet.json
163
+ - spec/facets/DatasourceDatasetFacet.json
164
+ - spec/facets/DocumentationDatasetFacet.json
165
+ - spec/facets/DocumentationJobFacet.json
166
+ - spec/facets/ErrorMessageRunFacet.json
167
+ - spec/facets/ExternalQueryRunFacet.json
168
+ - spec/facets/ExternalQueryRunFacet.md
169
+ - spec/facets/ExtractionErrorRunFacet.json
170
+ - spec/facets/JobTypeJobFacet.json
171
+ - spec/facets/LifecycleStateChangeDatasetFacet.json
172
+ - spec/facets/NominalTimeRunFacet.json
173
+ - spec/facets/OutputStatisticsOutputDatasetFacet.json
174
+ - spec/facets/OwnershipDatasetFacet.json
175
+ - spec/facets/OwnershipJobFacet.json
176
+ - spec/facets/ParentRunFacet.json
177
+ - spec/facets/ProcessingEngineRunFacet.json
178
+ - spec/facets/SQLJobFacet.json
179
+ - spec/facets/SchemaDatasetFacet.json
180
+ - spec/facets/SourceCodeJobFacet.json
181
+ - spec/facets/SourceCodeLocationJobFacet.json
182
+ - spec/facets/StorageDatasetFacet.json
183
+ - spec/facets/SymlinksDatasetFacet.json
184
+ - spec/fluent/plugin/test_parser_openlineage.rb
185
+ - spec/registry/core/registry.json
186
+ - spec/registry/gcp/facets/GcpCommonJobFacet.json
187
+ - spec/registry/gcp/registry.json
188
+ - spec/spec_helper.rb
189
+ - spec/tests/ColumnLineageDatasetFacet/1.json
190
+ - spec/tests/DataQualityAssertionsDatasetFacet/1.json
191
+ - spec/tests/DataQualityMetricsInputDatasetFacet/1.json
192
+ - spec/tests/DatasetVersionDatasetFacet/1.json
193
+ - spec/tests/DatasourceDatasetFacet/1.json
194
+ - spec/tests/DocumentationDatasetFacet/1.json
195
+ - spec/tests/DocumentationJobFacet/1.json
196
+ - spec/tests/ErrorMessageRunFacet/1.json
197
+ - spec/tests/ExternalQueryRunFacet/1.json
198
+ - spec/tests/ExtractionErrorRunFacet/1.json
199
+ - spec/tests/JobTypeJobFacet/1.json
200
+ - spec/tests/LifecycleStateChangeDatasetFacet/1.json
201
+ - spec/tests/NominalTimeRunFacet/1.json
202
+ - spec/tests/OutputStatisticsOutputDatasetFacet/1.json
203
+ - spec/tests/OwnershipDatasetFacet/1.json
204
+ - spec/tests/OwnershipJobFacet/1.json
205
+ - spec/tests/ParentRunFacet/1.json
206
+ - spec/tests/ProcessingEngineRunFacet/1.json
207
+ - spec/tests/SQLJobFacet/1.json
208
+ - spec/tests/SchemaDatasetFacet/1.json
209
+ - spec/tests/SourceCodeJobFacet/1.json
210
+ - spec/tests/SourceCodeLocationJobFacet/1.json
211
+ - spec/tests/StorageDatasetFacet/1.json
212
+ - spec/tests/SymlinksDatasetFacet/1.json
213
+ - spec/tests/example_full_event.json
214
+ homepage: http://openlineage.io
215
+ licenses:
216
+ - Apache-2.0
217
+ metadata: {}
218
+ post_install_message:
219
+ rdoc_options: []
220
+ require_paths:
221
+ - lib
222
+ required_ruby_version: !ruby/object:Gem::Requirement
223
+ requirements:
224
+ - - ">="
225
+ - !ruby/object:Gem::Version
226
+ version: '0'
227
+ required_rubygems_version: !ruby/object:Gem::Requirement
228
+ requirements:
229
+ - - ">="
230
+ - !ruby/object:Gem::Version
231
+ version: '0'
232
+ requirements: []
233
+ rubygems_version: 3.5.16
234
+ signing_key:
235
+ specification_version: 4
236
+ summary: Parser to validate Openlineage events.
237
+ test_files:
238
+ - spec/Naming.md
239
+ - spec/OpenLineage.json
240
+ - spec/Versioning.md
241
+ - spec/events/event_full.json
242
+ - spec/events/event_invalid_dataset_facet.json
243
+ - spec/events/event_invalid_input_dataset_facet.json
244
+ - spec/events/event_invalid_job_facet.json
245
+ - spec/events/event_invalid_output_dataset_facet.json
246
+ - spec/events/event_invalid_run_facet.json
247
+ - spec/events/event_no_run_id.json
248
+ - spec/events/event_simple.json
249
+ - spec/facets/ColumnLineageDatasetFacet.json
250
+ - spec/facets/ColumnLineageDatasetFacet.md
251
+ - spec/facets/DataQualityAssertionsDatasetFacet.json
252
+ - spec/facets/DataQualityMetricsInputDatasetFacet.json
253
+ - spec/facets/DatasetVersionDatasetFacet.json
254
+ - spec/facets/DatasourceDatasetFacet.json
255
+ - spec/facets/DocumentationDatasetFacet.json
256
+ - spec/facets/DocumentationJobFacet.json
257
+ - spec/facets/ErrorMessageRunFacet.json
258
+ - spec/facets/ExternalQueryRunFacet.json
259
+ - spec/facets/ExternalQueryRunFacet.md
260
+ - spec/facets/ExtractionErrorRunFacet.json
261
+ - spec/facets/JobTypeJobFacet.json
262
+ - spec/facets/LifecycleStateChangeDatasetFacet.json
263
+ - spec/facets/NominalTimeRunFacet.json
264
+ - spec/facets/OutputStatisticsOutputDatasetFacet.json
265
+ - spec/facets/OwnershipDatasetFacet.json
266
+ - spec/facets/OwnershipJobFacet.json
267
+ - spec/facets/ParentRunFacet.json
268
+ - spec/facets/ProcessingEngineRunFacet.json
269
+ - spec/facets/SQLJobFacet.json
270
+ - spec/facets/SchemaDatasetFacet.json
271
+ - spec/facets/SourceCodeJobFacet.json
272
+ - spec/facets/SourceCodeLocationJobFacet.json
273
+ - spec/facets/StorageDatasetFacet.json
274
+ - spec/facets/SymlinksDatasetFacet.json
275
+ - spec/fluent/plugin/test_parser_openlineage.rb
276
+ - spec/registry/core/registry.json
277
+ - spec/registry/gcp/facets/GcpCommonJobFacet.json
278
+ - spec/registry/gcp/registry.json
279
+ - spec/spec_helper.rb
280
+ - spec/tests/ColumnLineageDatasetFacet/1.json
281
+ - spec/tests/DataQualityAssertionsDatasetFacet/1.json
282
+ - spec/tests/DataQualityMetricsInputDatasetFacet/1.json
283
+ - spec/tests/DatasetVersionDatasetFacet/1.json
284
+ - spec/tests/DatasourceDatasetFacet/1.json
285
+ - spec/tests/DocumentationDatasetFacet/1.json
286
+ - spec/tests/DocumentationJobFacet/1.json
287
+ - spec/tests/ErrorMessageRunFacet/1.json
288
+ - spec/tests/ExternalQueryRunFacet/1.json
289
+ - spec/tests/ExtractionErrorRunFacet/1.json
290
+ - spec/tests/JobTypeJobFacet/1.json
291
+ - spec/tests/LifecycleStateChangeDatasetFacet/1.json
292
+ - spec/tests/NominalTimeRunFacet/1.json
293
+ - spec/tests/OutputStatisticsOutputDatasetFacet/1.json
294
+ - spec/tests/OwnershipDatasetFacet/1.json
295
+ - spec/tests/OwnershipJobFacet/1.json
296
+ - spec/tests/ParentRunFacet/1.json
297
+ - spec/tests/ProcessingEngineRunFacet/1.json
298
+ - spec/tests/SQLJobFacet/1.json
299
+ - spec/tests/SchemaDatasetFacet/1.json
300
+ - spec/tests/SourceCodeJobFacet/1.json
301
+ - spec/tests/SourceCodeLocationJobFacet/1.json
302
+ - spec/tests/StorageDatasetFacet/1.json
303
+ - spec/tests/SymlinksDatasetFacet/1.json
304
+ - spec/tests/example_full_event.json