mirror of
https://github.com/nextcloud/server.git
synced 2026-02-28 12:30:40 -05:00
Merge pull request #45991 from nextcloud/backport/45968/stable29
[stable29] fix(dav): Limit number of UPDATES for sync token created_at
This commit is contained in:
commit
56d4906b73
1 changed files with 28 additions and 1 deletions
|
|
@ -27,6 +27,7 @@ declare(strict_types=1);
|
|||
namespace OCA\DAV\Migration;
|
||||
|
||||
use Closure;
|
||||
use OCP\AppFramework\Services\IAppConfig;
|
||||
use OCP\DB\ISchemaWrapper;
|
||||
use OCP\DB\QueryBuilder\IQueryBuilder;
|
||||
use OCP\DB\Types;
|
||||
|
|
@ -36,10 +37,13 @@ use OCP\Migration\SimpleMigrationStep;
|
|||
|
||||
class Version1025Date20240308063933 extends SimpleMigrationStep {
|
||||
|
||||
private IAppConfig $appConfig;
|
||||
private IDBConnection $db;
|
||||
|
||||
public function __construct(IDBConnection $db) {
|
||||
public function __construct(IAppConfig $appConfig,
|
||||
IDBConnection $db) {
|
||||
$this->db = $db;
|
||||
$this->appConfig = $appConfig;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -67,7 +71,22 @@ class Version1025Date20240308063933 extends SimpleMigrationStep {
|
|||
}
|
||||
|
||||
public function postSchemaChange(IOutput $output, \Closure $schemaClosure, array $options): void {
|
||||
// The threshold is higher than the default of \OCA\DAV\BackgroundJob\PruneOutdatedSyncTokensJob
|
||||
// but small enough to fit into a cluster transaction size.
|
||||
// For a 50k users instance that would still keep 10 changes on average.
|
||||
$limit = max(1, (int) $this->appConfig->getAppValue('totalNumberOfSyncTokensToKeep', '500000'));
|
||||
|
||||
foreach (['addressbookchanges', 'calendarchanges'] as $tableName) {
|
||||
$thresholdSelect = $this->db->getQueryBuilder();
|
||||
$thresholdSelect->select('id')
|
||||
->from($tableName)
|
||||
->orderBy('id', 'desc')
|
||||
->setFirstResult($limit)
|
||||
->setMaxResults(1);
|
||||
$oldestIdResult = $thresholdSelect->executeQuery();
|
||||
$oldestId = $oldestIdResult->fetchColumn();
|
||||
$oldestIdResult->closeCursor();
|
||||
|
||||
$qb = $this->db->getQueryBuilder();
|
||||
|
||||
$update = $qb->update($tableName)
|
||||
|
|
@ -76,7 +95,15 @@ class Version1025Date20240308063933 extends SimpleMigrationStep {
|
|||
$qb->expr()->eq('created_at', $qb->createNamedParameter(0, IQueryBuilder::PARAM_INT)),
|
||||
);
|
||||
|
||||
// If there is a lot of data we only set timestamp for the most recent rows
|
||||
// because the rest will be deleted by \OCA\DAV\BackgroundJob\PruneOutdatedSyncTokensJob
|
||||
// anyway.
|
||||
if ($oldestId !== false) {
|
||||
$update->andWhere($qb->expr()->gt('id', $qb->createNamedParameter($oldestId, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT));
|
||||
}
|
||||
|
||||
$updated = $update->executeStatement();
|
||||
|
||||
$output->debug('Added a default creation timestamp to ' . $updated . ' rows in ' . $tableName);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue