You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@aurora.apache.org by "Charles Raimbert (JIRA)" <ji...@apache.org> on 2017/03/23 00:56:41 UTC

[jira] [Updated] (AURORA-1909) Thermos Health Check fails for MesosContainerizer if `--nosetuid-health-checks` is set

     [ https://issues.apache.org/jira/browse/AURORA-1909?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Charles Raimbert updated AURORA-1909:
-------------------------------------
    Description: 
With MesosContainerizer, the sandbox is of type FileSystemImageSandbox and the health check is performed using a "mesos-containerizer launch" process, but there is actually a code bug in the way of getting the user under which to run the health check process:

https://github.com/apache/aurora/blob/master/src/main/python/apache/aurora/executor/common/health_checker.py#L370

{code}
health_check_user = (os.getusername() if self._nosetuid_health_checks
            else assigned_task.task.job.role)
{code}

If the Aurora scheduler is configured with `--nosetuid-health-checks` then "os.getusername()" is executed, but the python "os" module does not present a "getusername()" function.

  was:
With MesosContainerizer, the sandbox is of type FileSystemImageSandbox and the health check is performed using a "mesos-containerizer launch" process, but there is actually a code bug in the way of getting the user under which to run the health check process:

https://github.com/apache/aurora/blob/master/src/main/python/apache/aurora/executor/common/health_checker.py#L370

{code:python}
health_check_user = (os.getusername() if self._nosetuid_health_checks
            else assigned_task.task.job.role)
{code}

If the Aurora scheduler is configured with `--nosetuid-health-checks` then "os.getusername()" is executed, but the python "os" module does not present a "getusername()" function.


> Thermos Health Check fails for MesosContainerizer if `--nosetuid-health-checks` is set
> --------------------------------------------------------------------------------------
>
>                 Key: AURORA-1909
>                 URL: https://issues.apache.org/jira/browse/AURORA-1909
>             Project: Aurora
>          Issue Type: Bug
>          Components: Executor
>            Reporter: Charles Raimbert
>              Labels: easyfix
>
> With MesosContainerizer, the sandbox is of type FileSystemImageSandbox and the health check is performed using a "mesos-containerizer launch" process, but there is actually a code bug in the way of getting the user under which to run the health check process:
> https://github.com/apache/aurora/blob/master/src/main/python/apache/aurora/executor/common/health_checker.py#L370
> {code}
> health_check_user = (os.getusername() if self._nosetuid_health_checks
>             else assigned_task.task.job.role)
> {code}
> If the Aurora scheduler is configured with `--nosetuid-health-checks` then "os.getusername()" is executed, but the python "os" module does not present a "getusername()" function.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)