3 * Updates database rows by primary key in batches.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup Maintenance
23 class BatchRowWriter
{
25 * @var IDatabase $db The database to write to
30 * @var string $table The name of the table to update
35 * @var string $clusterName A cluster name valid for use with LBFactory
37 protected $clusterName;
40 * @param IDatabase $db The database to write to
41 * @param string $table The name of the table to update
42 * @param string|bool $clusterName A cluster name valid for use with LBFactory
44 public function __construct( IDatabase
$db, $table, $clusterName = false ) {
46 $this->table
= $table;
47 $this->clusterName
= $clusterName;
51 * @param array $updates Array of arrays each containing two keys, 'primaryKey'
52 * and 'changes'. primaryKey must contain a map of column names to values
53 * sufficient to uniquely identify the row changes must contain a map of column
54 * names to update values to apply to the row.
56 public function write( array $updates ) {
59 foreach ( $updates as $update ) {
63 $update['primaryKey'],
69 wfGetLBFactory()->waitForReplication();