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/www/site/content/en/documentation/runners/flink.md
+3-8
Original file line number
Diff line number
Diff line change
@@ -207,17 +207,12 @@ To run a pipeline on an embedded Flink cluster:
207
207
{{< /paragraph >}}
208
208
209
209
{{< paragraph class="language-portable" >}}
210
-
(1) Start the JobService endpoint: `docker run --net=host apache/beam_flink1.18_job_server:latest`
210
+
(1) Start the JobService endpoint: `docker run --net=host apache/beam_flink1.10_job_server:latest`
211
211
{{< /paragraph >}}
212
212
213
213
{{< paragraph class="language-portable" >}}
214
214
The JobService is the central instance where you submit your Beam pipeline to.
215
-
It creates a Flink job from your pipeline and executes it.
216
-
You might encounter an error message like `Caused by: java.io.IOException: Insufficient number of network buffers:...`.
217
-
This can be resolved by providing a Flink configuration file to override the default settings.
218
-
You can find an example configuration file [here](https://github.com/apache/beam/blob/master/runners/flink/src/test/resources/flink-conf.yaml).
219
-
To start the Job Service endpoint with your custom configuration, mount a local directory containing your Flink configuration to the `/flink-conf` path in the Docker container:
220
-
`docker run --net=host -v <your_flink_conf_dir>:/flink-conf beam-flink-runner apache/beam_flink1.18_job_server:latest`
215
+
The JobService will create a Flink job for the pipeline and execute the job.
221
216
{{< /paragraph >}}
222
217
223
218
{{< paragraph class="language-portable" >}}
@@ -248,7 +243,7 @@ To run on a separate [Flink cluster](https://ci.apache.org/projects/flink/flink-
248
243
{{< /paragraph >}}
249
244
250
245
{{< paragraph class="language-portable" >}}
251
-
(2) Start JobService with Flink Rest endpoint: `docker run --net=host apache/beam_flink1.18_job_server:latest --flink-master=localhost:8081`.
246
+
(2) Start JobService with Flink Rest endpoint: `docker run --net=host apache/beam_flink1.10_job_server:latest --flink-master=localhost:8081`.
0 commit comments