VIVO-871 Produce timing breakdowns from a developer option

This commit is contained in:
Jim Blake 2015-01-13 16:03:16 -05:00
parent 3fd72a7110
commit 982e81aece
20 changed files with 747 additions and 94 deletions

View file

@ -68,11 +68,9 @@
<#elseif countsType == "STATEMENT_COUNTS">
Processed: ${counts.processed}, remaining: ${counts.remaining}, total: ${counts.total}
<#elseif countsType == "REBUILD_COUNTS">
Number of document before rebuild: ${counts.documentsBefore}, after rebuild:
<#if counts.documentsAfter == 0>
UNKNOWN
<#else>
${counts.documentsAfter}
Number of document before rebuild: ${counts.documentsBefore}
<#if counts.documentsAfter != 0>
- after rebuild: ${counts.documentsAfter}
</#if>
</#if>
</#macro>