Guest User

neutron.db.migration.migrate_to_ml2 mysql status

a guest
Apr 21st, 2015
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. [root@gpu2 neutron]# mysql -u root -p -h gpu4
  2. Enter password:
  3. Welcome to the MySQL monitor. Commands end with ; or \g.
  4. Your MySQL connection id is 109
  5. Server version: 5.1.73 Source distribution
  6.  
  7. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  8.  
  9. Oracle is a registered trademark of Oracle Corporation and/or its
  10. affiliates. Other names may be trademarks of their respective
  11. owners.
  12.  
  13. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  14.  
  15. mysql> show engine innodb status;
  16. [...]
  17. | Type | Name | Status
  18. | InnoDB | |
  19. =====================================
  20. 150420 18:15:14 INNODB MONITOR OUTPUT
  21. =====================================
  22. Per second averages calculated from the last 8 seconds
  23. ----------
  24. SEMAPHORES
  25. ----------
  26. OS WAIT ARRAY INFO: reservation count 700, signal count 696
  27. Mutex spin waits 0, rounds 1308, OS waits 25
  28. RW-shared spins 1229, OS waits 614; RW-excl spins 60, OS waits 59
  29. ------------------------
  30. LATEST FOREIGN KEY ERROR
  31. ------------------------
  32. 150420 18:06:04 Error in foreign key constraint of table ovs_quantum/ml2_network_segments:
  33. FOREIGN KEY(network_id) REFERENCES networks (id) ON DELETE CASCADE
  34. ):
  35. Cannot find an index in the referenced table where the
  36. referenced columns appear as the first columns, or column types
  37. in the table and the referenced table do not match for constraint.
  38. Note that the internal storage type of ENUM and SET changed in
  39. tables created with >= InnoDB-4.1.12, and such columns in old tables
  40. cannot be referenced by such columns in new tables.
  41. See http://dev.mysql.com/doc/refman/5.1/en/innodb-foreign-key-constraints.html
  42. for correct foreign key definition.
  43. ------------
  44. TRANSACTIONS
  45. ------------
  46. Trx id counter 0 2832769
  47. Purge done for trx's n:o < 0 2832752 undo n:o < 0 0
  48. History list length 36
  49. LIST OF TRANSACTIONS FOR EACH SESSION:
  50. ---TRANSACTION 0 0, not started, process no 20992, OS thread id 140106691450624
  51. MySQL thread id 109, query id 67233 gpu2.east.isi.edu 10.0.1.2 root
  52. show engine innodb status
  53. ---TRANSACTION 0 2832735, not started, process no 20992, OS thread id 140106689853184
  54. MySQL thread id 108, query id 67118 gpu2.east.isi.edu 10.0.1.2 nova
  55. ---TRANSACTION 0 2832674, not started, process no 20992, OS thread id 140106693048064
  56. [...]
  57. MySQL thread id 74, query id 66364 gpu2.east.isi.edu 10.0.1.2 keystone
  58. --------
  59. FILE I/O
  60. --------
  61. I/O thread 0 state: waiting for i/o request (insert buffer thread)
  62. I/O thread 1 state: waiting for i/o request (log thread)
  63. I/O thread 2 state: waiting for i/o request (read thread)
  64. I/O thread 3 state: waiting for i/o request (write thread)
  65. Pending normal aio reads: 0, aio writes: 0,
  66. ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0
  67. Pending flushes (fsync) log: 0; buffer pool: 0
  68. 1566 OS file reads, 10588 OS file writes, 7431 OS fsyncs
  69. 0.00 reads/s, 0 avg bytes/read, 1.00 writes/s, 0.75 fsyncs/s
  70. -------------------------------------
  71. INSERT BUFFER AND ADAPTIVE HASH INDEX
  72. -------------------------------------
  73. Ibuf: size 1, free list len 0, seg size 2,
  74. 0 inserts, 0 merged recs, 0 merges
  75. Hash table size 17393, node heap has 2 buffer(s)
  76. 2.62 hash searches/s, 0.00 non-hash searches/s
  77. ---
  78. LOG
  79. ---
  80. Log sequence number 0 398379270
  81. Log flushed up to 0 398379270
  82. Last checkpoint at 0 398379029
  83. 0 pending log writes, 0 pending chkp writes
  84. 5297 log i/o's done, 0.50 log i/o's/second
  85. ----------------------
  86. BUFFER POOL AND MEMORY
  87. ----------------------
  88. Total memory allocated 22272674; in additional pool allocated 1048320
  89. Dictionary memory allocated 1085320
  90. Buffer pool size 512
  91. Free buffers 1
  92. Database pages 509
  93. Modified db pages 3
  94. Pending reads 0
  95. Pending writes: LRU 0, flush list 0, single page 0
  96. Pages read 2087, created 1548, written 5935
  97. 0.00 reads/s, 0.00 creates/s, 0.37 writes/s
  98. Buffer pool hit rate 1000 / 1000
  99. --------------
  100. ROW OPERATIONS
  101. --------------
  102. 0 queries inside InnoDB, 0 queries in queue
  103. 1 read views open inside InnoDB
  104. Main thread process no. 20992, id 140106705135360, state: sleeping
  105. Number of rows inserted 6428, updated 4157, deleted 6, read 35231
  106. 0.00 inserts/s, 0.37 updates/s, 0.00 deletes/s, 2.62 reads/s
  107. ----------------------------
  108. END OF INNODB MONITOR OUTPUT
  109. ============================
  110. [...]
  111.  
  112. mysql> use ovs_quantum;
  113. Reading table information for completion of table and column names
  114. You can turn off this feature to get a quicker startup with -A
  115.  
  116. Database changed
  117. mysql> show index from networks;
  118. +----------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
  119. | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |
  120. +----------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
  121. | networks | 0 | PRIMARY | 1 | id | A | 1 | NULL | NULL | | BTREE | |
  122. +----------+------------+----------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+
  123. 1 row in set (0.00 sec)
  124.  
  125. mysql> quit;
  126. Bye
Advertisement
Add Comment
Please, Sign In to add comment