XF 2.2 Import - Fantasy values

DevPunk

Member
Interesting, I wonder where the importer gets this number from. When I query the xf_xf_edit_history, it has about half that number - it seems something went wrong!

1683963810713.png
 
Yes, I can understand that.

But the vB history counter is much lower than the one in the importer. If I only have 5 million entries - how can the importer have already imported 7 million?
 
The number the importer displays is not the actual number of records. Its a count of the total number of record id's scanned.

For example if you have 3.5 million posts records, but the highest post id is 5.2 million, the counter will go up to 5.2 million. And it gets even further from the actual number if you're running a multi-threaded import, it stops and you need to restart it --- some of the threads will keep bumping up the count as the skip over records already imported.

Basically, don't worry about it because it's not always an accurate reflection of the numbers of imported records.
 
Top Bottom