You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2019/04/12 09:29:49 UTC

[lucene-solr] branch branch_7_7 updated: SOLR-12860: MetricsHistoryHandler now always uses PKI Auth (#642)

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch branch_7_7
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_7_7 by this push:
     new b643549  SOLR-12860: MetricsHistoryHandler now always uses PKI Auth (#642)
b643549 is described below

commit b643549000970b5a3e6dc5e9a3a3869608911542
Author: Jan Høydahl <ja...@apache.org>
AuthorDate: Fri Apr 12 11:00:45 2019 +0200

    SOLR-12860: MetricsHistoryHandler now always uses PKI Auth (#642)
    
    * SOLR-12860: MetricsHistoryHandler now uses PKI Auth for metrics collection in background thread
    
    (cherry picked from commit f2c59db2736ecdded9601acf0549094769781a4a)
    
    # Conflicts:
    #	solr/CHANGES.txt
---
 solr/CHANGES.txt                                   |  2 +
 .../solr/handler/admin/MetricsHistoryHandler.java  |  8 +-
 .../MetricsHistoryWithAuthIntegrationTest.java     | 93 ++++++++++++++++++++++
 3 files changed, 102 insertions(+), 1 deletion(-)

diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 391d636..fbf5db7 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -63,6 +63,8 @@ Bug fixes
 
 * SOLR-13344: Admin UI inaccessible with RuleBasedAuthorizationPlugin (janhoy, Jason Gerlowski)
 
+* SOLR-12860: MetricsHistoryHandler now uses PKI Auth for metrics collection in background thread (janhoy, Lorenzo)
+
 ==================  7.7.1 ==================
 
 Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
diff --git a/solr/core/src/java/org/apache/solr/handler/admin/MetricsHistoryHandler.java b/solr/core/src/java/org/apache/solr/handler/admin/MetricsHistoryHandler.java
index 60250b2..64265f5 100644
--- a/solr/core/src/java/org/apache/solr/handler/admin/MetricsHistoryHandler.java
+++ b/solr/core/src/java/org/apache/solr/handler/admin/MetricsHistoryHandler.java
@@ -75,6 +75,7 @@ import org.apache.solr.common.params.CommonParams;
 import org.apache.solr.common.params.ModifiableSolrParams;
 import org.apache.solr.common.params.SolrParams;
 import org.apache.solr.common.util.Base64;
+import org.apache.solr.common.util.ExecutorUtil;
 import org.apache.solr.common.util.JavaBinCodec;
 import org.apache.solr.common.util.NamedList;
 import org.apache.solr.common.util.Pair;
@@ -110,7 +111,8 @@ import static java.util.stream.Collectors.toMap;
 import static org.apache.solr.common.params.CommonParams.ID;
 
 /**
- *
+ * Collects metrics from all nodes in the system on a regular basis in a background thread.
+ * @since 7.4
  */
 public class MetricsHistoryHandler extends RequestHandlerBase implements PermissionNameProvider, Closeable {
   private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
@@ -360,6 +362,9 @@ public class MetricsHistoryHandler extends RequestHandlerBase implements Permiss
 
   private void collectMetrics() {
     log.debug("-- collectMetrics");
+    // Make sure we are a solr server thread, so we can use PKI auth, SOLR-12860
+    // This is a workaround since we could not instrument the ScheduledThreadPoolExecutor in ExecutorUtils
+    ExecutorUtil.setServerThreadFlag(true);
     try {
       checkSystemCollection();
     } catch (Exception e) {
@@ -369,6 +374,7 @@ public class MetricsHistoryHandler extends RequestHandlerBase implements Permiss
     // get metrics
     collectLocalReplicaMetrics();
     collectGlobalMetrics();
+    ExecutorUtil.setServerThreadFlag(false);
   }
 
   private void collectLocalReplicaMetrics() {
diff --git a/solr/core/src/test/org/apache/solr/cloud/MetricsHistoryWithAuthIntegrationTest.java b/solr/core/src/test/org/apache/solr/cloud/MetricsHistoryWithAuthIntegrationTest.java
new file mode 100644
index 0000000..5a96ac3
--- /dev/null
+++ b/solr/core/src/test/org/apache/solr/cloud/MetricsHistoryWithAuthIntegrationTest.java
@@ -0,0 +1,93 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.solr.cloud;
+
+import java.util.List;
+
+import org.apache.solr.client.solrj.SolrClient;
+import org.apache.solr.client.solrj.cloud.SolrCloudManager;
+import org.apache.solr.common.params.CommonParams;
+import org.apache.solr.common.util.NamedList;
+import org.apache.solr.util.LogLevel;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+import static org.apache.solr.cloud.MetricsHistoryIntegrationTest.createHistoryRequest;
+
+/**
+ * Tests that metrics history works even with Authentication enabled.
+ * We test that the scheduled calls to /admin/metrics use PKI auth and therefore succeeds
+ */
+@LogLevel("org.apache.solr.handler.admin=DEBUG,org.apache.solr.security=DEBUG")
+public class MetricsHistoryWithAuthIntegrationTest extends SolrCloudTestCase {
+
+  private static SolrCloudManager cloudManager;
+  private static SolrClient solrClient;
+  private static final String SECURITY_JSON = "{\n" +
+      "  'authentication':{\n" +
+      "    'blockUnknown': false, \n" +
+      "    'class':'solr.BasicAuthPlugin',\n" +
+      "    'credentials':{'solr':'orwp2Ghgj39lmnrZOTm7Qtre1VqHFDfwAEzr0ApbN3Y= Ju5osoAqOX8iafhWpPP01E5P+sg8tK8tHON7rCYZRRw='}},\n" +
+      "  'authorization':{\n" +
+      "    'class':'solr.RuleBasedAuthorizationPlugin',\n" +
+      "    'user-role':{'solr':'admin'},\n" +
+      "    'permissions':[{'name':'metrics','collection': null,'path':'/admin/metrics','role':'admin'},\n" +
+      "      {'name':'metrics','collection': null,'path':'/api/cluster/metrics','role':'admin'}]}}";
+  private static final CharSequence SOLR_XML_HISTORY_CONFIG =
+      "<history>\n" +
+      "  <str name=\"collectPeriod\">2</str>\n" +
+      "</history>\n";
+
+  @BeforeClass
+  public static void setupCluster() throws Exception {
+    String solrXml = MiniSolrCloudCluster.DEFAULT_CLOUD_SOLR_XML.replace("<metrics>\n",
+        "<metrics>\n" + SOLR_XML_HISTORY_CONFIG);
+    // Spin up a cluster with a protected /admin/metrics handler, and a 2 seconds metrics collectPeriod
+    configureCluster(1)
+        .addConfig("conf", configset("cloud-minimal"))
+        .withSecurityJson(SECURITY_JSON)
+        .withSolrXml(solrXml)
+        .configure();
+    cloudManager = cluster.getJettySolrRunner(0).getCoreContainer().getZkController().getSolrCloudManager();
+    solrClient = cluster.getSolrClient();
+    // sleep a little to allow the handler to collect some metrics
+    cloudManager.getTimeSource().sleep(3000);
+  }
+
+  @AfterClass
+  public static void teardown() {
+    solrClient = null;
+    cloudManager = null;
+  }
+
+  @SuppressWarnings("unchecked")
+  @Test
+  public void testValuesAreCollected() throws Exception {
+    NamedList<Object> rsp = solrClient.request(createHistoryRequest(params(
+        CommonParams.ACTION, "get", CommonParams.NAME, "solr.jvm")));
+    assertNotNull(rsp);
+    // default format is LIST
+    NamedList<Object> data = (NamedList<Object>)rsp.findRecursive("metrics", "solr.jvm", "data");
+    assertNotNull(data);
+
+    // Has actual values. These will be 0.0 if metrics could not be collected
+    NamedList<Object> memEntry = (NamedList<Object>) ((NamedList<Object>) data.iterator().next().getValue()).get("values");
+    List<Double> heap = (List<Double>) memEntry.getAll("memory.heap.used").get(0);
+    assertTrue("Expected memory.heap.used > 0 in history", heap.get(240) > 0.01);
+  }
+}
\ No newline at end of file