This repository was archived by the owner on Aug 22, 2025. It is now read-only.

Description
Hi @ealonsodb
ElasticSearch accepts “from” and “size” parameters so that users can retrieve certain number of results starting from a particular position. https://www.elastic.co/guide/en/elasticsearch/guide/current/pagination.html
Does SCLI have this feature? For example, can I issue a query as follows:
SELECT * FROM tweets WHERE expr(tweets_index, '{
query: {type: "match", field: "body", value: "FIFA"},
**limit:{offset:"100", pagesize:"100"}**
}');
Which retrieves the tweets about FIFA that are returned in 100 tweets/page and skip the first 100 tweets?
If not, does stratio folks have plan to support this? Thanks.