I have a lot of data to up-load so I am using 4.3.0 beta 2.
I have about 130K records to load so I have this broken down in 25,000 batches and it is failing on the 1st batch.
Here is what happened the last time (this has happened more than once so can be reproduced):
It only seems to generate the extra 3 jobs for some reason. At the time of writing it is 10:47 so no more jobs have been created.
Help as always appreciated.
I have about 130K records to load so I have this broken down in 25,000 batches and it is failing on the 1st batch.
Here is what happened the last time (this has happened more than once so can be reproduced):
- I started the import to Contacts at 8:13am
- The data contains the ID of an account (don't know if this makes a difference)
- When I checked at 9:30 all was progressing well and was scheduled to finish about 12:00
- At 10:23, 10:24 and 10:25 extra jobs were triggered by Cron to also process the data
- These extra jobs are processing the input file from the start so I will have 4 of every record
- I have not let these jobs finish so I don't know if extra jobs are triggered off
- I did let a job run for a long time yesterday (which triggered the extra jobs) and after 24 hours there were still just 4 processes so the trigger does not seem to be time driven. I don't know if it is a data driven trigger (i.e. something in row 20,000 causes extra processes).
Code:
mat@dev4:~$ ps -ef| grep espo espocrm 3132 3130 0 08:13 ? 00:00:00 /bin/sh -c /usr/bin/php -f /var/www/html/espo/cron.php > /dev/null 2>&1 espocrm 3134 3132 3 08:13 ? 00:05:42 /usr/bin/php -f /var/www/html/espo/cron.php espocrm 7568 7566 0 10:23 ? 00:00:00 /bin/sh -c /usr/bin/php -f /var/www/html/espo/cron.php > /dev/null 2>&1 espocrm 7569 7568 3 10:23 ? 00:00:30 /usr/bin/php -f /var/www/html/espo/cron.php espocrm 7574 7572 0 10:24 ? 00:00:00 /bin/sh -c /usr/bin/php -f /var/www/html/espo/cron.php > /dev/null 2>&1 espocrm 7575 7574 3 10:24 ? 00:00:28 /usr/bin/php -f /var/www/html/espo/cron.php espocrm 7584 7579 0 10:25 ? 00:00:00 /bin/sh -c /usr/bin/php -f /var/www/html/espo/cron.php > /dev/null 2>&1 espocrm 7586 7584 3 10:25 ? 00:00:25 /usr/bin/php -f /var/www/html/espo/cron.php mat 8026 8002 0 10:38 pts/7 00:00:00 grep --color=auto espo mat@dev4:~$
Help as always appreciated.
Comment