This is an automated email from the ASF dual-hosted git repository.

fhueske pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink-playgrounds.git


The following commit(s) were added to refs/heads/master by this push:
     new aca293d  [FLINK-16148] Update Operations Playground to Flink 1.10.0
aca293d is described below

commit aca293d8b20874555c9491c593f7c3991f670ad1
Author: David Anderson <da...@alpinegizmo.com>
AuthorDate: Tue Mar 10 20:06:33 2020 +0100

    [FLINK-16148] Update Operations Playground to Flink 1.10.0
---
 README.md                                                         | 2 +-
 docker/ops-playground-image/Dockerfile                            | 2 +-
 .../java/flink-playground-clickcountjob/pom.xml                   | 4 ++--
 operations-playground/README.md                                   | 2 +-
 operations-playground/conf/flink-conf.yaml                        | 1 +
 operations-playground/docker-compose.yaml                         | 8 ++++----
 6 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 9226d5e..cf39303 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ Currently, the following playgrounds are available:
 
 * The **Flink Operations Playground** in the (`operations-playground` folder) 
lets you explore and play with Flink's features to manage and operate stream 
processing jobs. You can witness how Flink recovers a job from a failure, 
upgrade and rescale a job, and query job metrics. The playground consists of a 
Flink cluster, a Kafka cluster and an example 
 Flink job. The playground is presented in detail in the
-["Getting Started" 
guide](https://ci.apache.org/projects/flink/flink-docs-release-1.9/getting-started/docker-playgrounds/flink-operations-playground.html)
 of Flink's documentation.
+["Getting Started" 
guide](https://ci.apache.org/projects/flink/flink-docs-release-1.10/getting-started/docker-playgrounds/flink-operations-playground.html)
 of Flink's documentation.
 
 * The interactive SQL playground is still under development and will be added 
shortly.
 
diff --git a/docker/ops-playground-image/Dockerfile 
b/docker/ops-playground-image/Dockerfile
index 59b40a0..bc62a5e 100644
--- a/docker/ops-playground-image/Dockerfile
+++ b/docker/ops-playground-image/Dockerfile
@@ -32,7 +32,7 @@ RUN mvn clean install
 # Build Operations Playground Image
 ###############################################################################
 
-FROM flink:1.9.0-scala_2.11
+FROM flink:1.10.0-scala_2.11
 
 WORKDIR /opt/flink/bin
 
diff --git 
a/docker/ops-playground-image/java/flink-playground-clickcountjob/pom.xml 
b/docker/ops-playground-image/java/flink-playground-clickcountjob/pom.xml
index 893c11e..bead849 100644
--- a/docker/ops-playground-image/java/flink-playground-clickcountjob/pom.xml
+++ b/docker/ops-playground-image/java/flink-playground-clickcountjob/pom.xml
@@ -22,7 +22,7 @@ under the License.
 
        <groupId>org.apache.flink</groupId>
        <artifactId>flink-playground-clickcountjob</artifactId>
-       <version>2-FLINK-1.9_2.11</version>
+       <version>1-FLINK-1.10_2.11</version>
 
        <name>flink-playground-clickcountjob</name>
        <packaging>jar</packaging>
@@ -44,7 +44,7 @@ under the License.
 
     <properties>
                
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-               <flink.version>1.9.0</flink.version>
+               <flink.version>1.10.0</flink.version>
                <java.version>1.8</java.version>
                <scala.binary.version>2.11</scala.binary.version>
                <maven.compiler.source>${java.version}</maven.compiler.source>
diff --git a/operations-playground/README.md b/operations-playground/README.md
index 58bd366..de02fb8 100644
--- a/operations-playground/README.md
+++ b/operations-playground/README.md
@@ -47,4 +47,4 @@ docker-compose down
 ## Further instructions
 
 The playground setup and more detailed instructions are presented in the
-["Getting Started" 
guide](https://ci.apache.org/projects/flink/flink-docs-master/getting-started/docker-playgrounds/flink-operations-playground.html)
 of Flink's documentation.
+["Getting Started" 
guide](https://ci.apache.org/projects/flink/flink-docs-release-1.10/getting-started/docker-playgrounds/flink-operations-playground.html)
 of Flink's documentation.
diff --git a/operations-playground/conf/flink-conf.yaml 
b/operations-playground/conf/flink-conf.yaml
index 5c8d0e6..bfa4384 100644
--- a/operations-playground/conf/flink-conf.yaml
+++ b/operations-playground/conf/flink-conf.yaml
@@ -20,6 +20,7 @@ jobmanager.rpc.address: jobmanager
 blob.server.port: 6124
 query.server.port: 6125
 
+taskmanager.memory.process.size: 1568m
 taskmanager.numberOfTaskSlots: 2
 
 state.backend: filesystem
diff --git a/operations-playground/docker-compose.yaml 
b/operations-playground/docker-compose.yaml
index 5a88b98..4b25f15 100644
--- a/operations-playground/docker-compose.yaml
+++ b/operations-playground/docker-compose.yaml
@@ -20,7 +20,7 @@ version: "2.1"
 services:
   client:
     build: ../docker/ops-playground-image
-    image: apache/flink-ops-playground:2-FLINK-1.9-scala_2.11
+    image: apache/flink-ops-playground:1-FLINK-1.10-scala_2.11
     command: "flink run -d -p 2 /opt/ClickCountJob.jar --bootstrap.servers 
kafka:9092 --checkpointing --event-time"
     depends_on:
       - jobmanager
@@ -30,12 +30,12 @@ services:
     environment:
       - JOB_MANAGER_RPC_ADDRESS=jobmanager
   clickevent-generator:
-    image: apache/flink-ops-playground:2-FLINK-1.9-scala_2.11
+    image: apache/flink-ops-playground:1-FLINK-1.10-scala_2.11
     command: "java -classpath /opt/ClickCountJob.jar:/opt/flink/lib/* 
org.apache.flink.playgrounds.ops.clickcount.ClickEventGenerator 
--bootstrap.servers kafka:9092 --topic input"
     depends_on:
       - kafka
   jobmanager:
-    image: flink:1.9-scala_2.11
+    image: flink:1.10-scala_2.11
     command: "jobmanager.sh start-foreground"
     ports:
       - 8081:8081
@@ -46,7 +46,7 @@ services:
     environment:
       - JOB_MANAGER_RPC_ADDRESS=jobmanager
   taskmanager:
-    image: flink:1.9-scala_2.11
+    image: flink:1.10-scala_2.11
     depends_on:
       - jobmanager
     command: "taskmanager.sh start-foreground"

Reply via email to