hello;
We have similar problem. EMC souport commented that this could be related with:
LGTsc29876 "incorrect mminfo output when client is part of the query"
They are currently investigating.
PROBLEM DESCRIPTION:
------------------------------------
hello;
when we use nsrinfo to find a file, we see the date is the same as the mminfo query.
# mminfo -q" client=CLIENT,savetime >= -60 day,level=full" -r nsavetime,savetime,name,level |grep " / "
1244283022 06/06/09 / full
1246698992 04/07/09 / full
# nsrinfo -N '/etc/hosts' CLIENT
scanning client `CLIENT' for all savetimes from the backup namespace
/etc/hosts, date=1246698992 sáb 04 jul 2009 11:16:32 CEST
/etc/hosts, date=1244283022 sáb 06 jun 2009 12:10:22 CEST
...
...
/etc/hosts, date=1217669200 sáb 02 ago 2008 11:26:40 CEST
/etc/hosts, date=1215237853 sáb 05 jul 2008 08:04:13 CEST
22 objects found
#
But we have a problem:
# mminfo -q" client=CLIENT,savetime >= -60 day,level=full" -r nsavetime |grep 1244283022
1244283022
# mminfo -q" client=CLIENT,savetime >= -60 day" -r nsavetime |grep 1244283022
#
why in the second query (ite would have to give more information) we do not see all information???
And if we do these querys; we see the query for 160 days have less information than the query for 30 days:
# mminfo -q "savetime >= -30 day,client=CLIENT" -r "name,nsavetime,savetime,level" -o t|wc -l
1436
# mminfo -q "savetime >= -60 day,client=CLIENT" -r "name,nsavetime,savetime,level" -o t|wc -l
1491
# mminfo -q "savetime >= -160 day,client=CLIENT" -r "name,nsavetime,savetime,level" -o t|wc -l
1220
#