Introduction

If you ever get a problem with networking between 2 distant Isilon clusters then you might get a problem with SyncIQ reports filling up with nonsense. So if you have a lot of jobs you might end up with thousands of reports. This in turn means the Isilon will not return results from either the CLI or GUI when trying to see reports for synciq policies but will just timeout.

Solution

Here is the ultimate solution for the problem, check how many reports exist:

find /ifs/.ifsvar/modules/tsm/sched/reports/ -name "report-[0-9]*.gc" | wc -l

isi sync policies list

Copy the list so you can enable the policies later and then disable all policies:

isi sync policies disable --all

Change your policies for a maximum age and count to more sensible levels:

isi sync policies modify --policy=<policy-name> --report-max-age=1W --report-max-count=100

Disable the migrate service:

isi services -a isi_migrate disable

Then move the reports to the support directory:

mv /ifs/.ifsvar/modules/tsm/sched/reports /ifs/data/Isilon_Support/reports.bak

Then create a new reports directory:

mkdir /ifs/.ifsvar/modules/tsm/sched/reports

Find all reports over 7 days old and delete:

find /ifs/data/Isilon_Support/reports.bak/ -type f -mtime +7 -exec rm {} \;

Copy all the remaining reports back to the original location:

cp /ifs/data/Isilon_Support/reports.bak/<policy-UID>/* /ifs/.ifsvar/modules/tsm/sched/reports/<policy-UID>/

Rebuild the database:

isi_classic sync reports rebuild

Enable your policies:

isi sync policies enable --policy=<policies>

Finally enable the migrate service:

isi services -a isi_migrate enable

This will do the trick. I would advise you complete for the first time through EMC support however.

Rebuild Report Database Isilon
Tagged on:         

2 thoughts on “Rebuild Report Database Isilon

  • 21st November 2019 at 07:33
    Permalink

    I have raised this problem with support several times without a solution, now it is solved 🙂
    There was almost 50K reports for one of my policies, and it was not really possible to reset it for support, thank you so much this was great to finally solve.

    Reply
    • 21st November 2019 at 12:09
      Permalink

      Agreed support can be hit or miss at times. Note the global settings for reports kept can be adjusted. They can also be changed per policy. Glad to have helped though Johan.

      Reply

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.