Jake B.
Well-known member
I've got a vBulletin database with around 6 million posts, the posts step has been running for about 6 hours now and has gotten to this point:
It's imported about 98% of the posts based on the counts in the xf_post / post tables:
It's running with 100 processes currently, not sure if that's relevant:
php cmd.php xf:import --processes=100
Code:
- Step 16 of 26: Posts 06:08:09 [10,547,242] 39.47%
It's imported about 98% of the posts based on the counts in the xf_post / post tables:
Code:
MariaDB [(none)]> select max(postid) from vbulletin_copy.post;
+-------------+
| max(postid) |
+-------------+
| 6607320 |
+-------------+
1 row in set (0.001 sec)
MariaDB [(none)]> select max(post_id) from xenforo.xf_post;
+--------------+
| max(post_id) |
+--------------+
| 6607320 |
+--------------+
1 row in set (0.001 sec)
MariaDB [(none)]> select count(postid) from vbulletin_copy.post;
+---------------+
| count(postid) |
+---------------+
| 6598710 |
+---------------+
1 row in set (4.643 sec)
MariaDB [(none)]> select count(post_id) from xenforo.xf_post;
+----------------+
| count(post_id) |
+----------------+
| 6494041 |
+----------------+
1 row in set (5.474 sec)
It's running with 100 processes currently, not sure if that's relevant:
php cmd.php xf:import --processes=100