Errata

Architecting Modern Data Platforms

Errata for Architecting Modern Data Platforms

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. If the error was corrected in a later version or reprint the date of the correction will be displayed in the column titled "Date Corrected".

The following errata were submitted by our customers and approved as valid errors by the author or editor.

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

Version Location Description Submitted By Date submitted Date corrected
Printed
Page 254
7th paragraph

The stated rule for replacing service principals is incorrect. Instead of:

[RULE]:[1:$1]((hdfs|yarn|hbase))s/.*/nobody/g

It should read:

[RULE]:[1:$1](hdfs|yarn|hbase)s/.*/nobody/

Ian Buss
 
Mar 18, 2019 
Printed, PDF, ePub, Mobi,
Page 524
1st para (code snippet)

The code snippet contains two lines which have a duplication of "-provider". Specifically:

$ hadoop credentials create fs.s3a.access.key \ -value "ADKJFJXSCFG832QXSQNKQ" \
-provider -provider \ jceks://hdfs@nameservice1/user/ian/s3.jceks
$ hadoop credentials create fs.s3a.secret.key \ -value "fskQmOQPW/tY3BGbJC/kEosJJBTm2XI+Pk5pPxCK" \ -provider -provider \ jceks://hdfs@nameservice1/user/ian/s3.jceks

This should be:

$ hadoop credentials create fs.s3a.access.key \ -value "ADKJFJXSCFG832QXSQNKQ" \
-provider jceks://hdfs@nameservice1/user/ian/s3.jceks
$ hadoop credentials create fs.s3a.secret.key \ -value "fskQmOQPW/tY3BGbJC/kEosJJBTm2XI+Pk5pPxCK" \ -provider jceks://hdfs@nameservice1/user/ian/s3.jceks

That is, both instances of "-provider -provider \" should in fact be "-provider".

Ian Buss
 
Feb 04, 2019