Hi all,
I'm running an import with importer 1.4.1 in a docker container setup to migrate a vBulletin forum. The vBulletin SQL dump is around 900MB to give an indication of the size. I have the following setup to migrate:
The import is still running but very slowly. I'm running on a macbook pro and I started the importer from the CLI with the following command:
I've given the docker process more resources which did speed it up a little. (CPUs: 10, Memory: 16GB, Swap 4GB, Disk image size; 100GB)
Now for the import. It's currently on step 14 and already running for more then 150 hours.
I don't see any errors in the docker logs and the import is still progressing. Anything else I can check to see how to speed things up?
I'm running an import with importer 1.4.1 in a docker container setup to migrate a vBulletin forum. The vBulletin SQL dump is around 900MB to give an indication of the size. I have the following setup to migrate:
Code:
version: '2'
services:
php:
image: xfrocks/xenforo:php-apache
environment:
- VIRTUAL_HOST=dev.local.airwork.nl
ports:
- '8100:80'
links:
- mysql
- vbulletin
volumes:
- /Users/myuser/Documents/xenforo/html/:/var/www/html/
mysql:
image: mysql
environment:
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
MYSQL_DATABASE: 'database'
MYSQL_USER: 'user'
MYSQL_PASSWORD: 'password'
ports:
- '9906:3306'
vbulletin:
image: mysql
environment:
MYSQL_RANDOM_ROOT_PASSWORD: 'yes'
MYSQL_DATABASE: 'vbulletin'
MYSQL_USER: 'user'
MYSQL_PASSWORD: 'password'
cap_add:
- SYS_NICE # CAP_SYS_NICE
ports:
- '9907:3306'
The import is still running but very slowly. I'm running on a macbook pro and I started the importer from the CLI with the following command:
Code:
php cmd.php xf:import --processes=10
Now for the import. It's currently on step 14 and already running for more then 150 hours.
Code:
Starting import from vBulletin 5.x...
Using parallel runner with up to 10 processes.
Note: completion percentage is approximate and only updated periodically.
- Step 14 of 21: Posts 153:40:24 [353,731] 0.12%
I don't see any errors in the docker logs and the import is still progressing. Anything else I can check to see how to speed things up?