Lttlecoderr2328 opened a new issue, #17336:
URL: https://github.com/apache/dolphinscheduler/issues/17336

   ### Search before asking
   
   - [x] I had searched in the 
[issues](https://github.com/apache/dolphinscheduler/issues?q=is%3Aissue) and 
found no similar issues.
   
   
   ### What happened
   
   <img width="2560" height="1279" alt="Image" 
src="https://github.com/user-attachments/assets/d4f3e53c-a28a-4ca8-8e84-90ab565cc3fb";
 />
   
   <img width="2560" height="1279" alt="Image" 
src="https://github.com/user-attachments/assets/3830d340-2edb-44bc-8937-7e7dbbdd5cb0";
 />
   
   <img width="2560" height="1279" alt="Image" 
src="https://github.com/user-attachments/assets/be541ea7-5599-46c7-95e8-0af931f6af45";
 />
   
   When running a workflow, nothing happens and no records are recorded
   
   
   ### What you expected to happen
   
   At least there is a record when running, but there is no record and no 
response when the result is
   
   ### How to reproduce
   
   # Licensed to the Apache Software Foundation (ASF) under one
   # or more contributor license agreements.  See the NOTICE file
   # distributed with this work for additional information
   # regarding copyright ownership.  The ASF licenses this file
   # to you under the Apache License, Version 2.0 (the
   # "License"); you may not use this file except in compliance
   # with the License.  You may obtain a copy of the License at
   #
   #     http://www.apache.org/licenses/LICENSE-2.0
   #
   # Unless required by applicable law or agreed to in writing, software
   # distributed under the License is distributed on an "AS IS" BASIS,
   # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   # See the License for the specific language governing permissions and
   # limitations under the License.
   services:
     dolphinscheduler-postgresql:
       image: bitnami/postgresql:15.2.0
       ports:
         - "5432:5432"
       profiles: ["all", "schema"]
       environment:
         POSTGRESQL_USERNAME: root
         POSTGRESQL_PASSWORD: root
         POSTGRESQL_DATABASE: dolphinscheduler
       volumes:
         - ./volumes/postgresql:/bitnami/postgresql
       healthcheck:
         test: ["CMD", "bash", "-c", "cat < /dev/null > 
/dev/tcp/127.0.0.1/5432"]
         interval: 5s
         timeout: 60s
         retries: 120
       networks:
         - dolphinscheduler
   
     dolphinscheduler-zookeeper:
       image: bitnami/zookeeper:3.7.1
       profiles: ["all"]
       environment:
         ALLOW_ANONYMOUS_LOGIN: "yes"
         ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons
       volumes:
         - ./volumes/zookeeper:/bitnami/zookeeper
       healthcheck:
         test: ["CMD", "bash", "-c", "cat < /dev/null > 
/dev/tcp/127.0.0.1/2181"]
         interval: 5s
         timeout: 60s
         retries: 120
       networks:
         - dolphinscheduler
   
     dolphinscheduler-schema-initializer:
       image: ${HUB}/dolphinscheduler-tools:${TAG}
       env_file: .env
       profiles: ["schema"]
       command: [ tools/bin/upgrade-schema.sh ]
       depends_on:
         dolphinscheduler-postgresql:
           condition: service_healthy
       volumes:
         - ./volumes/logs:/opt/dolphinscheduler/logs
         - ./volumes/shared-local:/opt/soft
         - ./volumes/resource-local:/dolphinscheduler
       networks:
         - dolphinscheduler
   
     dolphinscheduler-api:
       image: ${HUB}/dolphinscheduler-api:${TAG}
       user: root
       ports:
         - "12345:12345"
         - "25333:25333"
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", 
"http://localhost:12345/dolphinscheduler/actuator/health"; ]
         interval: 30s
         timeout: 5s
         retries: 3
       depends_on:
         dolphinscheduler-zookeeper:
           condition: service_healthy
       volumes:
         - ./volumes/logs:/opt/dolphinscheduler/logs
         - ./volumes/shared-local:/opt/soft
         - ./volumes/resource-local:/dolphinscheduler
       networks:
         - dolphinscheduler
   
     dolphinscheduler-alert:
       image: ${HUB}/dolphinscheduler-alert-server:${TAG}
       user: root
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:50053/actuator/health"; ]
         interval: 30s
         timeout: 5s
         retries: 3
       depends_on:
         dolphinscheduler-zookeeper:
           condition: service_healthy
       volumes:
         - ./volumes/logs:/opt/dolphinscheduler/logs
       networks:
         - dolphinscheduler
   
     dolphinscheduler-master:
       image: ${HUB}/dolphinscheduler-master:${TAG}
       user: root
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:5679/actuator/health"; ]
         interval: 30s
         timeout: 5s
         retries: 3
       depends_on:
         dolphinscheduler-zookeeper:
           condition: service_healthy
       volumes:
         - ./volumes/logs:/opt/dolphinscheduler/logs
         - ./volumes/shared-local:/opt/soft
       networks:
         - dolphinscheduler
   
     dolphinscheduler-worker:
       image: ${HUB}/dolphinscheduler-worker:${TAG}
       user: root
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:1235/actuator/health"; ]
         interval: 30s
         timeout: 5s
         retries: 3
       depends_on:
         dolphinscheduler-zookeeper:
           condition: service_healthy
       extra_hosts:
         - "host.docker.internal:host-gateway"
       volumes:
         - ./volumes/worker-data:/tmp/dolphinscheduler
         - ./volumes/logs:/opt/dolphinscheduler/logs
         - ./volumes/shared-local:/opt/soft
         - ./volumes/resource-local:/dolphinscheduler
         - ./volumes/plugins-data:/opt/dolphinscheduler/libs
       networks:
         - dolphinscheduler
   
   networks:
     dolphinscheduler:
       driver: bridge
   
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.2.x
   
   ### Are you willing to submit PR?
   
   - [x] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [x] I agree to follow this project's [Code of 
Conduct](https://www.apache.org/foundation/policies/conduct)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: 
[email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to