Skip to content

Commit

Permalink
Try to fix command
Browse files Browse the repository at this point in the history
  • Loading branch information
zkabic committed Oct 4, 2023
1 parent c5a95c7 commit 39d1ad1
Showing 1 changed file with 43 additions and 3 deletions.
46 changes: 43 additions & 3 deletions src/SWP/Bundle/CoreBundle/Command/FillArticleExtraTableCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,18 @@ protected function configure(): void

protected function execute(InputInterface $input, OutputInterface $output): int
{

ini_set('memory_limit', -1);

$this->entityManager->getConnection()->getConfiguration()->setSQLLogger(null);

$batchSize = 500;
$limit = $input->getOption('limit');

$sql = "select count(*) from swp_article where extra not like 'a:0%'";
$query = $this->entityManager->getConnection()->prepare($sql);
$query->execute();
$articlesWithExtra = $query->fetchOne();

$sql = "SELECT COUNT(id) FROM swp_article";
$query = $this->entityManager->getConnection()->prepare($sql);
Expand Down Expand Up @@ -79,23 +86,31 @@ protected function execute(InputInterface $input, OutputInterface $output): int
echo "Info: " . $totalArticles . " articles will be processed\n" ;
sleep(1);
$startTime = microtime(true);
$iterations = 0;
$emptyExtra = 0;
$iterations = $emptyExtra = $invalidExtra = 0;
$processed = $duplicates = [];
while ($isProcessing) {
$iterations++;
echo "\033[1A\033[K";
echo "==> Processed: " . $totalArticlesProcessed . "/" . $totalArticles . " articles in " . (microtime(true) - $startTime) . "\n";
$sql = "SELECT id, extra FROM swp_article LIMIT $limit OFFSET $totalArticlesProcessed";
$sql = "SELECT id, extra FROM swp_article order by id ASC OFFSET (($iterations -1) * $limit) LIMIT $limit";
$query = $this->entityManager->getConnection()->prepare($sql);
$query->execute();
$results = $query->fetchAll();
if (empty($results)) {
$isProcessing = false;
}

foreach ($results as $result) {
/**
* Here we should do checkup
* user $result['id'] to find all article_extra for this id and remove them
* This way all new article extra fields that are not from migrated data will be preserved
*/
if (in_array($result['extra'], ['a:0%', 'N;'])) {
++$emptyExtra;
++$totalArticlesProcessed;
continue;
}
$legacyExtra = unserialize($result['extra']);
if (empty($legacyExtra)) {
++$emptyExtra;
Expand All @@ -113,6 +128,16 @@ protected function execute(InputInterface $input, OutputInterface $output): int
);

foreach ($legacyExtra as $key => $extraItem) {
if (isset($processed[$result['id']][$key])) {
$duplicates[] = [
'id' => $result['id'],
'key' => $key,
'value' => $extraItem
];
continue;
} else {
$processed[$result['id']][$key] = true;
}
if (is_array($extraItem)) {
$extra = ArticleExtraEmbedField::newFromValue($key, $extraItem);
} else {
Expand Down Expand Up @@ -152,6 +177,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

echo "Flush is needed. Insertions: $insertCount, Updates: $updateCount, Deletions: $deleteCount\n";
$this->entityManager->flush();
$this->entityManager->clear();
} else {
echo "Nothing to flush...\n";
}
Expand All @@ -160,9 +186,23 @@ protected function execute(InputInterface $input, OutputInterface $output): int
echo "================= DONE =================\n";
echo "\t- Articles count: $totalArticles\n";
echo "\t- Processed: $totalArticlesProcessed\n";
echo "\t- Empty extra: $emptyExtra\n";
echo "\t- Invalid extra: $invalidExtra\n";
echo "\t- Iterations: $iterations\n";
echo "\t- Duplicates count: " . count($duplicates) . "\n";
echo "=================------==================\n";

$finalResult = [
'articles_with_valid_extra' => $articlesWithExtra,
'total_articles' => $totalArticles,
'empty_extra' => $emptyExtra,
'invalid_extra' => $invalidExtra,
'duplicates' => $duplicates
];
$fileName = '/tmp/fill-article-extra.json';
file_put_contents($fileName, PHP_EOL . json_encode($finalResult), FILE_APPEND);

echo ">> See more results in " . $fileName . " file";
exit(1);
}

Expand Down

0 comments on commit 39d1ad1

Please sign in to comment.