Commit Graph

3906 Commits

Author SHA1 Message Date
Fernando Ipar 48e85c8ca3 reverting changes to pt-mysql-summary as update-modules is changing other things beyond the ndb collection 2017-10-16 14:25:34 -03:00
Fernando Ipar e90b3a77f5 removed accidentally hardcoded file name 2017-10-10 10:52:11 -03:00
Fernando Ipar 5b9ecef04c printing the ndb section 2017-10-10 10:50:26 -03:00
Fernando Ipar a77b68ed73 Improved formatting of the ndb status a bit 2017-10-10 10:43:58 -03:00
Fernando Ipar 58d1d2c3b4 Added skel for ndb status collector 2017-10-09 22:26:46 -03:00
Kamil Dziedzic b44138fd7c Merge pull request #269 from percona/fix_expect_close
Fix expecting iter.Close()
2017-10-06 18:12:47 +02:00
Kamil Dziedzic 228d87e108 Fix expecting iter.Close()
Adding prof.Stop() ensures iterator gets closed
2017-10-05 21:36:18 +02:00
Carlos Salguero b1f262688a Merge pull request #268 from percona/PT-202
PT-202 pt-online-schema-change fails with virtual columns
2017-10-05 16:08:30 -03:00
Carlos Salguero b51d09d811 PT-202 pt-online-schema-change fails with virtual columns
Modified TableParser to ignore GENERATED columns from the columns list
used to construct SELECTs/INSERTs
2017-10-05 15:19:57 -03:00
Carlos Salguero 6ff61612f4 Merge pull request #267 from percona/PT-200
PT-200 Index with keyword 'unique'
2017-09-25 15:28:38 -03:00
Carlos Salguero 4c15a39784 PT-200 Index with keyword 'unique' 2017-09-25 15:16:14 -03:00
Carlos Salguero 95bfe7abaf Merge pull request #266 from percona/revert-193-3.0
Revert "Turn off statement based binlog checks"
2017-09-21 11:36:37 -03:00
Carlos Salguero 89e700c3c3 Revert "Turn off statement based binlog checks" 2017-09-21 11:31:36 -03:00
Carlos Salguero f8fc4fad40 Merge pull request #263 from matsuu/fix-mongodb-query-digest
pt-mongodb-query-digest improvements
2017-09-19 15:51:49 -03:00
Carlos Salguero f466ed90c5 Merge pull request #265 from percona/PT-187
PT-187 Updated documentation for pt-table-checksum
2017-09-19 15:32:18 -03:00
Carlos Salguero 794999154c PT-187 Updated documentation for pt-table-checksum
Added info & links regarding the use of CRC32 as the checksum algorithm.
2017-09-19 14:58:26 -03:00
MATSUU Takuto c18fdc8a01 fix test 2017-09-13 23:05:51 +09:00
MATSUU Takuto 8ce461a7c1 support versions less than 3.2.0
docsExamined is renamed from nscannedObjects in 3.2.0.
2017-09-13 18:36:07 +09:00
MATSUU Takuto aec4ac03cb sort Ratio like Count
Because Scanned.Max / Returned.Max is not meaningful data.
2017-09-13 18:33:19 +09:00
MATSUU Takuto 31d130cbde set Count parameter for totalStats 2017-09-13 18:10:12 +09:00
MATSUU Takuto 08cfe9bd94 set Rank parameter 2017-09-13 18:05:28 +09:00
MATSUU Takuto 3928b1e47f fix a formula 2017-09-13 18:01:47 +09:00
Carlos Salguero 66decef3fd Merge pull request #261 from percona/PT-167
PT-167 pt-kill kills prepared statements without checking busy-time
2017-09-06 16:48:06 -03:00
Carlos Salguero fec1a1f758 PT-167 pt-kill kills prepared statements w/o checking busy-time 2017-09-06 16:46:47 -03:00
Carlos Salguero 738f9809f8 PT-167 Still need to add tests
Description here
2017-09-04 12:03:36 -03:00
Carlos Salguero b8067ad5b3 Merge pull request #259 from percona/travis_go
Add .travis.yml
2017-09-01 09:43:58 -03:00
Kamil Dziedzic 691c034600 s/ServerStatus/Ping/ 2017-09-01 12:00:44 +02:00
Kamil Dziedzic 74b34dc74d strip vendor dir 2017-09-01 11:58:35 +02:00
Kamil Dziedzic f84372a573 add go 1.9 2017-09-01 11:56:29 +02:00
Kamil Dziedzic edd1b97ea3 keep queries in order to make it more predictible 2017-09-01 11:52:00 +02:00
Kamil Dziedzic b2818cc800 change test to be more predictable 2017-09-01 10:39:21 +02:00
Kamil Dziedzic b5bbedab58 add travis for go part 2017-08-31 22:25:26 +02:00
Carlos Salguero 218bd2874b Merge pull request #257 from percona/PT-196
PT-196 pt-onine-schema-change is pausing because {some_status_variabl…
2017-08-30 14:57:54 -03:00
Carlos Salguero 7e59feb8dd PT-196 pt-onine-schema-change is pausing because {some_status_variable}=0
Description here
2017-08-30 14:54:47 -03:00
Carlos Salguero d8723716c7 Merge pull request #256 from percona/PT-152
PT-152 Added SHOW SLAVE HOST to pt-mysql-summary
2017-08-29 16:00:20 -03:00
Carlos Salguero 511c80389f PT-152 Added SHOW SLAVE HOST to pt-mysql-summary 2017-08-29 15:45:13 -03:00
Carlos Salguero 9e8725a4b7 Merge pull request #253 from percona/PT-193
PT-193 pt-table-checksum reports misleading error if comment has apostroph
2017-08-15 12:09:26 -03:00
Carlos Salguero 54dfcf36de PT-193 New test and updated libraries
Added a specific test for this issue and updated all binaries to the
latest TableParser version
2017-08-15 12:06:24 -03:00
Carlos Salguero c375fd068b PT-193 Fixed regex in TableParser
TableParser's parse function was failing while trying to lowercase
column names in the provided 'SHOW CREATE TABLE'.
The problem was it was trying to lowercase everything between backticks
but lines like these:

`field_name` int comment "here is a ` in the comment"
`second_field_name` int

made the original regex to fail, matching `in the coment"` as an
expression to be lowercased while second_file_name was considered as
outside backticks.
2017-08-14 21:01:30 -03:00
Carlos Salguero a54525cb54 Merge pull request #252 from percona/PT-186
PT-186 pt-online-schema-change doesn't recognize fields in alter if the are using Upercase chars
2017-08-04 19:29:57 -03:00
Carlos Salguero 7359ccdd3b PT-186 New fix to make all other tests to pass 2017-08-04 19:21:53 -03:00
Carlos Salguero 331a88c9ea PT-186 Updated changelog 2017-08-04 18:30:03 -03:00
Carlos Salguero 8d04934a3a Merge branch '3.0' into PT-186 2017-08-04 18:28:35 -03:00
Carlos Salguero 1a83b29d49 Merge branch 'release-3.0.4' into 3.0 2017-08-04 18:27:50 -03:00
Carlos Salguero d939d2bf30 PT-186 osc doesn't recognize mixed case in field names
--alter 'CHANGE COLUMN C1 c1 ...' was failing because osc was not
lowering the case of the field names when trying to detect renamed
columns.
2017-08-04 17:57:14 -03:00
Carlos Salguero 0e9cb582b3 Merge pull request #251 from percona/PT-183
PT-183 pt-mongodb-query-digest fails to connect
2017-08-02 15:26:00 -03:00
Carlos Salguero 05769ba234 PT-183 pt-mongodb-query-digest fails to connect
Fixed connection params to connect to a db using authentication
2017-08-02 15:23:35 -03:00
Alexey f48297af94 Remove Ubuntu 12.04 from list of supported distros 2017-08-02 16:39:20 +03:00
Mykola Marzhan 2e44c3a868 RM-269 rename README to README.md 3.0.4 2017-08-01 15:07:42 +03:00
Mykola Marzhan 70265ad22f RM-269 bump version 2017-08-01 14:48:09 +03:00