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: content/learning-paths/servers-and-cloud-computing/flink-on-gcp/baseline.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,11 @@ layout: learningpathall
7
7
---
8
8
9
9
## Apache Flink Baseline Testing on GCP SUSE VM
10
-
This guide explains how to perform **baseline testing** for Apache Flink after installation on a **GCP SUSE VM**. Baseline testing ensures that the Flink cluster is operational, the environment is correctly configured, and basic jobs run successfully.
10
+
In this section you will perform baseline testing for Apache Flink after installation on a GCP SUSE VM. Baseline testing validates that your installation is correct, the JVM is functioning properly, and Flink’s JobManager/TaskManager can execute jobs successfully.
11
+
12
+
### Install Maven (Required to Build and Run Flink Jobs)
13
+
Before running Flink jobs, ensure that Maven is installed on your VM. Many Flink examples and real-world jobs require Apache Maven to compile Java applications.
11
14
12
-
### Download and Extract Maven
13
-
Before running Flink jobs, ensure that **Java** and **Maven** are installed on your VM.
14
15
Download Maven and extract it:
15
16
16
17
```console
@@ -20,8 +21,8 @@ sudo tar -xvzf apache-maven-3.8.6-bin.tar.gz
20
21
sudo mv apache-maven-3.8.6 /opt/maven
21
22
```
22
23
23
-
### Set Environment Variables
24
-
Configure the environment so Maven commands are recognized system-wide:
24
+
### Configure Environment Variables
25
+
Configure the environment so Maven commands can be run system-wide:
0 commit comments