Skip to content
Snippets Groups Projects
Commit ae69ef39 authored by Peter Rotich's avatar Peter Rotich
Browse files

Merge remote branch 'upstream/develop-next' into develop-next

parents 52952548 e287c7fa
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ class EventEnumRemoval extends MigrationTask { ...@@ -5,6 +5,7 @@ class EventEnumRemoval extends MigrationTask {
var $queue; var $queue;
var $skipList; var $skipList;
var $errorList = array(); var $errorList = array();
var $limit = 20000;
function sleep() { function sleep() {
return array('queue'=>$this->queue, 'skipList'=>$this->skipList); return array('queue'=>$this->queue, 'skipList'=>$this->skipList);
...@@ -13,11 +14,11 @@ class EventEnumRemoval extends MigrationTask { ...@@ -13,11 +14,11 @@ class EventEnumRemoval extends MigrationTask {
$this->queue = $stuff['queue']; $this->queue = $stuff['queue'];
$this->skipList = $stuff['skipList']; $this->skipList = $stuff['skipList'];
while (!$this->isFinished()) while (!$this->isFinished())
$this->do_batch(30, 5000); $this->do_batch(30, $this->limit);
} }
function run($max_time) { function run($max_time) {
$this->do_batch($max_time * 0.9, 5000); $this->do_batch($max_time * 0.9, $this->limit);
} }
function isFinished() { function isFinished() {
...@@ -49,40 +50,34 @@ class EventEnumRemoval extends MigrationTask { ...@@ -49,40 +50,34 @@ class EventEnumRemoval extends MigrationTask {
if(($qc=$this->getQueueLength())) if(($qc=$this->getQueueLength()))
return $qc; return $qc;
$sql = "SELECT this.id, this.state, that.id, that.name FROM ".THREAD_EVENT_TABLE. " this $sql = "SELECT COUNT(t.id) FROM ".THREAD_EVENT_TABLE. " t
INNER JOIN ( INNER JOIN ".EVENT_TABLE. " e ON (e.name=t.state)
SELECT id, name WHERE t.event_id IS NULL";
FROM ". EVENT_TABLE. ") that
WHERE this.state = that.name
AND event_id IS NULL";
if(($skipList=$this->getSkipList()))
$sql.= ' AND this.id NOT IN('.implode(',', db_input($skipList)).')';
if($limit && is_numeric($limit))
$sql.=' LIMIT '.$limit;
//XXX: Do a hard fail or error querying the database? //XXX: Do a hard fail or error querying the database?
if(!($res=db_query($sql))) if(!($res=db_query($sql)))
return $this->error('Unable to query DB for Thread Event migration!'); return $this->error('Unable to query DB for Thread Event migration!');
$count = db_result($res);
// Force the log message to the database // Force the log message to the database
$ost->logDebug("Thread Event Migration", 'Found '.db_num_rows($res) $ost->logDebug("Thread Event Migration", 'Found '.$count
.' events to migrate', true); .' events to migrate', true);
if(!db_num_rows($res)) if($count == 0)
return 0; //Nothing else to do!! return 0; //Nothing else to do!!
$start = db_result(db_query("SELECT id FROM ".THREAD_EVENT_TABLE. "
WHERE event_id IS NULL
ORDER BY id ASC LIMIT 1"));
$this->queue = array(); $this->queue = array();
while (list($id, $state, $eventId, $eventName)=db_fetch_row($res)) { $info=array(
$info=array( 'count' => $count,
'id' => $id, 'start' => $start,
'state' => $state, 'end' => $start + $limit
'eventId' => $eventId, );
'eventName' => $eventName, $this->enqueue($info);
);
$this->enqueue($info);
}
return $this->getQueueLength(); return $this->getQueueLength();
} }
...@@ -125,16 +120,12 @@ class EventEnumRemoval extends MigrationTask { ...@@ -125,16 +120,12 @@ class EventEnumRemoval extends MigrationTask {
# need to be recalculated for every shift() operation. # need to be recalculated for every shift() operation.
$info = array_pop($this->queue); $info = array_pop($this->queue);
if (!$info['state']) { $sql = "UPDATE ".THREAD_EVENT_TABLE. " t
# Continue with next thread event INNER JOIN ".EVENT_TABLE. " e ON (e.name=t.state)
return $this->skip($info['eventId'], SET t.event_id = e.id
sprintf('Thread Event ID %s: State is blank', $info['eventId'])); WHERE t.event_id IS NULL AND t.id <= ". $info['end'];
}
db_query('update '.THREAD_EVENT_TABLE db_query($sql);
.' set event_id='.db_input($info['eventId'])
.' where state='.db_input($info['eventName'])
.' and id='.db_input($info['id']));
return true; return true;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment