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/06/21 08:20:31 UTC

[GitHub] [dolphinscheduler] stalary opened a new issue, #10533: [Bug] [Python] Use Python report permission error

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

   ### 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
   
   [INFO] 2022-06-21 16:15:17.133 +0800 [taskAppId=TASK-20220621-5935139969120_4-21-24] TaskLogLogger-class org.apache.dolphinscheduler.plugin.task.python.PythonTask:[63] -  -> /tmp/dolphinscheduler/exec/process/5934261425632/5935139969120_4/21/24/21_24.command:行5: /tmp/dolphinscheduler/exec/process/5934261425632/5935139969120_4/21/24/py_21_24.py: 权限不够
   
   
   ### What you expected to happen
   
   success exec python.
   
   ### How to reproduce
   
   use 3.0.0-beat1, create tenant, use it to exec python.
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.0.0-beta-1
   
   ### Are you willing to submit PR?
   
   - [ ] 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 #10533: [Bug] [Python] Use Python report permission error

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

   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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "XiaoZhiSnow (via GitHub)" <gi...@apache.org>.
XiaoZhiSnow commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1882924905

   export PYTHON_LAUNCHER=${PYTHON_LAUNCHER:-/usr/bin/python}
   export PATH=$HADOOP_HOME/bin:$SPARK_HOME2/bin:$PYTHON_LAUNCHER:$JAVA_HOME/bin:$HIVE_HOME/bin:$FLINK_HOME/bin:$DATAX_HOME/bin:$SEATUNNEL_HOME/bin:$CHUNJUN_HOME/bin:$PYTHON_LAUNCHER:$PATH
   
   but it does not work at 3.2.0


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-2005434101

   This issue has been closed because it has not received response for too long time. You could reopen it if you encountered similar problems in the future.


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   > > I think this is an environment related issue, the error is that the Python environment variable was not found, and this variable was configured in the startup DS configuration
   > 
   > Yes. And the `PYTHON_HOME` variable can be customized in `https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/security.html Environmental Management`. You can try this.
   
   Yes, I solved the problem with this, but why didn't the parameters I configured at startup take effect. 
   export PYTHON_HOME=/opt/anaconda3/bin/python3.9
   I think normal logic would have worked.


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "haozileung (via GitHub)" <gi...@apache.org>.
haozileung commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1797829039

   Same issue here.
   
   After debug in worker node, it turns out that
   
   `sudo -u root -i /tmp/dolphinscheduler/exec/process/default/11497277068832/11497401001760_3/11/11/11_11.sh`
   
   the sudo command did not perserved the env from original shell's configuration.
   
   The workaround would be define an environment manually and specified when running the tasks.
   


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   > > Could you provide more detailed information since i can not reproduce this problem in my local environment? @stalary
   > 
   > first create a environment file,write other export command,not python_home. second,use it execute task,the startup python_home will be lose.
   
   If you want to perform Python tasks, then `python_home` is required.


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] closed issue #10533: [Bug] [Python] Use Python report permission error
URL: https://github.com/apache/dolphinscheduler/issues/10533


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   ### 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
   
   [INFO] 2022-06-21 16:15:17.133 +0800 [taskAppId=TASK-20220621-5935139969120_4-21-24] TaskLogLogger-class org.apache.dolphinscheduler.plugin.task.python.PythonTask:[63] -  -> /tmp/dolphinscheduler/exec/process/5934261425632/5935139969120_4/21/24/21_24.command:行5: /tmp/dolphinscheduler/exec/process/5934261425632/5935139969120_4/21/24/py_21_24.py: 权限不够
   
   
   ### What you expected to happen
   
   success exec python.
   
   ### How to reproduce
   
   use 3.0.0-beat1, create tenant, use it to exec python.
   
   ### Anything else
   
   _No response_
   
   ### Version
   
   3.0.0-beta-1
   
   ### Are you willing to submit PR?
   
   - [ ] 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] SbloodyS commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   > first create a environment file,write other export command,not python_home. second,use it execute task,the startup python_home will be lose.
   
   But you did not export `PYTHON_HOME`.


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "niyanchun (via GitHub)" <gi...@apache.org>.
niyanchun commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-2060709622

   same problem in 3.2.1 version, any idea?


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   
   
   
   > Sorry. I took a closer look at this issue. It seems the user you started ds did not have the `sudo` permission of execute the shell script. Not bug.
   
   I think this is an environment related issue, the error is that the Python environment variable was not found, and this variable was configured in the startup DS configuration


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   I use pseudo-cluster.


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "hieunm89 (via GitHub)" <gi...@apache.org>.
hieunm89 commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1849296022

   Having the same issue, I have export PYTHON_LAUNCHER=${PYTHON_LAUNCHER:-/usr/bin/python3} set in dolphinscheduler_env.sh  as well as "export PYTHON_HOME=/usr/bin/python3" in Environment Config. Nothing works
   


-- 
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] zzzhangqi commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   I had the same problem. 3.0.0-beta-2 run in docker.
   set docker env `PYTHON_HOME=/usr/bin/python3`, running python task does not take effect,Prompt does not have permission.
   
   Successful operation:
   set env `PYTHON_HOME=/usr/bin/python3` in environment-manage,python task works normally.


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   Sorry. I took a closer look at this issue. It seems the user you started ds did not have the `sudo` permission of execute the shell script. Not bug.


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1848793124

   This issue has been automatically marked as stale because it has not had recent activity for 30 days. It will be closed in next 7 days if no further activity occurs.


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1989683709

   This issue has been automatically marked as stale because it has not had recent activity for 30 days. It will be closed in next 7 days if no further activity occurs.


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   > Could you provide more detailed information since i can not reproduce this problem in my local environment? @stalary
   
   first create a environment file,write other export command,not python_home.
   second,use it execute task,the startup python_home will be lose.


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   Hi @stalary , would you like to submit a PR to fix this?


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "cnfree0355 (via GitHub)" <gi...@apache.org>.
cnfree0355 commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1886422204

   
    **I have the same issue with version 3.2** 
   Here is my environment setup in dolphinscheduler_env.sh
   
   ```bash
     export SPARK_HOME=${SPARK_HOME:-/data/spark3}
   
     export PYTHON_LAUNCHER=${PYTHON_LAUNCHER:-/usr/local/python3/bin/python3}
   
     export DATAX_LAUNCHER=${DATAX_LAUNCHER:-/usr/local/datax/bin/datax.py}
   
     export PATH=$HADOOP_HOME/bin:$SPARK_HOME/bin:$PYTHON_LAUNCHER:$JAVA_HOME/bin:$HIVE_HOME/bin:$FLINK_HOME/bin:$DATAX_LAUNCHER:$PATH
   ```
   
   
   When I pass the task or the result of these variables
   
   ```bash
   echo " ------shell task 1 ------"
   echo "The python launcher program is ${PYTHON_LAUNCHER} "
   echo "The spark home is ${SPARK_HOME}"
   echo "The datax launcher program is ${DATAX_LAUNCHER}"`
   ```
   As shown in the log below, they are all null.
   
   ```text
    ------shell task 1 ------
   	The python launcher program is  
   	The spark home is 
   	The datax launcher program is 
   ```
   
   
   
   


-- 
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


Re: [I] [Bug] [Python] Use Python report permission error [dolphinscheduler]

Posted by "XiaoZhiSnow (via GitHub)" <gi...@apache.org>.
XiaoZhiSnow commented on issue #10533:
URL: https://github.com/apache/dolphinscheduler/issues/10533#issuecomment-1882937744

   config PYTHON_LAUNCHER at /etc/profile  
   source /etc/profile
   restart ds, then it will work


-- 
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] zhongjiajie commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   FYI, see https://github.com/apache/dolphinscheduler/issues/10562#issuecomment-1175877731, I think we could improve it


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   I have located the problem. I have customized the environment, which causes the global environment of DS to fail and Python Home can not be found.


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   > Hi @stalary , would you like to submit a PR to fix this?
   
   I can fix it, but first we need to talk about whether ideally it should be the highest priority task usage environment, the second priority DS environment, and merge at the same time.


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   > I think this is an environment related issue, the error is that the Python environment variable was not found, and this variable was configured in the startup DS configuration
   
   Yes. And the `PYTHON_HOME` variable can be customized in `https://dolphinscheduler.apache.org/en-us/docs/latest/user_doc/guide/security.html Environmental Management`. You can try this.


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   > Did you define `PYTHON_HOME` in `bin/env/dolphinscheduler_env.sh` and start the service by `bin/dolphinscheduler-daemon.sh start xxx-server`? @stalary
   
   I define it and use bin/start-all.sh.


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   Do you define `PYTHON_HOME` in `bin/env/dolphinscheduler_env.sh` and start the service by `bin/dolphinscheduler-daemon.sh start xxx-server`? @stalary 


-- 
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 #10533: [Bug] [Python] Use Python report permission error

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

   Could you provide more detailed information since i can not reproduce this problem in my local environment? @stalary 


-- 
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] stalary commented on issue #10533: [Bug] [Python] Use Python report permission error

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

   > > > Could you provide more detailed information since i can not reproduce this problem in my local environment? @stalary
   > > 
   > > 
   > > first create a environment file,write other export command,not python_home. second,use it execute task,the startup python_home will be lose.
   > 
   > If you want to perform Python tasks, then `python_home` is required.
   
   I think PYTHON_HOME configured at startup should be merge into the task environment.


-- 
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