Uploaded image for project: 'Solr'
  1. Solr
  2. SOLR-6150

Add new AnalyticsQuery to support pluggable analytics.

    XMLWordPrintableJSON

Details

    • New Feature
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • None
    • 4.9
    • None
    • None

    Description

      It would be great if there was a clean simple approach to plugin custom analytics to Solr.

      This ticket introduces the AnalyticsQuery class which makes this possible.

      To add a custom analytic query you extend AnalyticsQuery and implement:

        public abstract DelegatingCollector getAnalyticsCollector(ResponseBuilder rb, IndexSearcher searcher);
      

      This method returns a custom DelegatingCollector which handles the collection of the analytics.

      The DelegatingCollector.finish() method can be used to conveniently finish your analytics and place the output onto the response.

      The AnalyticsQuery also has a nifty constructor that allows you to pass in a MergeStrategy (see SOLR-5973). So, when you extend AnalyticsQuery you can pass in a custom MergeStrategy to handle merging of analytic output from the shards during a distributed search.

      This design is a natural extension of the PostFilter framework. So you can plugin your AnalyticsQuery with a custom QParserPlugin, for example:

      q=*:*&fq={!myanalytic param1=p1}
      

      Just like PostFilters, AnalyticsQueries can be ordered using the "cost" parameter. This allows for analytic pipe-lining, where the result of one AnalyticsQuery can be pipe-lined to another AnalyticsQuery.

      Attachments

        1. SOLR-6150.patch
          36 kB
          Joel Bernstein
        2. SOLR-6150.patch
          36 kB
          Joel Bernstein
        3. SOLR-6150.patch
          37 kB
          Joel Bernstein
        4. SOLR-6150.patch
          37 kB
          Joel Bernstein

        Activity

          People

            jbernste Joel Bernstein
            jbernste Joel Bernstein
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: