You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@druid.apache.org by GitBox <gi...@apache.org> on 2019/07/04 09:16:07 UTC

[GitHub] [incubator-druid] duanxuelin opened a new issue #8025: PagingIdentifiers are not right when query data with select query

duanxuelin opened a new issue #8025: PagingIdentifiers are not right when  query  data with select query
URL: https://github.com/apache/incubator-druid/issues/8025
 
 
   
   
   ### Affected Version
   0.14.0-incubating
   
   ### Description
   
   I hava a kafka-indexing-service running. when query data with select and interval end at right now, the query result would contain wrong pagingIdentifiers.
   
   Wrong pagingIdentifiers I mentioned mean that when I query next page with pagingIdentifiers I got in the last query, the result contains records last query has already returned.
   
   I guess that part of query results are come from peon process, which may cause this. So changed interval and pagination works just like expected.
   my query is likeļ¼š
   ```
   {
       "queryType": "select",
       "dataSource": "messages",
       "descending": true,
       "dimensions": [],
       "metrics": [],
       "granularity": "all",
       "filter": {
           "type": "and",
           "fields": [
               {
                   "type": "selector",
                   "dimension": "uid",
                   "value": "201010000001"
               }
           ]
       },
       "intervals": [
           "2019-07-03T08:13:49.944Z/2019-07-04T08:13:49.944Z"
       ],
       "pagingSpec": {
           "pagingIdentifiers": {
           },
           "threshold": 10
       }
   }
   ```
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@druid.apache.org
For additional commands, e-mail: commits-help@druid.apache.org