skip to Main Content

Increase websocket connection timeout in apache pulsar – Docker

Below is my configuration for running pulsar as a standalone version in docker-compose: pulsar: image: apachepulsar/pulsar:2.6.0 ports: - 8080:8080 - 6650:6650 environment: PULSAR_MEM: " -Xms512m -Xmx512m -XX:MaxDirectMemorySize=1g" PULSAR_PREFIX_webSocketSessionIdleTimeoutMillis: 36000000 command: bash -c "bin/apply-config-from-env.py conf/standalone.conf && bin/pulsar standalone" I am connecting…

VIEW QUESTION

Create networks in separate docker-compose.yml file

I'm trying to define my networks in separate docker-compose.yml file (docker-compose.networks.yml). Here it is: version: '3.8' networks: pypinfo-rabbitmq: name: pypinfo_rabbitmq driver: bridge When I try to apply this configuration it shows the following warning: WARNING: Some networks were defined but…

VIEW QUESTION
Back To Top
Search