Pagination, sorted and aggregation on data

Hi

I have a group of user access data which contain the user name, access timestamp, and some of other info. There will be multiple records with the same username but different access timestamp. What I want is to do is to find the latest access records of all user, sort the result by latest access timestamp, and paginate the result.
In general what I need is:

  1. Aggregate by user name
  2. Sort the aggregate result by latest access timestamp
  3. Pagnated the result.

I tried the wizard and it told me to use the terms aggregation. And here is my search script

{
  "size": 0,
  "aggs": {
    "group_by_name": {
      "terms": {
        "field": "index.name.keyword",
        "include": {
         "partition": 0,
         "num_partitions": 3
        },
        "size": 132,
        "order": {
          "maxField": "desc"
        }
      },
      "aggs": {
        "latest": {
          "top_hits": {
            "_source": {
              "includes": [
                "index.name",
                "index.record_created_timestamp"
              ]
            },
            "sort": [
              {
                "index.record_created_timestamp": {
                  "order": "desc"
                }
              }
            ],
            "size": 1
          }
        },
        "maxField": {
          "max": {
            "field": "index.record_created_timestamp"
          }
        }
      }
    }
  }
}

The script above manages to paginate the result through partitions, but the result is only sorted within each bucket. I didn't manage to sort the result across partitions.

I also tried composite aggregation, but it only supports sorting the results by grouped key(which is username in my case). I didn't find a way to sort through timestamp with composite aggregation.

So are there any other solution for this problem?

Hi Stephen,
Another approach is to create an “entity-centric” index using the “transforms” api. This will create a new index with one document for each user summarising their activity with your choice of attributes (eg first access date, last access etc). These can then be efficiently sorted by date and paginated.
However there is a trade off here because these transform documents are only updated periodically according to a schedule and this means there is a lag between user activity and their summary record being up to date.
Can you live with a delay in reported last accesses?

1 Like

Hi Mark,

Thanks for the suggestion. I believe our business&service will be confusing if the lag is more that a few minutes. Moreover,we need not only the summarized data but also other detailed info to be contained in response. In this case, does the transforms api still solve our issue? Or any other solution?

Thanks,
Yi

The transforms api uses aggregations (including the option of scripts) to fuse data so you can store pretty much what you want in the entity documents, eg details from the user’s last access.
With regards to the lag issue - if the most popular request is to show currently active users with 100% accuracy I’d be tempted to query the last five minutes of access event data directly and use a terms aggregation on user ids sorted by a sub agg on max access date. That would be close to a live view by reading the event data.
The problem with maintaining a close-to-live entity-centric index of user info is that you’d have to update each user document after every access and Lucene is not engineered for such heavy updates. When you introduce a lag, many access events made by a user can be summarised in a single update.
So for recent data it may make sense to use the live event data but for looking at older time windows an entity centric index maintained using the transforms api will work better. You’d have to do some work in your client to make the pagination seamless

Thanks for the explanation Looking for a old user data is one of our requirement. So it looks like we have to do some pagination on our client side.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.