Prestashop updateCategories() 时间不一致,有时几乎立即工作,有时它会慢到爬行

Prestashop updateCategories() inconsistent times, works almost instantly sometimes and sometimes it slows to a crawl

有人在使用 Prestashop 的 Product class updateCategories() 一次更新大量产品类别之前遇到过任何问题吗?我们使用它来将供应商类别映射到我们自己的类别,我们需要更改 100 到 1000 的产品类别。我们 运行 遇到的问题是 updateCategories 在更新 100 多个以上的大量产品时通常会慢得像爬行一样,并且需要数小时才能完成。

我已经检查了 50 种产品的时间 运行,有时它可以很好地更新它们,有时它会在 30-40 后开始大幅减速。

另一个线程建议它可能是在 updateCategories() 上触发的操作挂钩,但即使在使用此挂钩禁用/覆盖模块后(ps_mainmenu、ps_facetedsearch)它仍然没有修复它。

我们的商店目前有约 150 000 种产品和 300 多个类别,服务器硬件应该没有问题,检查了指标,没有任何瓶颈。

很想听听有关问题可能源自何处的任何建议,或者我自己找出问题原因的方法。

附上用于批量更新类别的示例脚本。

$productIds = Db::getInstance()->executeS('SELECT id_product FROM `' . _DB_PREFIX_ . 'product` ORDER BY id_product LIMIT 60');
$categoryId = 1;
$time_pre_total = microtime(true);
foreach ($productIds as $id) {
  echo '------------------------------------------';
  var_dump($id);
  echo '<br>';
  $time_pre = microtime(true);
  $product = new Product((int)$id['id_product'], null, null, (int)Context::getContext()->shop->id);
  $time_post = microtime(true);
  $exec_time = $time_post - $time_pre;
  var_dump($exec_time);
  echo '<br>';
  $time_pre = microtime(true);
  $product->updateCategories([(int)$categoryId]);
  $time_post = microtime(true);
  $exec_time = $time_post - $time_pre;
  var_dump($exec_time);
  echo '<br>';
  $time_pre = microtime(true);
  $product->id_category_default = $categoryId;
  $time_post = microtime(true);
  $exec_time = $time_post - $time_pre;
  var_dump($exec_time);
  echo '<br>';
  $time_pre = microtime(true);
  $product->update();
  $time_post = microtime(true);
  $exec_time = $time_post - $time_pre;
  var_dump($exec_time);
  echo '<br>';
  echo '------------------------------------------';
}
echo '------------------------------------------';
echo '------------------------------------------';
echo '<br>';
$time_post_total = microtime(true);
$exec_time_total = $time_post_total - $time_pre_total;
var_dump($exec_time_total);
echo '<br>';
echo 'cycle ended';

问题出在 Products class 中的 cleanPositions() 方法,它正在重新计算评论中提到的 @user3256843 的位置,我将寻求覆盖/编写一个不同的方法供自己使用.