73 $type = $dbw->getType();
74 if (
$type !=
'mysql' ) {
75 $this->
output(
"Link table conversion not necessary for $type\n" );
81 $numBadLinks = $curRowsRead = 0;
83 # total tuples INSERTed into links_temp
84 $totalTuplesInserted = 0;
86 # whether or not to give progress reports while reading IDs from cur table
87 $reportCurReadProgress =
true;
89 # number of rows between progress reports
90 $curReadReportInterval = 1000;
92 # whether or not to give progress reports during conversion
93 $reportLinksConvProgress =
true;
95 # number of rows per INSERT
96 $linksConvInsertInterval = 1000;
98 $initialRowOffset = 0;
100 # not used yet; highest row number from links table to process
101 # $finalRowOffset = 0;
103 $this->logPerformance = $this->
hasOption(
'logperformance' );
104 $perfLogFilename = $this->
getArg( 1,
"convLinksPerf.txt" );
105 $overwriteLinksTable = !$this->
hasOption(
'keep-links-table' );
108 # --------------------------------------------------------------------
110 list( $cur, $links, $links_temp, $links_backup ) =
111 $dbw->tableNamesN(
'cur',
'links',
'links_temp',
'links_backup' );
113 if ( $dbw->tableExists(
'pagelinks', __METHOD__ ) ) {
114 $this->
output(
"...have pagelinks; skipping old links table updates\n" );
119 $res = $dbw->query(
"SELECT l_from FROM $links LIMIT 1", __METHOD__ );
121 if ( $dbw->fieldType(
$res, 0 ) ==
"int" ) {
122 $this->
output(
"Schema already converted\n" );
127 $res = $dbw->query(
"SELECT COUNT(*) AS count FROM $links", __METHOD__ );
128 $row = $dbw->fetchObject(
$res );
129 $numRows = $row->count;
131 if ( $numRows == 0 ) {
132 $this->
output(
"Updating schema (no rows to convert)...\n" );
136 if ( $this->logPerformance ) {
137 $fh = fopen( $perfLogFilename,
"w" );
139 $this->
error(
"Couldn't open $perfLogFilename" );
140 $this->logPerformance =
false;
143 $baseTime = $startTime = microtime(
true );
144 # Create a title -> cur_id map
145 $this->
output(
"Loading IDs from $cur table...\n" );
146 $this->
performanceLog( $fh,
"Reading $numRows rows from cur table...\n" );
148 $contentLang = MediaWikiServices::getInstance()->getContentLanguage();
154 "SELECT cur_namespace,cur_title,cur_id FROM $cur " .
155 "WHERE cur_id > $lastId ORDER BY cur_id LIMIT 10000",
158 foreach (
$res as $row ) {
160 if ( $row->cur_namespace ) {
161 $title = $contentLang->getNsText( $row->cur_namespace ) .
":$title";
163 $ids[
$title] = $row->cur_id;
165 if ( $reportCurReadProgress ) {
166 if ( ( $curRowsRead % $curReadReportInterval ) == 0 ) {
169 $curRowsRead .
" " . ( microtime(
true ) - $baseTime ) .
"\n"
171 $this->
output(
"\t$curRowsRead rows of $cur table read.\n" );
174 $lastId = $row->cur_id;
176 }
while (
$res->numRows() > 0 );
177 $this->
output(
"Finished loading IDs.\n\n" );
180 "Took " . ( microtime(
true ) - $baseTime ) .
" seconds to load IDs.\n\n"
183 # --------------------------------------------------------------------
185 # Now, step through the links table (in chunks of $linksConvInsertInterval rows),
186 # convert, and write to the new table.
189 $baseTime = microtime(
true );
190 $this->
output(
"Processing $numRows rows from $links table...\n" );
191 $this->
performanceLog( $fh,
"Processing $numRows rows from $links table...\n" );
192 $this->
performanceLog( $fh,
"rows inserted vs seconds elapsed:\n" );
194 for ( $rowOffset = $initialRowOffset; $rowOffset < $numRows;
195 $rowOffset += $linksConvInsertInterval
197 $sqlRead =
"SELECT * FROM $links ";
198 $sqlRead = $dbw->limitResult( $sqlRead, $linksConvInsertInterval, $rowOffset );
199 $res = $dbw->query( $sqlRead, __METHOD__ );
201 $sqlWrite = [
"INSERT INTO $links_temp (l_from,l_to) VALUES " ];
203 $sqlWrite = [
"INSERT IGNORE INTO $links_temp (l_from,l_to) VALUES " ];
206 $tuplesAdded = 0; # no tuples added to INSERT yet
207 foreach (
$res as $row ) {
208 $fromTitle = $row->l_from;
209 if ( array_key_exists( $fromTitle, $ids ) ) { # valid title
210 $from = $ids[$fromTitle];
212 if ( $tuplesAdded != 0 ) {
215 $sqlWrite[] =
"($from,$to)";
217 }
else { # invalid title
221 # $this->output( "rowOffset: $rowOffset\ttuplesAdded: "
222 # . "$tuplesAdded\tnumBadLinks: $numBadLinks\n" );
223 if ( $tuplesAdded != 0 ) {
224 if ( $reportLinksConvProgress ) {
225 $this->
output(
"Inserting $tuplesAdded tuples into $links_temp..." );
227 $dbw->query( implode(
"", $sqlWrite ), __METHOD__ );
228 $totalTuplesInserted += $tuplesAdded;
229 if ( $reportLinksConvProgress ) {
230 $this->
output(
" done. Total $totalTuplesInserted tuples inserted.\n" );
233 $totalTuplesInserted .
" " . ( microtime(
true ) - $baseTime ) .
"\n"
238 $this->
output(
"$totalTuplesInserted valid titles and "
239 .
"$numBadLinks invalid titles were processed.\n\n" );
242 "$totalTuplesInserted valid titles and $numBadLinks invalid titles were processed.\n"
246 "Total execution time: " . ( microtime(
true ) - $startTime ) .
" seconds.\n"
248 if ( $this->logPerformance ) {
252 # --------------------------------------------------------------------
254 if ( $overwriteLinksTable ) {
255 # Check for existing links_backup, and delete it if it exists.
256 $this->
output(
"Dropping backup links table if it exists..." );
257 $dbw->query(
"DROP TABLE IF EXISTS $links_backup", __METHOD__ );
258 $this->
output(
" done.\n" );
260 # Swap in the new table, and move old links table to links_backup
261 $this->
output(
"Swapping tables '$links' to '$links_backup'; '$links_temp' to '$links'..." );
262 $dbw->query(
"RENAME TABLE links TO $links_backup, $links_temp TO $links", __METHOD__ );
263 $this->
output(
" done.\n\n" );
265 $this->
output(
"Conversion complete. The old table remains at $links_backup;\n" );
266 $this->
output(
"delete at your leisure.\n" );
268 $this->
output(
"Conversion complete. The converted table is at $links_temp;\n" );
269 $this->
output(
"the original links table is unchanged.\n" );