refactor: simulator now sends ONLY to Pulsar (not direct to brokers)

- Disabled ENABLE_MQTT, ENABLE_ORION, ENABLE_STELLIO, ENABLE_FROST in docker-compose.yml
- Simulateur → Pulsar (ingestion)
- Pulsar Distribution Service → Brokers (MQTT, NGSI-LD, FROST)
- Updated INTERVAL to 1s for real-time
- Updated session resume
This commit is contained in:
Eric FELIXINE
2026-05-05 10:26:40 -04:00
parent ad613beefb
commit 5d4e9cb82d

View File

@@ -19,26 +19,26 @@ services:
- smartcity-shared - smartcity-shared
- traefik-public - traefik-public
environment: environment:
# MQTT Brokers # MQTT Brokers (Disabled - using Pulsar distribution)
- ENABLE_EMQX=true - ENABLE_EMQX=false
- ENABLE_MOSQUITTO=true - ENABLE_MOSQUITTO=false
- ENABLE_BUNKER=true - ENABLE_BUNKER=false
# Context Brokers # Context Brokers (Disabled - using Pulsar distribution)
- ENABLE_ORION=true - ENABLE_ORION=false
- ENABLE_STELLIO=true - ENABLE_STELLIO=false
- ENABLE_FROST=true - ENABLE_FROST=false
# Databases # Databases
- ENABLE_INFLUX=true - ENABLE_INFLUX=true
- INFLUX_URL=http://smart-city-influxdb:8086 - INFLUX_URL=http://smart-city-influxdb:8086
# Pulsar # Pulsar (Active - main ingestion)
- ENABLE_PULSAR=true - ENABLE_PULSAR=true
- PULSAR_HOST=smart-city-pulsar - PULSAR_HOST=smart-city-pulsar
- PULSAR_PORT=8080 - PULSAR_PORT=6650
# Redpanda (Kafka) # Redpanda (Disabled - troubleshooting)
- ENABLE_REDPANDA=false # Disabled - troubleshooting - ENABLE_REDPANDA=false
- REDPANDA_BROKERS=smart-city-redpanda:9092 - REDPANDA_BROKERS=smart-city-redpanda:9092
# Simulation settings # Simulation settings
- INTERVAL=30 - INTERVAL=1
- LOG_LEVEL=INFO - LOG_LEVEL=INFO
restart: unless-stopped restart: unless-stopped
labels: labels: