Member since
02-06-2017
6
Posts
0
Kudos Received
0
Solutions
07-03-2018
05:05 AM
https://stackoverflow.com/questions/31233830/apache-spark-setting-spark-eventlog-enabled-and-spark-eventlog-dir-at-submit-or http://community.cloudera.com/t5/Advanced-Analytics-Apache-Spark/Spark-job-fails-in-cluster-mode/td-p/58772 if you want to use the keytab from inside a spark (cluster mode), copy the files using --files option and ALIAS. Then use relative path ./your.keytab
... View more
06-28-2018
06:40 PM
Why the difference _HOST and hdp1.field.hortonworks.com for PRINCIPAL? This:
configuration.set("hbase.master.kerberos.principal","hbase/_HOST@FIELD.HORTONWORKS.COM"); configuration.set("hbase.regionserver.kerberos.principal","hbase/_HOST@FIELD.HORTONWORKS.COM"); Vs this: String principal =System.getProperty("kerberosPrincipal","hbase/hdp1.field.hortonworks.com@FIELD.HORTONWORKS.COM");
... View more
06-27-2018
05:49 AM
FYR: https://bryanbende.com/development/2016/03/20/learning-kerberos-and-ugi
... View more
06-27-2018
05:48 AM
FYR: https://bryanbende.com/development/2016/03/20/learning-kerberos-and-ugi
... View more
06-27-2018
01:36 AM
Why use _HOST as opposed to hdp1.field.hortonworks.com? Is this to handle failovers?
... View more