Member since
10-14-2015
165
Posts
63
Kudos Received
27
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2776 | 12-11-2018 03:42 PM | |
2434 | 04-13-2018 09:17 PM | |
1558 | 02-08-2018 06:34 PM | |
3501 | 01-24-2018 02:18 PM | |
8486 | 10-11-2017 07:27 PM |
09-06-2016
07:09 PM
The message boards here are just fine. You can either copy/paste them in a code block or compress them and upload them directly. What I'm looking for is something like this as part of the hadoop client install on a host with the problem: 2016-08-31 15:50:29,421 - Checking if need to create versioned conf dir /etc/hadoop/2.4.2.0-236/0
2016-08-31 15:50:29,422 - call[('ambari-python-wrap', '/usr/bin/conf-select', 'dry-run-create', '--package', 'hadoop', '--stack-version', '2.4.2.0-236', '--conf-version', '0')] {'logoutput': False, 'sudo': True, 'quiet': False, 'stderr': -1}
2016-08-31 15:50:29,439 - call returned (0, '/etc/hadoop/2.4.2.0-236/0', '')
2016-08-31 15:50:29,439 - Package hadoop will have new conf directories: /etc/hadoop/2.4.2.0-236/0
2016-08-31 15:50:29,439 - Checking if need to create versioned conf dir /etc/hadoop/2.4.2.0-236/0
2016-08-31 15:50:29,440 - call[('ambari-python-wrap', '/usr/bin/conf-select', 'create-conf-dir', '--package', 'hadoop', '--stack-version', '2.4.2.0-236', '--conf-version', '0')] {'logoutput': False, 'sudo': True, 'quiet': False, 'stderr': -1}
2016-08-31 15:50:29,457 - call returned (0, '/etc/hadoop/2.4.2.0-236/0', '')
...
2016-08-31 15:50:29,492 - checked_call[('ambari-python-wrap', '/usr/bin/conf-select', 'set-conf-dir', '--package', 'hadoop', '--stack-version', '2.4.2.0-236', '--conf-version', '0')] {'logoutput': False, 'sudo': True, 'quiet': False}
2016-08-31 15:50:29,509 - checked_call returned (0, '/usr/hdp/2.4.2.0-236/hadoop/conf -> /etc/hadoop/2.4.2.0-236/0')
2016-08-31 15:50:29,510 - Ensuring that hadoop has the correct symlink structure
... View more
09-06-2016
06:07 PM
This seems like a bug, perhaps caused by client-only hosts. /etc/<component>/conf -> /usr/hdp/current/hadoop-client/conf is correct. What should have happened is that conf-select should have changed /usr/hdp/current/hadoop-client/conf to point to something like /usr/hdp/2.5.0.0-1234/hadoop/conf/0 I'm guessing that the conf-select step failed. If you could post the entire output from your client install command, that can help us determine why it failed.
... View more
09-01-2016
02:51 PM
2 Kudos
You've hit a bug. It most likely has to do with a service configuration you still have for a service that's no longer on your stack. I will go ahead and file a Jira to have this fixed in Ambari 2.4.0.1 ... In the meantime, can you run this SQL on your database so we can determine which config is the problem: SELECT
c.cluster_name,
cs.service_name,
cc.type_name,
sc.version
FROM clusterservices cs
JOIN serviceconfig sc
ON cs.service_name = sc.service_name
AND cs.cluster_id = sc.cluster_id
JOIN serviceconfigmapping scm
ON sc.service_config_id = scm.service_config_id
JOIN clusterconfig cc
ON scm.config_id = cc.config_id
AND sc.cluster_id = cc.cluster_id
JOIN clusters c
ON cc.cluster_id = c.cluster_id
AND sc.stack_id = c.desired_stack_id
WHERE sc.group_id IS NULL
AND sc.service_config_id = (SELECT
MAX(service_config_id)
FROM serviceconfig sc2
WHERE sc2.service_name = sc.service_name
AND sc2.cluster_id = sc.cluster_id)
GROUP BY c.cluster_name,
cs.service_name,
cc.type_name,
sc.version
Created AMBARI-18296 to track this...
... View more
08-31-2016
12:58 PM
Ah, OK - I had misread the directory is /usr/hdp/current; indeed etc and other directories are allowed in /usr/hdp/2.3.6.0-3796 Ambari actually doesn't do anything with those directories. We only manipulate the symlinks in /usr/hdp/current and /etc I'm curious if this is a problem with 2.3.4.0
... View more
08-29-2016
07:56 PM
/usr/hdp/2.3.4.0-3485/etc/default/accumulo That's not a correct file location. Everything under /usr/hdp/2.3.4.0-3485 must be HDP component names, like accumulo-tablet or accumulo-client. I'm not sure how that directory is constructed in the Accumulo files, but something seems to have an invalid value. Perhaps Accumulo isn't looking in the correct location for configuration files? Could it be trying to look in /etc/default/accumulo which doesn't exist?
... View more
08-25-2016
02:19 PM
This could be the same issue being discussed here: https://community.hortonworks.com/questions/53203/ambari-is-showing-alerts-on-the-accumulo-service-e.html#answer-53351 Seems like Accumulo doesn't bind to the port after startup.
... View more
08-23-2016
02:02 PM
When you add a new host to a cluster the services running on that host are not automatically started (but they are installed). You will need to startup the services on that new host for the alerts to go away.
... View more
07-27-2016
06:25 PM
So, it sounds like AMBARI-14847 is the problem. If you upgrade to Ambari 2.2.2, that should resolve it.
... View more
07-26-2016
06:28 PM
It could be https://issues.apache.org/jira/browse/AMBARI-14847, a problem with concurrent kinit calls. This was fixed in Ambari 2.2.2 - which version of Ambari is this?
... View more
06-24-2016
02:29 AM
2 Kudos
There is a bug on older Ambari versions where if you rename a cluster (or delete a cluster), you'll get these errors in your logs. It's because the agents have not un-scheduled the old cluster's alerts. You can just restart the agents to have these errors go away.
... View more