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
Copy file name to clipboardExpand all lines: website/docs/quickstart/flink.md
+82-1Lines changed: 82 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,12 +116,93 @@ You can also visit http://localhost:8083/ to see if Flink is running normally.
116
116
117
117
:::note
118
118
- If you want to additionally use an observability stack, follow one of the provided quickstart guides [here](maintenance/observability/quickstart.md) and then continue with this guide.
119
-
- If you want to run with your own Flink environment, remember to download the [fluss-flink connector jar](/downloads), [flink-connector-faker](https://github.com/knaufk/flink-faker/releases) and then put them to `FLINK_HOME/lib/`.
120
119
- All the following commands involving `docker compose` should be executed in the created working directory that contains the `docker-compose.yml` file.
121
120
:::
122
121
123
122
Congratulations, you are all set!
124
123
124
+
If you want to run with your own Flink environment, you can follow the following instructions.
125
+
126
+
1. Download the desired Flink version (The following example takes Apache Flink 1.20 as an example.)
127
+
128
+
```shell
129
+
wget https://dlcdn.apache.org/flink/flink-1.20.3/flink-1.20.3-bin-scala_2.12.tgz; tar -zxvf flink-1.20.3-bin-scala_2.12.tgz
130
+
```
131
+
132
+
2. Download [fluss-flink connector jar](/downloads), [flink-connector-faker](https://github.com/knaufk/flink-faker/releases) and then put them to `FLINK_HOME/lib/`.
133
+
134
+
3. Create a `docker-compose.yml` file with the following content:
0 commit comments