[
https://issues.apache.org/jira/browse/AMBARI-14901?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15132377#comment-15132377
]
Hadoop QA commented on AMBARI-14901:
------------------------------------
{color:red}-1 overall{color}. Here are the results of testing the latest
attachment
http://issues.apache.org/jira/secure/attachment/12786224/AMBARI-14901_branch-2.2.patch
against trunk revision .
{color:red}-1 patch{color}. The patch command could not apply the patch.
Console output:
https://builds.apache.org/job/Ambari-trunk-test-patch/5200//console
This message is automatically generated.
> NPE when configuring Kerberos at provisioning secure cluster with Blueprint
> ---------------------------------------------------------------------------
>
> Key: AMBARI-14901
> URL: https://issues.apache.org/jira/browse/AMBARI-14901
> Project: Ambari
> Issue Type: Bug
> Components: ambari-server
> Affects Versions: 2.2.1
> Reporter: Sandor Magyari
> Assignee: Sandor Magyari
> Fix For: 2.2.2
>
> Attachments: AMBARI-14901.patch, AMBARI-14901_branch-2.2.patch
>
>
> Provision a cluster with blueprint and enable kerberos with it.
> config_recommendation_strategy is ONLY_STACK_DEFAULTS_APPLY. The cluster
> installation will fail.
> java.lang.NullPointerException
> at
> org.apache.ambari.server.topology.ClusterConfigurationRequest.configureKerberos(ClusterConfigurationRequest.java:151)
> at
> org.apache.ambari.server.topology.ClusterConfigurationRequest.process(ClusterConfigurationRequest.java:103)
> at
> org.apache.ambari.server.topology.TopologyManager$ConfigureClusterTask.call(TopologyManager.java:764)
> at
> org.apache.ambari.server.topology.TopologyManager$ConfigureClusterTask.call(TopologyManager.java:738)
> at java.util.concurrent.FutureTask.run(FutureTask.java:262)
> at
> java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:178)
> at
> java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:292)
> at
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
> at
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
> at java.lang.Thread.run(Thread.java:745)
> Suspicious code snippet:
> {code:java}
> Map<String, String> propertyMap = updatedConfigs.get(configType);
> Map<String, String> clusterConfigProperties =
> existingConfigurations.get(configType);
> Map<String, String> stackDefaultConfigProperties =
> stackDefaultProps.get(configType);
> for (String property : propertyMap.keySet()) {
> if (clusterConfigProperties == null ||
> !clusterConfigProperties.containsKey(property)
> || (clusterConfigProperties.get(property) == null &&
> stackDefaultConfigProperties.get(property) == null)
> || (clusterConfigProperties.get(property) != null &&
> clusterConfigProperties.get(property).equals(stackDefaultConfigProperties.get(property))))
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)