You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by GitBox <gi...@apache.org> on 2022/11/13 14:48:36 UTC

[GitHub] [dolphinscheduler] codergh opened a new issue, #12882: [Bug] centos环境下通过docker compose部署后无法使用datax

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

   ### 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
   
   环境:centos
   版本:3.1.1
   部署工具:docker compose
   部署脚本:
   `version: "3.8"
   
   services:
   
     dolphinscheduler-zookeeper:
       image: bitnami/zookeeper:3.6.2
       user: root
       profiles: ["all"]
       environment:
         ALLOW_ANONYMOUS_LOGIN: "yes"
         ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons
       volumes:
         - /data/zookeeper:/bitnami/zookeeper:rw
       ports:
         - '2181:2181'
       healthcheck:
         test: ["CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/2181"]
         interval: 5s
         timeout: 60s
         retries: 120
       networks:
         - microservice-network
   
     dolphinscheduler-schema-initializer:
       image: apache/dolphinscheduler-tools:3.1.0
       env_file: .env
       profiles: ["schema"]
       command: [ tools/bin/upgrade-schema.sh ]
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
     dolphinscheduler-api:
       image: apache/dolphinscheduler-api:3.1.0
       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
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
     dolphinscheduler-alert:
       image: apache/dolphinscheduler-alert-server:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:50053/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
       networks:
         - microservice-network
   
     dolphinscheduler-master:
       image: apache/dolphinscheduler-master:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:5679/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
       networks:
         - microservice-network
   
     dolphinscheduler-worker:
       image: apache/dolphinscheduler-worker:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:1235/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/data:/tmp/dolphinscheduler
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
   networks:
     microservice-network:
       name: microservice-network
       external: true
       driver: bridge
   `
   
   问题:
   无法使用datax,
   表现:
   
   
   ### What you expected to happen
   
   希望能解决这个问题
   
   ### How to reproduce
   
   fix bug
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.1.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: commits-unsubscribe@dolphinscheduler.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #12882:
URL: https://github.com/apache/dolphinscheduler/issues/12882#issuecomment-1312748311

   ### 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
   
   环境:centos
   版本:3.1.1
   部署工具:docker compose
   部署脚本:
   `version: "3.8"
   
   services:
   
     dolphinscheduler-zookeeper:
       image: bitnami/zookeeper:3.6.2
       user: root
       profiles: ["all"]
       environment:
         ALLOW_ANONYMOUS_LOGIN: "yes"
         ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons
       volumes:
         - /data/zookeeper:/bitnami/zookeeper:rw
       ports:
         - '2181:2181'
       healthcheck:
         test: ["CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/2181"]
         interval: 5s
         timeout: 60s
         retries: 120
       networks:
         - microservice-network
   
     dolphinscheduler-schema-initializer:
       image: apache/dolphinscheduler-tools:3.1.0
       env_file: .env
       profiles: ["schema"]
       command: [ tools/bin/upgrade-schema.sh ]
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
     dolphinscheduler-api:
       image: apache/dolphinscheduler-api:3.1.0
       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
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
     dolphinscheduler-alert:
       image: apache/dolphinscheduler-alert-server:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:50053/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
       networks:
         - microservice-network
   
     dolphinscheduler-master:
       image: apache/dolphinscheduler-master:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:5679/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
       networks:
         - microservice-network
   
     dolphinscheduler-worker:
       image: apache/dolphinscheduler-worker:3.1.0
       profiles: ["all"]
       env_file: .env
       healthcheck:
         test: [ "CMD", "curl", "http://localhost:1235/actuator/health" ]
         interval: 30s
         timeout: 5s
         retries: 3
       volumes:
         - /data/dolphin/data:/tmp/dolphinscheduler
         - /data/dolphin/logs:/opt/dolphinscheduler/logs
         - /data/dolphin/shared:/opt/soft
         - /data/dolphin/resource:/dolphinscheduler
       networks:
         - microservice-network
   
   networks:
     microservice-network:
       name: microservice-network
       external: true
       driver: bridge
   `
   
   问题:
   无法使用datax,
   表现:
   
   
   ### What you expected to happen
   
   希望能解决这个问题
   
   ### How to reproduce
   
   fix bug
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.1.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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] github-actions[bot] commented on issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #12882:
URL: https://github.com/apache/dolphinscheduler/issues/12882#issuecomment-1312748375

   Thank you for your feedback, we have received your issue, Please wait patiently for a reply.
   * In order for us to understand your request as soon as possible, please provide detailed information、version or pictures.
   * If you haven't received a reply for a long time, you can [join our slack](https://s.apache.org/dolphinscheduler-slack) and send your question to channel `#troubleshooting`


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] codergh commented on issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

Posted by GitBox <gi...@apache.org>.
codergh commented on issue #12882:
URL: https://github.com/apache/dolphinscheduler/issues/12882#issuecomment-1312751391

   I updated the question


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] simsicon commented on issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

Posted by GitBox <gi...@apache.org>.
simsicon commented on issue #12882:
URL: https://github.com/apache/dolphinscheduler/issues/12882#issuecomment-1312955729

   It seems you are running 3.1.0, can you try it with 3.1.1? This issue should be fixed by this PR https://github.com/apache/dolphinscheduler/pull/12180 , and merged into 3.1.1


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] SbloodyS closed issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

Posted by GitBox <gi...@apache.org>.
SbloodyS closed issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment
URL: https://github.com/apache/dolphinscheduler/issues/12882


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [dolphinscheduler] SbloodyS commented on issue #12882: [Bug] datax cannot be used after deploying through docker compose in centos environment

Posted by GitBox <gi...@apache.org>.
SbloodyS commented on issue #12882:
URL: https://github.com/apache/dolphinscheduler/issues/12882#issuecomment-1313584848

   The basic image does not contain third-party components. Please package it yourself. I'll close this issue. @codergh 


-- 
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: commits-unsubscribe@dolphinscheduler.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org