You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using [OpenLineage integration with Apache Flink 1.x](https://openlineage.io/docs/integrations/flink/flink1).
6
4
@@ -22,17 +20,15 @@ Using [OpenLineage integration with Apache Flink 1.x](https://openlineage.io/doc
22
20
23
21
- Add dependencies [openlineage-flink](https://mvnrepository.com/artifact/io.openlineage/openlineage-flink) and [kafka-clients](https://mvnrepository.com/artifact/org.apache.kafka/kafka-clients) to your Flink job:
- Create `openlineage.yml` file with content like:
58
53
59
-
```{code-block} yaml
60
-
:caption: openlineage.yml
54
+
```yaml title="openlineage.yml"
61
55
62
56
job:
63
57
namespace: http://some.host.name:18081 # set namespace to match Flink address
@@ -92,8 +86,7 @@ Using [OpenLineage integration with Apache Flink 1.x](https://openlineage.io/doc
92
86
93
87
At the end, this should look like this (see [Official documentation](https://nightlies.apache.org/flink/flink-docs-release-1.20/docs/deployment/resource-providers/standalone/docker/)):
94
88
95
-
```{code-block} yaml
96
-
:caption: docker-compose.yml
89
+
```yaml title="docker-compose.yml"
97
90
98
91
services:
99
92
jobmanager:
@@ -129,30 +122,24 @@ Browse frontend pages [Jobs](http://localhost:3000/jobs) to see what information
@@ -62,8 +58,7 @@ Using [OpenLineage integration with Apache Flink 2.x](https://openlineage.io/doc
62
58
63
59
- Create `openlineage.yml` file with content like:
64
60
65
-
```{code-block} yaml
66
-
:caption: openlineage.yml
61
+
```yaml title="openlineage.yml"
67
62
68
63
# Send RUNNING event every 1 hour.
69
64
# Using default interval (1 minute) just floods Kafka with useless RUNNING events.
@@ -94,8 +89,7 @@ Using [OpenLineage integration with Apache Flink 2.x](https://openlineage.io/doc
94
89
95
90
At the end, this should look like this (see [Official documentation](https://nightlies.apache.org/flink/flink-docs-release-2.0/docs/deployment/resource-providers/standalone/docker/)):
96
91
97
-
```{code-block} yaml
98
-
:caption: docker-compose.yml
92
+
```yaml title="docker-compose.yml"
99
93
100
94
services:
101
95
jobmanager:
@@ -132,30 +126,24 @@ Browse frontend pages [Jobs](http://localhost:3000/jobs) to see what information
0 commit comments