-
Notifications
You must be signed in to change notification settings - Fork 22
Perform more realistic simulations with large blasts #19
Comments
I did trial-run today with these steps:
$offset = getenv('OFFSET');
if ($offset === '' || !is_numeric($offset)) {
exit('Please set OFFSET');
}
$count = getenv('COUNT');
if (!$count) $count = 1000;
for ($i = 0; $i < $count; $i++) {
$j = $offset + $i;
echo "[$j]\n";
civicrm_api3('contact', 'create', [
'contact_type' => 'Individual',
'first_name' => "First$j",
'last_name' => "Last$j",
'email' => "person-$j@example.org",
]);
}
This took about ten minutes ultimately reported:
So, overall, I'd that was a successful run. Some thoughts:
|
This seems related: veda-consulting-company/uk.co.vedaconsulting.mosaico#167 (comment) |
@lcdservices reported on Stackexchange an issue when running a large blast. The cause/scope of that issue of that is unknown, but it would be good to provide some baseline by doing tests with real(ish) SMTP deliveries.
The text was updated successfully, but these errors were encountered: