Member since
04-20-2016
61
Posts
17
Kudos Received
13
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
880 | 06-30-2017 01:16 PM | |
882 | 06-30-2017 01:03 PM | |
1123 | 06-30-2017 12:50 PM | |
1125 | 06-30-2017 12:40 PM | |
13155 | 06-30-2017 12:36 PM |
03-27-2017
10:13 AM
@prsingh When RM UI is Kerberized, only the admin / job user can view the startedTime, finishedTime, elapsedTime and amContainerLogs on using the RM web service. To enable access for other users, we can either set yarn.admin.acl = false
or yarn.scheduler.capacity.root.acl_administer_jobs=*
yarn.scheduler.capacity.root.acl_administer_queue=*
... View more
03-27-2017
09:13 AM
1 Kudo
@Pranav Manwatkar Can you please verify what is "hadoop.http.staticuser.user" property set in yarn-site.xml. I'm wondering it might be set as "dr.who", can you please remove it and set it as yarn user, and try accessing the yarn logs from UI?
... View more
03-27-2017
07:46 AM
I am facing checksum mismatch while copying data between two cluster. Caused by: java.io.IOException: Check-sum mismatch. Also is there a way to ignore checksum through falcon UI? . Thanks in advance. Check-sum mismatch between hdfs://test1:8020/raw/ech/incr/row_bn... and hdfs://test2:8020/raw/ech/.distcp.tmp.attempt_1471351807373_0.... Source and target differ in block-size.
... View more
Labels:
- Labels:
-
Apache Falcon
03-22-2017
12:15 PM
Thanks @prsingh, able to add service after correcting the permission
... View more
03-22-2017
08:42 AM
Ambari throws error while adding new services as below [ambari-client-thread-47469] AbstractResourceProvider:97 - Error occured during recommendation
org.apache.ambari.server.api.services.stackadvisor.StackAdvisorException: Error occured during stack advisor command invocation: Cannot create /var/run/ambari-server/stack-recommendations
... View more
Labels:
- Labels:
-
Apache Ambari
03-22-2017
08:37 AM
@prsingh That seems to be a bug, let's disable the ACL for ZK, by adding below in zookeeper-env.sh
-Dzookeeper.skipACL=yes 1) Stop HBase
2) Add -Dzookeeper.skipACL=yes in zookeeper-env.sh
export SERVER_JVMFLAGS="$SERVER_JVMFLAGS -Dzookeeper.skipACL=yes -Djava.security.auth.login.config={{zk_server_jaas_file}}"
3) rmr /hbase-secure/table/hbase:acl
4)revert back the change in step 2 -Dzookeeper.skipACL=yes
5) Restart HBase again
6) Try grant it should work now
... View more
03-22-2017
06:23 AM
Hi @prsingh, Spark currently doesn't support "insert into feature", you may create dataframe and append to the table. scala> var data = sqlContext.createDataFrame(Seq(("ZZ", "m:x", 34.0))).toDF("pv", "metric", "value")
scala> data.show()
scala> data.write.mode("append").saveAsTable("results_test_hive")
scala> println(sqlContext.sql("select * from results_test_hive").count())
... View more
03-21-2017
08:55 AM
Thanks. Let's remove the acl znode from the ZK. Stop HBase services, and follow below steps --login to zkcli (hbase zkcli)
-- rmr /hbase-secure/table/hbase:acl
... View more
03-21-2017
06:12 AM
Hi @prsingh
Are you able to create and list hbase tables?
Also HBase UI is working fine? Can you also confirm if Ranger is enabled?
... View more