Member since
08-16-2016
642
Posts
131
Kudos Received
68
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3436 | 10-13-2017 09:42 PM | |
6200 | 09-14-2017 11:15 AM | |
3179 | 09-13-2017 10:35 PM | |
5102 | 09-13-2017 10:25 PM | |
5737 | 09-13-2017 10:05 PM |
07-28-2017
07:59 AM
1 Kudo
Ok, this means that the CSD file isn't in place and/or Cloudera Manager server was not restarted after it was put in place. Please check both. After the CM server restart the service should be available to add to an existing or new cluster.
... View more
07-27-2017
10:49 PM
The other time I have seen this the issue was that Spark2 had not been added as a service to the cluster and therefor the Spark2 gateway was not in place. This would include environmental and configuration settings for clients like spark2-shell. At a cluster screen click the Action menu and select 'Add a Service'. Follow the wizard and add Spark2 from the list of services available.
... View more
07-27-2017
11:30 AM
You can leave the password blank, it will then prompt the user for the password. curl -u user: https;//..
... View more
07-27-2017
10:55 AM
It is possible that AWS is throwing an error that leads Director to state that it can't get the instance in time. The minimum required is only 1. You could test quickly by launching the same size in the same region to see if there is an issue on the AWS side.
... View more
07-27-2017
10:35 AM
Hmm I don't have an answer but a comment. I am using CDH 5.8.2. I get this same behavior from HUE. Some connections are not closed when the tab is closed. I don't recall the exact state, but we have the idle_query_timeout and idle_session_timeout set to 1 hour and these are closed after that time. So if idle_query isn't working try idle_session. If that doesn't work, there maybe something going one with your specific setup.
... View more
07-27-2017
10:24 AM
What instance type are you using? Are they on-demand or reserved? What region and zone is this in? Did you use a Placement group? It could be that you are requesting an instance size, like the d2.8xl, and there just isn't enough room in the region/zone to allocate them in time, 20 mins. It could also be that AWS black magik isn't fast enough in moving instances around if you used a Placement group.
... View more
07-27-2017
09:28 AM
Lets take a step back. You mentioned that the cluster is Kerberized and therefor Navigator needs some configs along those lines to interact with the cluster but what is its auth mechanism. I believe it can be different. Yes, it is. The External auth options for Nav are AD (LDAP), OpenLDAP, and SAML. If you do not have one of these set up then it will use the Cloudera Manager accounts (which could be internal or external). If it is internal, then you will need to use one of those accounts, with the proper Nav role/group assigned, in the -u cmuser:cmpass switch. You won't need a Kerberos ticket in this case.
... View more
07-26-2017
05:54 PM
It should work with both --negotiate and -u. curl -v --negotiate -u "username" http://www.blah.com
... View more
07-26-2017
01:58 PM
Did you restart CM and CMS? If not, then it will not pickup the csd file and it will not be available as a service to install. If you have, for the cluster with the parcels distributed and activated, choose 'Add a Service' from the cluster action menu. Is it available in that list of services?
... View more
07-26-2017
12:51 PM
Hive has the limitation that it cannot set these values at runtime. They have to either be in the core-site.xml or the table definition (not positive on this one though). The former will require admin access to the CM UI. The latter can be done by the person creating the table, you. Set the location as such, s3a://ACCESS_KEY:SECRET_KEY/path/. This will not work if there is a '/' unless you have this patch. https://issues.apache.org/jira/browse/HADOOP-3733
... View more