]> git.openstreetmap.org Git - rails.git/commitdiff
Doing the update version part of the migration in chunks of 10000 instead of all...
authorShaun McDonald <shaun@shaunmcdonald.me.uk>
Thu, 6 Nov 2008 17:15:22 +0000 (17:15 +0000)
committerShaun McDonald <shaun@shaunmcdonald.me.uk>
Thu, 6 Nov 2008 17:15:22 +0000 (17:15 +0000)
db/migrate/018_move_to_innodb.rb

index c551b0ef812cb3ee09e3d9fa27ea336f2ad16000..d17da8fd549649eafdb09e019d779ca986643967 100644 (file)
@@ -19,8 +19,23 @@ class MoveToInnodb < ActiveRecord::Migration
 
     @@ver_tbl.each { |tbl|
       add_column "current_#{tbl}", "version", :bigint, :limit => 20, :null => false
-      execute "UPDATE current_#{tbl} SET version = " +
-       "(SELECT max(version) FROM #{tbl} WHERE #{tbl}.id = current_#{tbl}.id)"
+      # As the initial version of all nodes, ways and relations is 0, we set the 
+      # current version to something less so that we can update the version in 
+      # batches of 10000
+      tbl.classify.constantize.update_all("version=-1")
+      while tbl.classify.constantize.count(:conditions => {:version => -1}) > 0
+        tbl.classify.constantize.update_all("version=(SELECT max(version) FROM #{tbl} WHERE #{tbl}.id = current_#{tbl}.id)", {:version => -1}, :limit => 10000)
+      end
+     # execute "UPDATE current_#{tbl} SET version = " +
+      #  "(SELECT max(version) FROM #{tbl} WHERE #{tbl}.id = current_#{tbl}.id)"
+        # The above update causes a MySQL error:
+        # -- add_column("current_nodes", "version", :bigint, {:null=>false, :limit=>20})
+        # -> 1410.9152s
+        # -- execute("UPDATE current_nodes SET version = (SELECT max(version) FROM nodes WHERE nodes.id = current_nodes.id)")
+        # rake aborted!
+        # Mysql::Error: The total number of locks exceeds the lock table size: UPDATE current_nodes SET version = (SELECT max(version) FROM nodes WHERE nodes.id = current_nodes.id)
+
+        # The above rails version will take longer, however will no run out of locks
     }
   end