Need to reindex 4 months data only.

Issue #1310 closed
B.JEGADEESAN created an issue

Hi

We need to reindex our 4months archive data only (eg : from 01.05.2023 to 30.08.2023).
And we need to find 4month before particular date (eg : 01.05.2023 00:00 hrs) 1st ID need to find please let us know how to achieve this.

Comments (4)

  1. B.JEGADEESAN reporter

    We sync our store data from old server to another new server setup and database also, For now just we need to reindex last 4 months data only. So that we need to find 4month before particular date (eg : 01.05.2023 00:00 hrs) 1st ID.

  2. Janos SUTO repo owner

    Well, in that case run a query on the piler mysql database like below to get the 1st ID for the reindex -f option:

    select id from metadata where sent >= "the timestamp value of 01.05.2023 00:00" order by id asc limit 1;
    

    The 2nd ID for the reindex -t option simply

    select id from metadata order by id desc limit 1;
    

  3. Log in to comment