Errata

Building Applications on Mesos

Errata for Building Applications on Mesos

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Other Digital Version ?
?

The word are is repeated twice below:

When programming for the executor API (see Chapter 5 for details), some communication APIs between the executor and scheduler are are specified per task (such as launchTask and statusUpdate ), whereas other APIs are per executor (such as frameworkMessage ).

Sean P. Kane  May 03, 2016 
Other Digital Version ?
?

Slave should not be plural below:


"A slaves can also expose arbitrary key/value data about the machine (see “Configuring Slave Attributes” for details)."

Sean P. Kane  May 03, 2016 
Printed Page 74
First Code example

In the code section:

... // code unchanged
driver.launchTasks(
Collections.singletonList(o.getId()),
doFirstFit(o, pendingJobs);
);
... // code unchanged


The first semicolon is incorrect; It should be:

... // code unchanged
driver.launchTasks(
Collections.singletonList(o.getId()),
doFirstFit(o, pendingJobs)
);
... // code unchanged

Anonymous  Jul 18, 2017 
PDF Page 127
2nd, 3rd paragrpah

Doesn't explain what the registrar is. There are also references to the registry. The registry isn't explained that well. I'm not complaining but thought that the feedback would be useful.

Abdul Jabbar Azam  Oct 10, 2015