Member since
09-24-2015
816
Posts
488
Kudos Received
189
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2627 | 12-25-2018 10:42 PM | |
12068 | 10-09-2018 03:52 AM | |
4168 | 02-23-2018 11:46 PM | |
1841 | 09-02-2017 01:49 AM | |
2170 | 06-21-2017 12:06 AM |
02-16-2016
06:01 AM
1 Kudo
Hi @Vishal Shah, you also need, in Hive-->Configs: webhcat.proxyuser.knox.groups=*
webhcat.proxyuser.knox.hosts=*
hive.server2.allow.user.substitution=true Try knox.groups and hosts first with "*" and if it works reduce permissions to for example "users" and your KNOX host FQDN. Full manual here, scroll down to the Hive section.
... View more
02-16-2016
05:07 AM
2 Kudos
Hi @cokorda putra susila, please find here instructions how to try Spark-1.5 on HDP-2.3.2.
... View more
02-16-2016
05:02 AM
3 Kudos
In /etc/ambari-agent/conf/ambari-agent.ini check an entry called pidlookuppath, the pid file will be written there. The path is usually /var/run/ and ambari-agent will create a directory there called, predictably, ambari-agent. Create that directory if it doesn't exist and try to restart the agent. Also check permissions, those of directories should be 755, and ownership root:root if you run the agent as root.
... View more
02-15-2016
09:11 AM
Hi @Suresh Bonam, check this article: HiveWebInterface - Example. However, it's done on HDP-2.3.2, not sure is it going to work in HDP-2.2 but you can try (WebHCat is there, not sure does it support the "hive" command). Edit: It's supported in Hive-0.13+ so should be okay on HDP-2.2. More details here.
... View more
02-14-2016
12:30 PM
4 Kudos
Hi @Andrew Watson, Phoenix behind Knox is not supported yet, but the guys are working on it: CALCITE-1025, the idea is to add basic auth to Avatica which provides Phoenix thin JDBC driver and supports JSON over HTTP.
... View more
02-14-2016
01:10 AM
2 Kudos
@Roman Boyko Can you try a quick fix described here, setting set hive.server2.enable.doAs=false; before running the query. It's also the mode required for Ranger to manage permissions in Hive.
... View more
02-14-2016
12:56 AM
1 Kudo
@Prakash Punj There are a few mis-configs in your setting hbase.rootdir --hdfs://hdp-m.samitsolutions.com:8020/apps/hbase/data
hbase.cluster.distributed - TRUE
Metrics service operation mode - embedded
hbase.zookeeper.property.clientPort --2181
hbase.zookeeper.quorum --- hdp-m.samitsolutions.com If you run AMS in embedded mode then hbase.cluster.distributed should be false, and hbase.rootdir set to a local directory using the "file://" scheme. If you prefer distributed mode then timeline.metrics.service.operation.mode should be "distributed". In either case, for AMS HBase AMS runs its own instance of ZooKeeper which by default listens on port 61181. It looks like your are trying to use ZooKeeper of the cluster instead.
My recommendetion: Switch to the "embedded" mode (unless your cluster has hundreds of nodes), and the default AMS ZK on port 61181.
... View more
02-12-2016
05:10 AM
4 Kudos
@Kevin Vasko Knox provides REST API, so just consider Knox to be an https or http site and you want to access it using GET, PUT, POST etc with simple authentication. You can use C# classes like WebRequest and NetworkCredentials, here is one good looking sample. Try first to list a directory (GET). And note that file upload is a 2-step PUT process.
... View more
02-12-2016
03:48 AM
1 Kudo
It also works with standard Hue-2.6.1 packaged with HDP-2.3.4 (that's the only one I can try; it should also work with Hue coming with 2.3.2 because it's the same version), I tried: SELECT reflect("java.lang.Math","exp",2.0), reflect("java.lang.Math","hypot",3.0,4.0) from t2 limit 1;
... View more
02-11-2016
09:16 AM
Hi @Neeraj Sabharwal, your view is using referrer_url and page_url from the page_view table which have no access permissions. Not sure is this the reason you get no output from your view. Can you start by setting Hive columns to "*" and then trying to reduce permissions.
... View more