Giter VIP home page Giter VIP logo

Comments (2)

mschoch avatar mschoch commented on June 30, 2024

Yes, that is the intended design of aggregations. All of the documents seen at this point of execution have matched the query, so they are all processed by the aggregations. However, depending on the sort key, and how many results you requested, the document may not be a part of the result set returned to the user.

Consider an example where you have 1000 documents. You search for the top 10 documents containing "foo", and your result set will contain the 10 highest ranking documents. However, aggregations can provide you additional information about the other documents that matched, even the ones that weren't returned to you. For example:

  • how many total documents matched (100)
  • how many of the 100 were updated recently (using date range aggregation)
  • of the 100 matching documents, which tags were most popular (using term bucket aggregation)

So, the aggregations let us do additional processing on all the matching documents, not just the subset of matches returned to the user.

from bluge.

danvixent avatar danvixent commented on June 30, 2024

This is all i needed to know, thank you very much @mschoch.

from bluge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.