Update Flink job configuration to use port 8099#382
Open
Conversation
KamaTechOrg
approved these changes
Nov 13, 2025
Greptile OverviewGreptile SummaryThis PR updates the Flink job configuration in the Docker Compose file to use port 8099 instead of 8091. The change affects the sensor anomaly processing service's JobManager container, updating both the port mapping and the Flink client connection command. This modification resolves a potential port conflict with the existing pushgateway service which uses port 9091. The change is consistent across both the external port mapping ( Important Files Changed
Confidence score: 5/5
Sequence DiagramsequenceDiagram
participant User
participant "Docker Compose" as DC
participant "Flink JobManager" as JM
participant "Flink TaskManager" as TM
participant "Sensor Anomaly Pro" as SAP
participant Kafka
participant "Sensor Data" as SD
User->>DC: "docker-compose up"
Note over DC: "Starting services with updated port configuration"
DC->>SAP: "Start sensor anomaly analysis container"
SAP->>SAP: "Generate sensor anomaly reports"
DC->>JM: "Start Flink JobManager on port 8099"
Note over JM: "Updated from default port to 8099"
JM->>JM: "Initialize job manager with RPC address"
DC->>TM: "Start Flink TaskManager"
TM->>JM: "Connect to JobManager at port 8099"
Note over TM: "Using updated port configuration"
JM->>SAP: "Check for generated reports"
SAP-->>JM: "Reports ready"
JM->>JM: "Submit Flink job for sensor anomaly processing"
JM->>TM: "Distribute processing tasks"
SD->>Kafka: "Publish sensor data to 'sensors' topic"
TM->>Kafka: "Consume sensor data"
TM->>TM: "Process anomaly detection"
TM->>Kafka: "Publish results to 'sensor_anomalies' and 'sensor_zone_stats' topics"
Note over JM,TM: "Flink cluster now running on port 8099"
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.