You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@mesos.apache.org by Rinaldo Digiorgio <rd...@pace.edu> on 2016/05/04 05:27:58 UTC

Is there a one minute timeout on URI downloads or extractions?

Hi,

	I have several URI files configured in Marathon for download to the agent.  A mesos task starts and terminates consistently when trying to download the files.  I see the following message in the log.


I0503 20:24:38.330714  2756 slave.cpp:4322] Terminating executor ‘'test.97c0bc52-11a7-11e6-99c8-56847afe9799' of framework e093b9e5-ad72-40e0-b686-9d41691141e5-1265' because it did not register within 1mins

stderr shows some files being unzipped


Rinaldo

Re: Is there a one minute timeout on URI downloads or extractions?

Posted by haosdent <ha...@gmail.com>.
Hi, you could adjust this when start Mesos agent by this flag
`executor_registration_timeout`.

```
  add(&Flags::executor_registration_timeout,
      "executor_registration_timeout",
      "Amount of time to wait for an executor\n"
      "to register with the agent before considering it hung and\n"
      "shutting it down (e.g., 60secs, 3mins, etc)",
      EXECUTOR_REGISTRATION_TIMEOUT);
```

Default value is 1 min.

On Wed, May 4, 2016 at 11:27 AM, Rinaldo Digiorgio <rd...@pace.edu>
wrote:

> Hi,
>
>         I have several URI files configured in Marathon for download to
> the agent.  A mesos task starts and terminates consistently when trying to
> download the files.  I see the following message in the log.
>
>
> I0503 20:24:38.330714 2756 slave.cpp:4322] Terminating executor
> ‘'test.97c0bc52-11a7-11e6-99c8-56847afe9799' of framework
> e093b9e5-ad72-40e0-b686-9d41691141e5-1265' because it did not register
> within 1mins
>
> stderr shows some files being unzipped
>
>
> Rinaldo




-- 
Best Regards,
Haosdent Huang