All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.solr.handler.component.ResponseLogComponent Maven / Gradle / Ivy

There is a newer version: 9.7.0
Show newest version
/*
 * 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.handler.component;
import java.io.IOException;
import java.util.Collections;
import java.util.Set;

import org.apache.solr.common.params.SolrParams;
import org.apache.solr.response.ResultContext;
import org.apache.solr.schema.IndexSchema;
import org.apache.solr.search.DocIterator;
import org.apache.solr.search.DocList;
import org.apache.solr.search.SolrIndexSearcher;

/**
 * Adds to the log file the document IDs that are sent in the query response.
 * If document scores are available in the response (by adding the pseudo-
 * column 'score' to the field list) then each document ID will be followed
 * by its score, as in:
 * 
 * "... hits=55 responseLog=22:0.71231794,44:0.61231794 status=0 ..."
 * 
* * Add it to a requestHandler in solrconfig.xml like this: *
 * <searchComponent name="responselog" class="solr.ResponseLogComponent"/>
 * 
 * <requestHandler name="/select" class="solr.SearchHandler">
 *   <lst name="defaults">
 *   
 *     ...
 *     
 *   </lst>
 *   <arr name="components">
 *     <str>responselog</str>
 *   </arr>
 * </requestHandler>
* * It can then be enabled at query time by supplying
responseLog=true
* query parameter. */ public class ResponseLogComponent extends SearchComponent { public static final String COMPONENT_NAME = "responseLog"; @Override public void prepare(ResponseBuilder rb) throws IOException {} @Override public void process(ResponseBuilder rb) throws IOException { SolrParams params = rb.req.getParams(); if (!params.getBool(COMPONENT_NAME, false)) return; SolrIndexSearcher searcher = rb.req.getSearcher(); IndexSchema schema = searcher.getSchema(); if (schema.getUniqueKeyField() == null) return; ResultContext rc = (ResultContext) rb.rsp.getResponse(); DocList docs = rc.getDocList(); if (docs.hasScores()) { processScores(rb, docs, schema, searcher); } else { processIds(rb, docs, schema, searcher); } } protected void processIds(ResponseBuilder rb, DocList dl, IndexSchema schema, SolrIndexSearcher searcher) throws IOException { StringBuilder sb = new StringBuilder(); Set fields = Collections.singleton(schema.getUniqueKeyField().getName()); for(DocIterator iter = dl.iterator(); iter.hasNext();) { sb.append(schema.printableUniqueKey(searcher.doc(iter.nextDoc(), fields))) .append(','); } if (sb.length() > 0) { rb.rsp.addToLog("responseLog", sb.substring(0, sb.length() - 1)); } } protected void processScores(ResponseBuilder rb, DocList dl, IndexSchema schema, SolrIndexSearcher searcher) throws IOException { StringBuilder sb = new StringBuilder(); Set fields = Collections.singleton(schema.getUniqueKeyField().getName()); for(DocIterator iter = dl.iterator(); iter.hasNext();) { sb.append(schema.printableUniqueKey(searcher.doc(iter.nextDoc(), fields))) .append(':') .append(iter.score()) .append(','); } if (sb.length() > 0) { rb.rsp.addToLog("responseLog", sb.substring(0, sb.length() - 1)); } } @Override public String getDescription() { return "A component that inserts the retrieved documents (and optionally scores) into the response log entry"; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy