My Problem is..
when I want to get last Document ID in Solr I get 99999999 and last Id = 246458031
I try this How to get last indexed record in Solr?
and only work if last ID <= 99999999
2.and when I use timestamp many record have the same date [timestamp": "2017-08-14T08:51:21.185Z]
So I need way to get Last Id from Solr
EDIT
I found Solution [q=*:*&start=0&rows=1&sort=timestamp+desc,id+desc] I Sorted by time & ID and it's working So Good