Manual:runBatchedQuery.php
Appearance
| MediaWiki file: runBatchedQuery.php | |
|---|---|
| Location: | maintenance/ |
| Source code: | master • 1.45.3 • 1.44.5 • 1.43.8 |
| Classes: | BatchedQueryRunner |
Details
[edit]runBatchedQuery.php file is a maintenance script to run a database query in batches and wait for replica DBs. This is used on large wikis to prevent excessive replication lag when executing large write queries.
Options
[edit]| Option | Description | Required | Default value |
|---|---|---|---|
| --table | Table name | Required | |
| --set | SET clause | Required | |
| --key | Column name, the values of which are unique | Required | |
| --where | WHERE clause | Optional | |
| --batch-size | Batch size | Optional | 1000 |
| --db | Database name, or omit to use the current wiki. | Optional | current wiki db |
Usage
[edit]php maintenance/run.php runBatchedQuery --table tableName --key columnName --set newValue [ --where| --batch-size| --db ]
In MediaWiki version MediaWiki 1.39 and earlier, you must invoke maintenance scripts using
php maintenance/scriptName.php instead of php maintenance/run.php scriptName.