Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 949512009A8 for ; Tue, 17 May 2016 21:57:44 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 931F81609F5; Tue, 17 May 2016 19:57:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 902791607A8 for ; Tue, 17 May 2016 21:57:43 +0200 (CEST) Received: (qmail 35586 invoked by uid 500); 17 May 2016 19:57:42 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 35577 invoked by uid 99); 17 May 2016 19:57:42 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 May 2016 19:57:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5E3AFDFB79; Tue, 17 May 2016 19:57:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dbhowmick@apache.org To: commits@ambari.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-16634. Ambari Admin Privilege required for Pig and Hive View. 403 error received when opening Pig View by a non-admin user. (Gaurav Nagar via dipayanb) Date: Tue, 17 May 2016 19:57:42 +0000 (UTC) archived-at: Tue, 17 May 2016 19:57:44 -0000 Repository: ambari Updated Branches: refs/heads/branch-2.4 4a2868c82 -> 6ef093df1 AMBARI-16634. Ambari Admin Privilege required for Pig and Hive View. 403 error received when opening Pig View by a non-admin user. (Gaurav Nagar via dipayanb) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6ef093df Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6ef093df Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6ef093df Branch: refs/heads/branch-2.4 Commit: 6ef093df1bd090ef5ee586f76b37d00e1fbee0b5 Parents: 4a2868c Author: Dipayan Bhowmick Authored: Wed May 18 01:26:46 2016 +0530 Committer: Dipayan Bhowmick Committed: Wed May 18 01:27:18 2016 +0530 ---------------------------------------------------------------------- .../apache/ambari/server/view/ClusterImpl.java | 16 +++++++ .../ambari/server/view/RemoteAmbariCluster.java | 29 +++++++++++++ .../ambari/server/view/ClusterImplTest.java | 34 +++++++++++++++ .../server/view/RemoteAmbariClusterTest.java | 41 ++++++++++++++++++ .../org/apache/ambari/view/cluster/Cluster.java | 11 +++++ .../capacityscheduler/ConfigurationService.java | 2 +- .../view/hive/client/ConnectionFactory.java | 4 +- .../ambari/view/utils/ambari/AmbariApi.java | 44 -------------------- .../ambari/view/utils/ambari/Services.java | 2 +- 9 files changed, 135 insertions(+), 48 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/ambari-server/src/main/java/org/apache/ambari/server/view/ClusterImpl.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/view/ClusterImpl.java b/ambari-server/src/main/java/org/apache/ambari/server/view/ClusterImpl.java index 529e09a..10f216e 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/view/ClusterImpl.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/view/ClusterImpl.java @@ -19,8 +19,13 @@ package org.apache.ambari.server.view; import org.apache.ambari.server.state.Config; +import org.apache.ambari.server.state.ServiceComponentHost; +import org.apache.ambari.view.ClusterType; import org.apache.ambari.view.cluster.Cluster; +import java.util.ArrayList; +import java.util.List; + /** * View associated cluster implementation. */ @@ -58,4 +63,15 @@ public class ClusterImpl implements Cluster { return config == null ? null : config.getProperties().get(key); } + + @Override + public List getHostsForServiceComponent(String serviceName, String componentName){ + List serviceComponentHosts = cluster.getServiceComponentHosts(serviceName, componentName); + List hosts = new ArrayList(); + for (ServiceComponentHost serviceComponentHost : serviceComponentHosts) { + hosts.add(serviceComponentHost.getHostName()); + } + return hosts; + } + } http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/ambari-server/src/main/java/org/apache/ambari/server/view/RemoteAmbariCluster.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/java/org/apache/ambari/server/view/RemoteAmbariCluster.java b/ambari-server/src/main/java/org/apache/ambari/server/view/RemoteAmbariCluster.java index f661844..1135424 100644 --- a/ambari-server/src/main/java/org/apache/ambari/server/view/RemoteAmbariCluster.java +++ b/ambari-server/src/main/java/org/apache/ambari/server/view/RemoteAmbariCluster.java @@ -120,6 +120,35 @@ public class RemoteAmbariCluster implements Cluster { return property.getAsJsonPrimitive().getAsString(); } + @Override + public List getHostsForServiceComponent(String serviceName, String componentName) { + String url = String.format("services/%s/components/%s?" + + "fields=host_components/HostRoles/host_name",serviceName,componentName); + + List hosts = new ArrayList(); + + try { + JsonElement response = configurationCache.get(url); + + if(response == null || !response.isJsonObject()) return hosts; + + JsonElement hostComponents = response.getAsJsonObject().get("host_components"); + + if(hostComponents == null || !hostComponents.isJsonArray()) return hosts; + + for (JsonElement element : hostComponents.getAsJsonArray()) { + JsonElement hostRoles = element.getAsJsonObject().get("HostRoles"); + String hostName = hostRoles.getAsJsonObject().get("host_name").getAsString(); + hosts.add(hostName); + } + + } catch (ExecutionException e) { + throw new RemoteAmbariConfigurationReadException("Can't retrieve host information from Remote Ambari", e); + } + + return hosts; + } + /** * Get list of services installed on the remote cluster * http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/ambari-server/src/test/java/org/apache/ambari/server/view/ClusterImplTest.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/test/java/org/apache/ambari/server/view/ClusterImplTest.java b/ambari-server/src/test/java/org/apache/ambari/server/view/ClusterImplTest.java index daf87ec..c315275 100644 --- a/ambari-server/src/test/java/org/apache/ambari/server/view/ClusterImplTest.java +++ b/ambari-server/src/test/java/org/apache/ambari/server/view/ClusterImplTest.java @@ -20,11 +20,14 @@ package org.apache.ambari.server.view; import org.apache.ambari.server.state.Cluster; import org.apache.ambari.server.state.Config; +import org.apache.ambari.server.state.ServiceComponentHost; import org.apache.ambari.server.view.configuration.InstanceConfig; import org.junit.Assert; import org.junit.Test; +import java.util.ArrayList; import java.util.HashMap; +import java.util.List; import java.util.Map; import static org.easymock.EasyMock.createNiceMock; @@ -73,4 +76,35 @@ public class ClusterImplTest { verify(cluster, config); } + + @Test + public void testGetHostsForServiceComponent() { + Cluster cluster = createNiceMock(Cluster.class); + + String service = "SERVICE"; + String component = "COMPONENT"; + + List components = new ArrayList(); + + ServiceComponentHost component1 = createNiceMock(ServiceComponentHost.class); + expect(component1.getHostName()).andReturn("host1"); + components.add(component1); + + ServiceComponentHost component2 = createNiceMock(ServiceComponentHost.class); + expect(component2.getHostName()).andReturn("host2"); + components.add(component2); + + expect(cluster.getServiceComponentHosts(service,component)).andReturn(components); + + replay(cluster, component1, component2); + + ClusterImpl clusterImpl = new ClusterImpl(cluster); + + List hosts = clusterImpl.getHostsForServiceComponent(service,component); + Assert.assertEquals(2, hosts.size()); + Assert.assertEquals("host1",hosts.get(0)); + Assert.assertEquals("host2",hosts.get(1)); + + verify(cluster, component1, component2); + } } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/ambari-server/src/test/java/org/apache/ambari/server/view/RemoteAmbariClusterTest.java ---------------------------------------------------------------------- diff --git a/ambari-server/src/test/java/org/apache/ambari/server/view/RemoteAmbariClusterTest.java b/ambari-server/src/test/java/org/apache/ambari/server/view/RemoteAmbariClusterTest.java index ce8fe7d..2b6e014 100644 --- a/ambari-server/src/test/java/org/apache/ambari/server/view/RemoteAmbariClusterTest.java +++ b/ambari-server/src/test/java/org/apache/ambari/server/view/RemoteAmbariClusterTest.java @@ -19,14 +19,18 @@ package org.apache.ambari.server.view; import org.apache.ambari.server.orm.entities.RemoteAmbariClusterEntity; +import org.apache.ambari.view.AmbariHttpException; import org.apache.ambari.view.AmbariStreamProvider; import org.easymock.IAnswer; +import org.junit.Assert; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import java.io.ByteArrayInputStream; +import java.io.IOException; import java.io.InputStream; +import java.util.List; import java.util.Map; import static org.easymock.EasyMock.anyObject; @@ -35,6 +39,7 @@ import static org.easymock.EasyMock.eq; import static org.easymock.EasyMock.expect; import static org.easymock.EasyMock.isNull; import static org.easymock.EasyMock.replay; +import static org.easymock.EasyMock.verify; import static org.junit.Assert.assertEquals; public class RemoteAmbariClusterTest { @@ -87,4 +92,40 @@ public class RemoteAmbariClusterTest { assertEquals(desiredConfigPolls[0], 1); // cache hit assertEquals(testConfigPolls[0], 1); } + + @Test + public void testGetHostsForServiceComponent() throws IOException, AmbariHttpException { + + final String componentHostsString = "{\"host_components\": [{" + + "\"HostRoles\": {" + + "\"cluster_name\": \"Ambari\"," + + "\"host_name\": \"host1\"}}, {" + + "\"HostRoles\": {" + + "\"cluster_name\": \"Ambari\"," + + "\"host_name\": \"host2\"}}]}"; + + AmbariStreamProvider clusterStreamProvider = createNiceMock(AmbariStreamProvider.class); + + String service = "SERVICE"; + String component = "COMPONENT"; + + expect(clusterStreamProvider.readFrom(eq(String.format("services/%s/components/%s?" + + "fields=host_components/HostRoles/host_name",service,component)), + eq("GET"), (String) isNull(), (Map) anyObject())) + .andReturn(new ByteArrayInputStream(componentHostsString.getBytes())); + + RemoteAmbariClusterEntity entity = createNiceMock(RemoteAmbariClusterEntity.class); + + replay(clusterStreamProvider,entity); + + RemoteAmbariCluster cluster = new RemoteAmbariCluster("Test", clusterStreamProvider); + + List hosts = cluster.getHostsForServiceComponent(service,component); + Assert.assertEquals(2, hosts.size()); + Assert.assertEquals("host1",hosts.get(0)); + Assert.assertEquals("host2",hosts.get(1)); + + verify(clusterStreamProvider, entity); + + } } \ No newline at end of file http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/ambari-views/src/main/java/org/apache/ambari/view/cluster/Cluster.java ---------------------------------------------------------------------- diff --git a/ambari-views/src/main/java/org/apache/ambari/view/cluster/Cluster.java b/ambari-views/src/main/java/org/apache/ambari/view/cluster/Cluster.java index f1b8177..7f7c19b 100644 --- a/ambari-views/src/main/java/org/apache/ambari/view/cluster/Cluster.java +++ b/ambari-views/src/main/java/org/apache/ambari/view/cluster/Cluster.java @@ -18,6 +18,8 @@ package org.apache.ambari.view.cluster; +import java.util.List; + /** * View associated cluster. A cluster may be associated with a view instance so that the view instance may pull * configuration values from the cluster. @@ -39,4 +41,13 @@ public interface Cluster { * @return the configuration value */ public String getConfigurationValue(String type, String key); + + /** + * Get the hosts for service and componet + * + * @param serviceName + * @param componentName + * @return list of hosts + */ + public List getHostsForServiceComponent(String serviceName, String componentName); } http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/contrib/views/capacity-scheduler/src/main/java/org/apache/ambari/view/capacityscheduler/ConfigurationService.java ---------------------------------------------------------------------- diff --git a/contrib/views/capacity-scheduler/src/main/java/org/apache/ambari/view/capacityscheduler/ConfigurationService.java b/contrib/views/capacity-scheduler/src/main/java/org/apache/ambari/view/capacityscheduler/ConfigurationService.java index 718c5a5..41f27c7 100644 --- a/contrib/views/capacity-scheduler/src/main/java/org/apache/ambari/view/capacityscheduler/ConfigurationService.java +++ b/contrib/views/capacity-scheduler/src/main/java/org/apache/ambari/view/capacityscheduler/ConfigurationService.java @@ -474,7 +474,7 @@ public class ConfigurationService { private String getRMHosts() { StringBuilder hosts = new StringBuilder(); boolean first = true; - for (String host : ambariApi.getHostsWithComponent("RESOURCEMANAGER")) { + for (String host : context.getCluster().getHostsForServiceComponent("YARN", "RESOURCEMANAGER")) { if (!first) { hosts.append(","); } http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/contrib/views/hive/src/main/java/org/apache/ambari/view/hive/client/ConnectionFactory.java ---------------------------------------------------------------------- diff --git a/contrib/views/hive/src/main/java/org/apache/ambari/view/hive/client/ConnectionFactory.java b/contrib/views/hive/src/main/java/org/apache/ambari/view/hive/client/ConnectionFactory.java index f93b7b3..7a44a2d 100644 --- a/contrib/views/hive/src/main/java/org/apache/ambari/view/hive/client/ConnectionFactory.java +++ b/contrib/views/hive/src/main/java/org/apache/ambari/view/hive/client/ConnectionFactory.java @@ -78,10 +78,10 @@ public class ConnectionFactory implements UserLocalFactory { } private String getHiveHost() { - if (ambariApi.isClusterAssociated()) { + if (context.getCluster() != null) { List hiveServerHosts; try { - hiveServerHosts = ambariApi.getHostsWithComponent("HIVE_SERVER"); + hiveServerHosts = context.getCluster().getHostsForServiceComponent("HIVE","HIVE_SERVER"); } catch (AmbariApiException e) { throw new ServiceFormattedException(e); } http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/AmbariApi.java ---------------------------------------------------------------------- diff --git a/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/AmbariApi.java b/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/AmbariApi.java index 6072d28..c2367ef 100644 --- a/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/AmbariApi.java +++ b/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/AmbariApi.java @@ -68,50 +68,6 @@ public class AmbariApi { } /** - * Provides ability to get cluster topology - * @param requestComponent name of component - * @return list of hostnames with component - * @throws AmbariApiException - */ - public List getHostsWithComponent(String requestComponent) throws AmbariApiException { - String method = "hosts?fields=Hosts/public_host_name,host_components/HostRoles/component_name"; - String response = requestClusterAPI(method); - - List foundHosts = new ArrayList(); - - JSONObject jsonObject = (JSONObject) JSONValue.parse(response); - JSONArray hosts = (JSONArray) jsonObject.get("items"); - for (Object host : hosts) { - JSONObject hostJson = (JSONObject) host; - JSONArray hostComponents = (JSONArray) hostJson.get("host_components"); - for (Object component : hostComponents) { - JSONObject componentJson = (JSONObject) component; - JSONObject hostRoles = (JSONObject) componentJson.get("HostRoles"); - String componentName = (String) hostRoles.get("component_name"); - if (componentName.equals(requestComponent)) { - foundHosts.add((String) hostRoles.get("host_name")); - } - } - } - return foundHosts; - } - - /** - * Returns first host with requested component installed - * @param requestComponent name of component - * @return any hostname of node that contains the component - * @throws AmbariApiException - */ - public String getAnyHostWithComponent(String requestComponent) throws AmbariApiException { - List foundHosts = getHostsWithComponent(requestComponent); - - if (foundHosts.size() == 0) { - throw new AmbariApiException("RA100 Host with component " + requestComponent + " not found"); - } - return foundHosts.get(0); - } - - /** * Shortcut for GET method * @param path REST API path * @return response http://git-wip-us.apache.org/repos/asf/ambari/blob/6ef093df/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/Services.java ---------------------------------------------------------------------- diff --git a/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/Services.java b/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/Services.java index 782a61f..57156e1 100644 --- a/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/Services.java +++ b/contrib/views/utils/src/main/java/org/apache/ambari/view/utils/ambari/Services.java @@ -217,7 +217,7 @@ public class Services { String host = null; if (context.getCluster() != null) { - List hiveServerHosts = ambariApi.getHostsWithComponent("WEBHCAT_SERVER"); + List hiveServerHosts = context.getCluster().getHostsForServiceComponent("HIVE","WEBHCAT_SERVER"); if (!hiveServerHosts.isEmpty()) { host = hiveServerHosts.get(0);