From d4104558b55b01a652d07cdeeadcd4f191c6950e Mon Sep 17 00:00:00 2001 From: Carlos Salguero Date: Wed, 18 Apr 2018 12:36:29 -0300 Subject: [PATCH] PT-1501 New tool pt-secure-collect New tool to collect and sanitize pt-tools outputs --- Changelog | 2 + Gopkg.lock | 120 +- src/go/Makefile | 2 +- src/go/pt-secure-collect/Makefile | 95 + src/go/pt-secure-collect/README.md | 88 + src/go/pt-secure-collect/collect.go | 251 + src/go/pt-secure-collect/docker-compose.yml | 35 + src/go/pt-secure-collect/encrypt.go | 96 + src/go/pt-secure-collect/main.go | 387 + src/go/pt-secure-collect/main_test.go | 42 + src/go/pt-secure-collect/sanitize.go | 42 + src/go/pt-secure-collect/sanitize/sanitize.go | 115 + .../pt-secure-collect/sanitize/util/util.go | 45 + .../2018_03_05_13_24_55-innodbstatus1 | 166 + .../2018_03_05_13_24_55-innodbstatus2 | 166 + .../testdata/2018_03_05_13_24_55-processlist | 6570 +++++++++++++++++ ...3_05_13_24_55-processlist.hostnames.sample | 6570 +++++++++++++++++ .../2018_03_05_13_24_55-processlist.sample | 1 + .../2018_03_05_13_29_55-innodbstatus1 | 166 + .../2018_03_05_13_29_55-innodbstatus2 | 166 + .../2018_03_05_13_34_55-innodbstatus1 | 166 + .../2018_03_05_13_34_55-innodbstatus2 | 168 + .../testdata/pt-mysql-summary | 2 + src/go/pt-secure-collect/testdata/pt-stalk | 9 + src/go/pt-secure-collect/testdata/pt-summary | 3 + src/go/pt-secure-collect/testdata/slow_80.log | 2029 +++++ .../testdata/slow_80.log.sample | Bin 0 -> 103949 bytes 27 files changed, 17477 insertions(+), 25 deletions(-) create mode 100644 src/go/pt-secure-collect/Makefile create mode 100644 src/go/pt-secure-collect/README.md create mode 100644 src/go/pt-secure-collect/collect.go create mode 100644 src/go/pt-secure-collect/docker-compose.yml create mode 100644 src/go/pt-secure-collect/encrypt.go create mode 100644 src/go/pt-secure-collect/main.go create mode 100644 src/go/pt-secure-collect/main_test.go create mode 100644 src/go/pt-secure-collect/sanitize.go create mode 100644 src/go/pt-secure-collect/sanitize/sanitize.go create mode 100644 src/go/pt-secure-collect/sanitize/util/util.go create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus1 create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus2 create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.hostnames.sample create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.sample create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus1 create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus2 create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus1 create mode 100644 src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus2 create mode 100755 src/go/pt-secure-collect/testdata/pt-mysql-summary create mode 100755 src/go/pt-secure-collect/testdata/pt-stalk create mode 100755 src/go/pt-secure-collect/testdata/pt-summary create mode 100755 src/go/pt-secure-collect/testdata/slow_80.log create mode 100644 src/go/pt-secure-collect/testdata/slow_80.log.sample diff --git a/Changelog b/Changelog index 2f27d855..412e44f5 100644 --- a/Changelog +++ b/Changelog @@ -9,6 +9,8 @@ v3.0.9 * Feature PT-1509 : Only set binlog_format when necessary (Thanks Moritz Lenz) * Feature PT-1508 : Adding --read-only-interval flag, and read-only check on wake-up (Thanks Shlomi Noach) * Improvement PT-1507 : pt-summary does not reliably read in the transparent huge pages setting (Thanks Nick Veenhof) + * New tool PT-1501 : pt-secure-collect - New tool to collect and sanitize pt-tools outputs + * Improvement PT-1488 : pt-show-grants support for MySQL 8.0 * Feature PT-243 : Adding --max-hostname-length and --max-line-length to pt-query-digest v3.0.8 released 2018-03-13 diff --git a/Gopkg.lock b/Gopkg.lock index 10e9b60f..25c70f9a 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -4,14 +4,41 @@ [[projects]] name = "github.com/Masterminds/semver" packages = ["."] - revision = "15d8430ab86497c5c0da827b748823945e1cf1e1" - version = "v1.4.0" + revision = "c7af12943936e8c39859482e61f0574c2fd7fc75" + version = "v1.4.2" + +[[projects]] + name = "github.com/Sirupsen/logrus" + packages = ["."] + revision = "c155da19408a8799da419ed3eeb0cb5db0ad5dbc" + version = "v1.0.5" + +[[projects]] + name = "github.com/StackExchange/wmi" + packages = ["."] + revision = "5d049714c4a64225c3c79a7cf7d02f7fb5b96338" + version = "1.0.0" + +[[projects]] + name = "github.com/alecthomas/kingpin" + packages = ["."] + revision = "947dcec5ba9c011838740e680966fd7087a71d0d" + version = "v2.2.6" [[projects]] branch = "master" - name = "github.com/StackExchange/wmi" + name = "github.com/alecthomas/template" + packages = [ + ".", + "parse" + ] + revision = "a0175ee3bccc567396460bf5acd36800cb10c49c" + +[[projects]] + branch = "master" + name = "github.com/alecthomas/units" packages = ["."] - revision = "ea383cf3ba6ec950874b8486cd72356d007c768f" + revision = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a" [[projects]] branch = "master" @@ -19,23 +46,32 @@ packages = ["."] revision = "d9036e2120b5ddfa53f3ebccd618c4af275f47da" +[[projects]] + name = "github.com/go-ini/ini" + packages = ["."] + revision = "ace140f73450505f33e8b8418216792275ae82a7" + version = "v1.35.0" + [[projects]] name = "github.com/go-ole/go-ole" - packages = [".","oleutil"] - revision = "0e87ea779d9deb219633b828a023b32e1244dd57" - version = "v1.2.0" + packages = [ + ".", + "oleutil" + ] + revision = "a41e3c4b706f6ae8dfbff342b06e40fa4d2d0506" + version = "v1.2.1" [[projects]] name = "github.com/golang/mock" packages = ["gomock"] - revision = "13f360950a79f5864a972c786a10a50e44b69541" - version = "v1.0.0" + revision = "c34cdb4725f4c3844d095133c6e40e448b86589b" + version = "v1.1.1" [[projects]] branch = "master" name = "github.com/hashicorp/go-version" packages = ["."] - revision = "4fe82ae3040f80a03d04d2cccb5606a626b8e1ee" + revision = "23480c0665776210b5fbbac6eaaee40e3e6a96b7" [[projects]] branch = "master" @@ -43,6 +79,12 @@ packages = ["."] revision = "bf9dde6d0d2c004a008c27aaee91170c786f6db8" +[[projects]] + name = "github.com/mattn/go-shellwords" + packages = ["."] + revision = "02e3cf038dcea8290e44424da473dd12be796a8a" + version = "v1.0.3" + [[projects]] name = "github.com/montanaflynn/stats" packages = ["."] @@ -52,12 +94,25 @@ [[projects]] branch = "master" name = "github.com/pborman/getopt" - packages = [".","v2"] + packages = [ + ".", + "v2" + ] revision = "7148bc3a4c3008adfcab60cbebfd0576018f330b" +[[projects]] + branch = "master" + name = "github.com/percona/go-mysql" + packages = ["query"] + revision = "82ed67a1d0f1779cd60a025c54e0827da0c0838b" + [[projects]] name = "github.com/percona/pmgo" - packages = [".","pmgomock"] + packages = [ + ".", + "pmgomock" + ] + revision = "497d06e28f910fbe26d5d60f59d36284a6901c6f" version = "0.5.2" [[projects]] @@ -69,14 +124,21 @@ [[projects]] name = "github.com/satori/go.uuid" packages = ["."] - revision = "879c5887cd475cd7864858769793b2ceb0d44feb" - version = "v1.1.0" + revision = "f58768cc1a7a7e77a3bd49e98cdd21419399b6a3" + version = "v1.2.0" [[projects]] name = "github.com/shirou/gopsutil" - packages = ["cpu","host","internal/common","mem","net","process"] - revision = "bfe3c2e8f406bf352bc8df81f98c752224867349" - version = "v2.17.11" + packages = [ + "cpu", + "host", + "internal/common", + "mem", + "net", + "process" + ] + revision = "fc04d2dd9a512906a2604242b35275179e250eda" + version = "v2.18.03" [[projects]] branch = "master" @@ -94,30 +156,40 @@ branch = "master" name = "go4.org" packages = ["reflectutil"] - revision = "034d17a462f7b2dcd1a4a73553ec5357ff6e6c6e" + revision = "9599cf28b011184741f249bd9f9330756b506cbc" [[projects]] branch = "master" name = "golang.org/x/crypto" packages = ["ssh/terminal"] - revision = "94eea52f7b742c7cbe0b03b22f0c4c8631ece122" + revision = "d6449816ce06963d9d136eee5a56fca5b0616e7e" [[projects]] branch = "master" name = "golang.org/x/net" packages = ["context"] - revision = "d866cfc389cec985d6fda2859936a575a55a3ab6" + revision = "d41e8174641f662c5a2d1c7a5f9e828788eb8706" [[projects]] branch = "master" name = "golang.org/x/sys" - packages = ["unix","windows"] - revision = "9418b3fdda89831e55f1d80702d6bf2f06d5438f" + packages = [ + "unix", + "windows" + ] + revision = "b126b21c05a91c856b027c16779c12e3bf236954" [[projects]] branch = "v2" name = "gopkg.in/mgo.v2" - packages = [".","bson","dbtest","internal/json","internal/sasl","internal/scram"] + packages = [ + ".", + "bson", + "dbtest", + "internal/json", + "internal/sasl", + "internal/scram" + ] revision = "3f83fa5005286a7fe593b055f0d7771a7dce4655" [[projects]] @@ -129,6 +201,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "22594a7df9824c0a88d1de53c578d040b031dabd75d1fa852f7f775f4a71ae59" + inputs-digest = "fbf4dee6023d7297ebed697186e5687b1234ea1f49a100c54fa486c94306e5b9" solver-name = "gps-cdcl" solver-version = 1 diff --git a/src/go/Makefile b/src/go/Makefile index 488deec8..b90f17df 100644 --- a/src/go/Makefile +++ b/src/go/Makefile @@ -1,5 +1,5 @@ GO := go -pkgs = $(shell find . -type d -name "pt-mongodb*" -exec basename {} \;) +pkgs = $(shell find . -type d -name "pt-*" -exec basename {} \;) VERSION="3.0.8" BUILD=$(shell date +%FT%T%z) GOVERSION=$(shell go version | cut --delimiter=" " -f3) diff --git a/src/go/pt-secure-collect/Makefile b/src/go/pt-secure-collect/Makefile new file mode 100644 index 00000000..8862a7ce --- /dev/null +++ b/src/go/pt-secure-collect/Makefile @@ -0,0 +1,95 @@ +GO := go +pkgs = $(shell basename `git rev-parse --show-toplevel`) +VERSION ?=$(shell git describe --abbrev=0) +BUILD ?=$(shell date +%FT%T%z) +GOVERSION ?=$(shell go version | cut --delimiter=" " -f3) +COMMIT ?=$(shell git rev-parse HEAD) +BRANCH ?=$(shell git rev-parse --abbrev-ref HEAD) +GOPATH ?=${HOME}/go + +MAKE_TARS = '' +CUR_DIR=$(shell pwd) +BIN_DIR=${CUR_DIR}/build +SOURCES=collect encryptor pt-secure-data +LDFLAGS="-X main.Version=${VERSION} -X main.Build=${BUILD} -X main.Commit=${COMMIT} -X main.Branch=${BRANCH} -X main.GoVersion=${GOVERSION} -s -w" + +ifeq (${GOPATH},) +$(error GOPATH is not set) +endif + +ifeq (,$(wildcard ${GOPATH}/src)) +$(error Invalid GOPATH. There is no src dir in the GOPATH) +endif + +ifeq ($(findstring ${GOPATH},${CUR_DIR}), ) +$(error Wrong directorry for the project. It must be in $GOPATH/github/Percona-Lab/pt-secure-data) +endif + +$(info ) +$(info GOPATH..........: ${GOPATH}) +$(info Build directory.: ${BIN_DIR}) +$(info ) + +.PHONY: all style format build test vet tarball linux-amd64 + +default: prepare + @$(info Cleaning old tar files in ${BIN_DIR}) + @rm -f ${BIN_DIR}/collect_*.tar.gz + @echo + @$(info Building in ${BIN_DIR}) + @go build -ldflags ${LDFLAGS} -o ${BIN_DIR}/pt-secure-data *.go + +prepare: + @$(info Checking if ${BIN_DIR} exists) + @mkdir -p ${BIN_DIR} + +all: clean darwin-amd64-tar linux-amd64-tar windows-amd64-tar + +clean: prepare + @$(info Cleaning binaries and tar.gz files in dir ${BIN_DIR}) + @rm -f ${BIN_DIR}/pt-secure-data + @rm -f ${BIN_DIR}/pt-secure-data.exe + @rm -f ${BIN_DIR}/pt-secure-data_*.tar.gz + +linux-amd64: prepare + @echo "Building linux/amd64 binaries in ${BIN_DIR}" + @GOOS=linux GOARCH=amd64 go build -ldflags ${LDFLAGS} -o ${BIN_DIR}/pt-secure-data *.go + +linux-amd64-tar: linux-amd64 + @tar cvzf ${BIN_DIR}/pt-secure-data_linux_amd64.tar.gz -C ${BIN_DIR} pt-secure-data + +darwin-amd64: + @echo "Building darwin/amd64 binaries in ${BIN_DIR}" + @mkdir -p ${BIN_DIR} + @GOOS=darwin GOARCH=amd64 go build -ldflags ${LDFLAGS} -o ${BIN_DIR}/pt-secure-data *.go + +darwin-amd64-tar: darwin-amd64 + @tar cvzf ${BIN_DIR}/pt-secure-data_darwin_amd64.tar.gz -C ${BIN_DIR} pt-secure-data + +windows-amd64: prepare + @echo "Building windows/amd64 binaries in ${BIN_DIR}" + @GOOS=windows GOARCH=amd64 go build -ldflags ${LDFLAGS} -o ${BIN_DIR}/pt-secure-data.exe *.go + +windows-amd64-tar: windows-amd64 + @tar cvzf ${BIN_DIR}/pt-secure-data_windows_amd64.tar.gz -C ${BIN_DIR} pt-secure-data.exe + +style: + @echo ">> checking code style" + @! gofmt -d $(shell find . -path ./vendor -prune -o -name '*.go' -print) | grep '^' + +test: + @echo ">> running tests" + @./runtests.sh + +clean-tests: + @$(info Cleaning up docker containers used for tests) + @docker-compose down + +format: + @echo ">> formatting code" + @$(GO) fmt $(pkgs) + +vet: + @echo ">> vetting code" + @$(GO) vet $(pkgs) + diff --git a/src/go/pt-secure-collect/README.md b/src/go/pt-secure-collect/README.md new file mode 100644 index 00000000..c0f2fa40 --- /dev/null +++ b/src/go/pt-secure-collect/README.md @@ -0,0 +1,88 @@ +# pt-secure-data +Collect, sanitize, pack and encrypt data. By default, this program will collect the output of: + +- `pt-stalk --no-stalk --iterations=2 --sleep=30 --host=$mysql-host --dest=$temp-dir --port=$mysql-port --user=$mysql-user --password=$mysql-pass` +- `pt-summary` +- `pt-mysql-summary --host=$mysql-host --port=$mysql-port --user=$mysql-user --password=$mysql-pass` + +Internal variables placeholders will be replaced with the corresponding flag values. For example, `$mysql-host` will be replaced with the values specified in the `--mysql-host` flag. + +Usage: +``` +pt-secure-data [] [ ...] +``` + + +### Global flags +|Flag|Description| +|-----|-----| +|--help|Show context-sensitive help (also try --help-long and --help-man).| +|--debug|Enable debug log level.| + +### **Commands** +#### **Help command** +Show help + +#### **Collect command** +Collect, sanitize, pack and encrypt data from pt-tools. +Usage: +``` +pt-secure-collect collect +``` + +|Flag|Description| +|-----|-----| +|--bin-dir|Directory having the Percona Toolkit binaries (if they are not in PATH).| +|--temp-dir|Temporary directory used for the data collection. Default: ${HOME}/data_collection\_{timestamp}| +|--include-dir|Include this dir into the sanitized tar file| +|--config-file|Path to the config file. Default: `~/.my.cnf`| +|--mysql-host|MySQL host. Default: `127.0.0.1`| +|--mysql-port|MySQL port. Default: `3306`| +|--mysql-user|MySQL user name.| +|--mysql-password|MySQL password.| +|--ask-mysql-pass|Ask MySQL password.| +|--extra-cmd|Also run this command as part of the data collection. This parameter can be used more than once.| +|--encrypt-password|Encrypt the output file using this password.
If ommited, it will be asked in the command line.| +|--no-collect|Do not collect data| +|--no-sanitize|Do not sanitize data| +|--no-encrypt|Do not encrypt the output file.| +|--no-sanitize-hostnames|Do not sanitize host names.| +|--no-sanitize-queries|Do not replace queries by their fingerprints.| +|--no-remove-temp-files|Do not remove temporary files.| + +#### **Decrypt command** +Decrypt an encrypted file. The password will be requested from the terminal. +Usage: +``` +pt-secure-collect decrypt [flags] +``` +|Flag|Description| +|-----|------| +|--outfile|Write the output to this file.
If ommited, the output file name will be the same as the input file, adding the `.aes` extension| + + +#### **Encrypt command** +Encrypt a file. The password will be requested from the terminal. +Usage: +``` +pt-secure-collect encrypt [flags] +``` +|Flag|Description| +|-----|------| +|--outfile|Write the output to this file.
If ommited, the output file name will be the same as the input file, without the `.aes` extension| + + +#### **Sanitize command** +Replace queries in a file by their fingerprints and obfuscate hostnames. +Usage: +``` +pt-secure-collect sanitize [flags] +``` + +|Flag|Description| +|-----|-----| +|--input-file| Input file. If not specified, the input will be Stdin.| +|--output-file|Output file. If not specified, the input will be Stdout.| +|--no-sanitize-hostnames|Do not sanitize host names.| +|--no-sanitize-queries|Do not replace queries by their fingerprints.| + diff --git a/src/go/pt-secure-collect/collect.go b/src/go/pt-secure-collect/collect.go new file mode 100644 index 00000000..0682edb3 --- /dev/null +++ b/src/go/pt-secure-collect/collect.go @@ -0,0 +1,251 @@ +package main + +import ( + "archive/tar" + "compress/gzip" + "crypto/sha256" + "fmt" + "io" + "io/ioutil" + "os" + "os/exec" + "os/user" + "path" + "regexp" + "strings" + "time" + + log "github.com/Sirupsen/logrus" + shellwords "github.com/mattn/go-shellwords" + "github.com/percona/percona-toolkit/src/go/pt-secure-collect/sanitize" + "github.com/percona/percona-toolkit/src/go/pt-secure-collect/sanitize/util" + "github.com/pkg/errors" +) + +func collectData(opts *cliOptions) error { + log.Infof("Temp directory is %q", *opts.TempDir) + + if !*opts.NoCollect { + cmds, safeCmds, err := getCommandsToRun(defaultCmds, opts) + // Run the commands + if err = runCommands(cmds, safeCmds, *opts.TempDir); err != nil { + return errors.Wrap(err, "Cannot run data collection commands") + } + } + + if !*opts.NoSanitize { + log.Infof("Sanitizing output collected data") + err := processFiles(*opts.TempDir, *opts.IncludeDirs, *opts.TempDir, !*opts.NoSanitizeHostnames, !*opts.NoSanitizeQueries) + if err != nil { + return errors.Wrapf(err, "Cannot sanitize files in %q", *opts.TempDir) + } + } + + tarFile := fmt.Sprintf(path.Join(*opts.TempDir, path.Base(*opts.TempDir)+".tar.gz")) + log.Infof("Creating tar file %q", tarFile) + if err := tarit(tarFile, []string{*opts.TempDir}); err != nil { + return err + } + + if !*opts.NoEncrypt && *opts.EncryptPassword != "" { + password := sha256.Sum256([]byte(*opts.EncryptPassword)) + encryptedFile := tarFile + ".aes" + log.Infof("Encrypting %q file into %q", tarFile, encryptedFile) + encrypt(tarFile, encryptedFile, password) + } + + return nil +} + +func processFiles(dataDir string, includeDirs []string, outputDir string, sanitizeHostnames, sanitizeQueries bool) error { + dirs := []string{dataDir} + dirs = append(dirs, includeDirs...) + + for _, dir := range dirs { + files, err := ioutil.ReadDir(dir) + if err != nil { + return errors.Wrapf(err, "Cannot get the listing of %q", dir) + } + if len(files) == 0 { + return errors.Errorf("There are no files to sanitize in %q", dir) + } + log.Debug("Sanitization process start") + + for _, file := range files { + if file.IsDir() { + continue + } + inputFile := path.Join(dir, file.Name()) + log.Debugf("Reading %q", inputFile) + fh, err := os.Open(inputFile) + if err != nil { + return errors.Wrapf(err, "Cannot open %q for reading", inputFile) + } + + lines, err := util.ReadLinesFromFile(fh) + if err != nil { + return errors.Wrapf(err, "Cannot sanitize %q", inputFile) + } + + log.Debugf("Sanitizing %q", inputFile) + sanitized := sanitize.Sanitize(lines, sanitizeHostnames, sanitizeQueries) + + outfile := path.Join(outputDir, file.Name()) + log.Debugf("Writing sanitized file to %q", outfile) + ofh, err := os.Create(outfile) + if err != nil { + return errors.Wrapf(err, "Cannot open %q for writing", outfile) + } + + if err = util.WriteLinesToFile(ofh, sanitized); err != nil { + return errors.Wrapf(err, "Cannot write sanitized file %q", outfile) + } + } + } + return nil +} + +func tarit(outfile string, srcPaths []string) error { + file, err := os.Create(outfile) + if err != nil { + return errors.Wrapf(err, "Cannot create tarĀ file %q", outfile) + } + defer file.Close() + + gw := gzip.NewWriter(file) + defer gw.Close() + + tw := tar.NewWriter(gw) + defer tw.Close() + + for _, srcPath := range srcPaths { + files, err := ioutil.ReadDir(srcPath) + if err != nil { + return errors.Wrapf(err, "Cannot get the listing of %q", srcPath) + } + for _, file := range files { + // Ignore tar.gz files from previous runs + if strings.HasSuffix(file.Name(), ".tar.gz") { + log.Debugf("Skipping file %q", file.Name()) + continue + } + log.Debugf("Adding %q to the tar file", file.Name()) + if err := addFile(tw, srcPath, file); err != nil { + return errors.Wrapf(err, "Cannot add %q to the tar file %q", file.Name(), outfile) + } + } + } + + return nil +} + +func getCommandsToRun(defaultCmds []string, opts *cliOptions) ([]*exec.Cmd, []string, error) { + log.Debug("Default commands to run:") + for i, cmd := range defaultCmds { + log.Debugf("%02d) %s", i, cmd) + } + cmdList := []string{} + cmds := []*exec.Cmd{} + safeCmds := []string{} + notAllowedCmdsRe := regexp.MustCompile("(rm|fdisk|rmdir)") + + if !*opts.NoCollect { + cmdList = append(cmdList, defaultCmds...) + } + + if *opts.AdditionalCmds != nil { + cmdList = append(cmdList, *opts.AdditionalCmds...) + } + + for _, cmdstr := range cmdList { + cmdstr = strings.Replace(cmdstr, "$mysql-host", *opts.MySQLHost, -1) + cmdstr = strings.Replace(cmdstr, "$mysql-port", fmt.Sprintf("%d", *opts.MySQLPort), -1) + cmdstr = strings.Replace(cmdstr, "$mysql-user", *opts.MySQLUser, -1) + cmdstr = strings.Replace(cmdstr, "$temp-dir", *opts.TempDir, -1) + safeCmd := cmdstr + safeCmd = strings.Replace(safeCmd, "$mysql-pass", "********", -1) + cmdstr = strings.Replace(cmdstr, "$mysql-pass", *opts.MySQLPass, -1) + + args, err := shellwords.Parse(cmdstr) + if err != nil { + return nil, nil, errors.Wrapf(err, "Cannot parse %q", cmdstr) + } + if found := notAllowedCmdsRe.FindAllString(args[0], -1); len(found) > 0 { + continue + } + + cmd := exec.Command(args[0], args[1:]...) + cmds = append(cmds, cmd) + safeCmds = append(safeCmds, safeCmd) + } + return cmds, safeCmds, nil +} + +func runCommands(cmds []*exec.Cmd, safeCmds []string, dataDir string) error { + for i := range cmds { + cmd := cmds[i] + safeCmd := safeCmds[i] + + logFile := path.Join(dataDir, fmt.Sprintf("%s_%s.out", path.Base(cmd.Args[0]), time.Now().Format("2006-01-02_15_04_05"))) + log.Infof("Creating output file %q", logFile) + fh, err := os.Create(logFile) + if err != nil { + return errors.Wrapf(err, "Cannot create output file %s", logFile) + } + + log.Infof("Running %s", safeCmd) + stdoutStderr, err := cmd.CombinedOutput() + if err != nil { + fh.WriteString(fmt.Sprintf("There was a problem running %s\n%s", safeCmd, err)) + fh.Write(stdoutStderr) + fh.Close() + return errors.Wrapf(err, "\nThere was a problem running %s\n%s", + safeCmd, fmt.Sprintf("See %s for more details.", logFile)) + } + fh.Write(stdoutStderr) + fh.Close() + } + + return nil +} + +func addFile(tw *tar.Writer, srcPath string, fileInfo os.FileInfo) error { + file, err := os.Open(path.Join(srcPath, fileInfo.Name())) + if err != nil { + return err + } + defer file.Close() + + if _, err := file.Stat(); err == nil { + header, err := tar.FileInfoHeader(fileInfo, "") + if err != nil { + return errors.Wrapf(err, "Cannot create tar file header for %q", fileInfo.Name()) + } + + // Add the path since fileInfo.Name() only has the file name without the path + header.Name = path.Join(path.Base(srcPath), fileInfo.Name()) + + if err := tw.WriteHeader(header); err != nil { + return errors.Wrapf(err, "Cannot write file header for %q into the tar file", fileInfo.Name()) + } + + if _, err := io.Copy(tw, file); err != nil { + return errors.Wrapf(err, "Cannot write file %q to the tar file", fileInfo.Name()) + } + } + return nil +} + +func getTempDir() (string, error) { + user, err := user.Current() + if err != nil { + return "", errors.Wrap(err, "Cannot get current user information") + } + + dir, err := ioutil.TempDir(user.HomeDir, "sanitize_") + if err != nil { + return "", errors.Wrap(err, "Cannot create temporary directory") + } + + return dir, nil +} diff --git a/src/go/pt-secure-collect/docker-compose.yml b/src/go/pt-secure-collect/docker-compose.yml new file mode 100644 index 00000000..e1e7873a --- /dev/null +++ b/src/go/pt-secure-collect/docker-compose.yml @@ -0,0 +1,35 @@ +version: '3' +services: + mysql5.6: + image: ${MYSQL_IMAGE:-mysql:5.6} + ports: + - ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3306}:3306 + environment: + - MYSQL_ALLOW_EMPTY_PASSWORD=yes + # MariaDB >= 10.0.12 doesn't enable Performance Schema by default so we need to do it manually + # https://mariadb.com/kb/en/mariadb/performance-schema-overview/#activating-the-performance-schema + command: --performance-schema --secure-file-priv="" + volumes: + - ./testdata/schema/:/docker-entrypoint-initdb.d/:rw + mysql5.7: + image: ${MYSQL_IMAGE:-mysql:5.7} + ports: + - ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3307}:3306 + environment: + - MYSQL_ALLOW_EMPTY_PASSWORD=yes + # MariaDB >= 10.0.12 doesn't enable Performance Schema by default so we need to do it manually + # https://mariadb.com/kb/en/mariadb/performance-schema-overview/#activating-the-performance-schema + command: --performance-schema --secure-file-priv="" + volumes: + - ./testdata/schema/:/docker-entrypoint-initdb.d/:rw + mysql8.0: + image: ${MYSQL_IMAGE:-mysql:8.0.4} + ports: + - ${MYSQL_HOST:-127.0.0.1}:${MYSQL_PORT:-3308}:3306 + environment: + - MYSQL_ALLOW_EMPTY_PASSWORD=yes + # MariaDB >= 10.0.12 doesn't enable Performance Schema by default so we need to do it manually + # https://mariadb.com/kb/en/mariadb/performance-schema-overview/#activating-the-performance-schema + command: --performance-schema --secure-file-priv="" + volumes: + - ./testdata/schema/:/docker-entrypoint-initdb.d/:rw diff --git a/src/go/pt-secure-collect/encrypt.go b/src/go/pt-secure-collect/encrypt.go new file mode 100644 index 00000000..d1fb7885 --- /dev/null +++ b/src/go/pt-secure-collect/encrypt.go @@ -0,0 +1,96 @@ +package main + +import ( + "crypto/aes" + "crypto/cipher" + "crypto/sha256" + "io" + "os" + "path/filepath" + "strings" + + log "github.com/Sirupsen/logrus" + "github.com/pkg/errors" +) + +func encryptorCmd(opts *cliOptions) (err error) { + password := sha256.Sum256([]byte(*opts.EncryptPassword)) + + switch opts.Command { + case "decrypt": + if *opts.DecryptOutFile == "" && strings.HasSuffix(*opts.DecryptInFile, ".aes") { + *opts.DecryptOutFile = strings.TrimSuffix(filepath.Base(*opts.DecryptInFile), ".aes") + } + log.Infof("Decrypting file %q into %q", *opts.DecryptInFile, *opts.DecryptOutFile) + err = decrypt(*opts.DecryptInFile, *opts.DecryptOutFile, password) + case "encrypt": + if *opts.EncryptOutFile == "" { + *opts.EncryptOutFile = filepath.Base(*opts.EncryptInFile) + ".aes" + } + log.Infof("Encrypting file %q into %q", *opts.EncryptInFile, *opts.EncryptOutFile) + err = encrypt(*opts.EncryptInFile, *opts.EncryptOutFile, password) + } + return +} + +func encrypt(infile, outfile string, pass [32]byte) error { + key := pass[:] + inFile, err := os.Open(infile) + if err != nil { + return errors.Wrapf(err, "Cannot open input file %q", infile) + } + defer inFile.Close() + + block, err := aes.NewCipher(key) + if err != nil { + return errors.Wrapf(err, "Cannot create a new cipher") + } + + // If the key is unique for each ciphertext, then it's ok to use a zero IV. + var iv [aes.BlockSize]byte + stream := cipher.NewOFB(block, iv[:]) + + outFile, err := os.OpenFile(outfile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600) + if err != nil { + return errors.Wrapf(err, "Cannot create output file %q", outfile) + } + defer outFile.Close() + + writer := &cipher.StreamWriter{S: stream, W: outFile} + // Copy the input file to the output file, encrypting as we go. + if _, err := io.Copy(writer, inFile); err != nil { + return errors.Wrapf(err, "Cannot write to output file %q", outfile) + } + return nil +} + +func decrypt(infile, outfile string, pass [32]byte) error { + key := pass[:] + inFile, err := os.Open(infile) + if err != nil { + return errors.Wrapf(err, "Cannot open %q for reading", infile) + } + defer inFile.Close() + + block, err := aes.NewCipher(key) + if err != nil { + return errors.Wrap(err, "Cannot create the cipher") + } + + // If the key is unique for each ciphertext, then it's ok to use a zero IV. + var iv [aes.BlockSize]byte + stream := cipher.NewOFB(block, iv[:]) + + outFile, err := os.OpenFile(outfile, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600) + if err != nil { + return errors.Wrapf(err, "Cannot open %q for writing", outfile) + } + defer outFile.Close() + + reader := &cipher.StreamReader{S: stream, R: inFile} + // Copy the input file to the output file, decrypting as we go. + if _, err := io.Copy(outFile, reader); err != nil { + return errors.Wrapf(err, "Cannot write to output file %q", outfile) + } + return nil +} diff --git a/src/go/pt-secure-collect/main.go b/src/go/pt-secure-collect/main.go new file mode 100644 index 00000000..86167e19 --- /dev/null +++ b/src/go/pt-secure-collect/main.go @@ -0,0 +1,387 @@ +package main + +import ( + "fmt" + "io" + "io/ioutil" + "os" + "os/exec" + "os/user" + "path" + "path/filepath" + "strings" + "time" + + "github.com/Sirupsen/logrus" + log "github.com/Sirupsen/logrus" + "github.com/alecthomas/kingpin" + "github.com/go-ini/ini" + "github.com/pkg/errors" + "golang.org/x/crypto/ssh/terminal" +) + +type cliOptions struct { + Command string + Debug *bool + + DecryptCommand *kingpin.CmdClause + DecryptInFile *string + DecryptOutFile *string + + EncryptCommand *kingpin.CmdClause + EncryptInFile *string + EncryptOutFile *string + + CollectCommand *kingpin.CmdClause + BinDir *string + TempDir *string // in case Percona Toolkit is not in the PATH + IncludeDirs *[]string + ConfigFile *string // .my.cnf file + EncryptPassword *string // if set, it will produce an encrypted .aes file + AdditionalCmds *[]string + AskMySQLPass *bool + MySQLHost *string + MySQLPort *int + MySQLUser *string + MySQLPass *string + + NoEncrypt *bool + NoSanitize *bool + NoSanitizeHostnames *bool + NoSanitizeQueries *bool + NoCollect *bool + NoRemoveTempFiles *bool + + SanitizeCommand *kingpin.CmdClause + SanitizeInputFile *string + SanitizeOutputFile *string + DontSanitizeHostnames *bool + DontSanitizeQueries *bool +} + +type myDefaults struct { + MySQLHost string + MySQLPort int + MySQLUser string + MySQLPass string +} + +const ( + DecryptCmd = "decrypt" + EncryptCmd = "encrypt" + CollectCmd = "collect" + SanitizeCmd = "sanitize" + DefaultMySQLHost = "127.0.0.1" + DefaultMySQLPort = 3306 +) + +var ( + defaultCmds = []string{ + "pt-stalk --no-stalk --iterations=2 --sleep=30 --host=$mysql-host --dest=$temp-dir --port=$mysql-port --user=$mysql-user --password=$mysql-pass", + "pt-summary", + "pt-mysql-summary --host=$mysql-host --port=$mysql-port --user=$mysql-user --password=$mysql-pass", + } +) + +func main() { + customFormatter := new(logrus.TextFormatter) + customFormatter.TimestampFormat = "2006-01-02 15:04:05" + logrus.SetFormatter(customFormatter) + customFormatter.FullTimestamp = true + + u, err := user.Current() + if err != nil { + log.Fatalf("Cannot get current user: %s", err) + } + + opts, err := processCliParams(u.HomeDir, nil) + if err != nil { + log.Fatal(err) + } + + switch opts.Command { + case CollectCmd: + if _, err = os.Stat(*opts.TempDir); os.IsNotExist(err) { + log.Infof("Creating temporary directory: %s", *opts.TempDir) + if err = os.Mkdir(*opts.TempDir, os.ModePerm); err != nil { + log.Fatalf("Cannot create temporary dirextory %q: %s", *opts.TempDir, err) + } + } + err = collectData(opts) + if err != nil && !*opts.NoRemoveTempFiles { + log.Fatal(err) + } + if !*opts.NoRemoveTempFiles { + if err = removeTempFiles(*opts.TempDir, !*opts.NoEncrypt); err != nil { + log.Fatal(err) + } + } + case EncryptCmd, DecryptCmd: + err = encryptorCmd(opts) + case SanitizeCmd: + err = sanitizeFile(opts) + } + if err != nil { + log.Fatal(err) + } +} + +func removeTempFiles(tempDir string, removeTarFile bool) error { + tarFile := path.Base(tempDir) + ".tar.gz" + encryptedFile := tarFile + ".aes" + files, err := ioutil.ReadDir(tempDir) + if err != nil { + return errors.Wrapf(err, "Cannot get the listing of %q", tempDir) + } + + for _, file := range files { + if file.Name() == encryptedFile { + log.Infof("Skipping encrypted file %q", encryptedFile) + continue + } + if file.Name() == tarFile && !removeTarFile { + log.Infof("Skipping tar.gz file %q", tarFile) + continue + } + + filename := path.Join(tempDir, file.Name()) + log.Debugf("Removing file %q", filename) + if err = os.Remove(filename); err != nil { + log.Warnf("Cannot remove %q: %s", filename, err) + } + } + return nil +} + +func processCliParams(baseTempPath string, usageWriter io.Writer) (*cliOptions, error) { + var err error + tmpdir := path.Join(baseTempPath, fmt.Sprintf("data_collection_%s", time.Now().Format("2006-01-02_15_04_05"))) + + // Do not remove the extra space after \n. That's to trick the help template to not to remove the new line + msg := "Collect, sanitize, pack and encrypt data.\nBy default, this program will collect the output of:" + for _, cmd := range defaultCmds { + msg += "\n " + cmd + } + msg += "\n " + + app := kingpin.New("pt-secure-data", msg) + if usageWriter != nil { + app.UsageWriter(usageWriter) + app.Terminate(nil) + } + + opts := &cliOptions{ + CollectCommand: app.Command(CollectCmd, "Collect, sanitize, pack and encrypt data from pt-tools."), + DecryptCommand: app.Command(DecryptCmd, "Decrypt an encrypted file. The password will be requested from the terminal."), + EncryptCommand: app.Command(EncryptCmd, "Encrypt a file. The password will be requested from the terminal."), + SanitizeCommand: app.Command(SanitizeCmd, "Replace queries in a file by their fingerprints and obfuscate hostnames."), + Debug: app.Flag("debug", "Enable debug log level.").Bool(), + } + // Decrypt command flags + opts.DecryptInFile = opts.DecryptCommand.Arg("infile", "Encrypted file.").Required().String() + opts.DecryptOutFile = opts.DecryptCommand.Flag("outfile", "Unencrypted file. Default: same name without .aes extension").String() + + // Encrypt command flags + opts.EncryptInFile = opts.EncryptCommand.Arg("infile", "Unencrypted file.").Required().String() + opts.EncryptOutFile = opts.EncryptCommand.Flag("outfile", "Encrypted file. Default: .aes").String() + + // Collect command flags + opts.BinDir = opts.CollectCommand.Flag("bin-dir", "Directory having the Percona Toolkit binaries (if they are not in PATH).").String() + opts.TempDir = opts.CollectCommand.Flag("temp-dir", "Temporary directory used for the data collection.").Default(tmpdir).String() + opts.IncludeDirs = opts.CollectCommand.Flag("include-dir", "Include this dir into the sanitized tar file").Strings() + // MySQL related flags + opts.ConfigFile = opts.CollectCommand.Flag("config-file", "Path to the config file.").Default("~/.my.cnf").String() + opts.MySQLHost = opts.CollectCommand.Flag("mysql-host", "MySQL host.").String() + opts.MySQLPort = opts.CollectCommand.Flag("mysql-port", "MySQL port.").Int() + opts.MySQLUser = opts.CollectCommand.Flag("mysql-user", "MySQL user name.").String() + opts.MySQLPass = opts.CollectCommand.Flag("mysql-password", "MySQL password.").String() + opts.AskMySQLPass = opts.CollectCommand.Flag("ask-mysql-pass", "Ask MySQL password.").Bool() + // Aditional flags + opts.AdditionalCmds = opts.CollectCommand.Flag("extra-cmd", + "Also run this command as part of the data collection. This parameter can be used more than once.").Strings() + opts.EncryptPassword = opts.CollectCommand.Flag("encrypt-password", "Encrypt the output file using this password."+ + " If ommited, the file won't be encrypted.").String() + // No-Flags + opts.NoCollect = opts.CollectCommand.Flag("no-collect", "Do not collect data").Bool() + opts.NoSanitize = opts.CollectCommand.Flag("no-sanitize", "Sanitize data").Bool() + opts.NoEncrypt = opts.CollectCommand.Flag("no-encrypt", "Do not encrypt the output file.").Bool() + opts.NoSanitizeHostnames = opts.CollectCommand.Flag("no-sanitize-hostnames", "Don't sanitize host names.").Bool() + opts.NoSanitizeQueries = opts.CollectCommand.Flag("no-sanitize-queries", "Do not replace queries by their fingerprints.").Bool() + opts.NoRemoveTempFiles = opts.CollectCommand.Flag("no-remove-temp-files", "Do not remove temporary files.").Bool() + + // Sanitize command flags + opts.SanitizeInputFile = opts.SanitizeCommand.Flag("input-file", "Input file. If not specified, the input will be Stdin.").String() + opts.SanitizeOutputFile = opts.SanitizeCommand.Flag("output-file", "Output file. If not specified, the input will be Stdout.").String() + opts.DontSanitizeHostnames = opts.SanitizeCommand.Flag("no-sanitize-hostnames", "Don't sanitize host names.").Bool() + opts.DontSanitizeQueries = opts.SanitizeCommand.Flag("no-sanitize-queries", "Don't replace queries by their fingerprints.").Bool() + + opts.Command, err = app.Parse(os.Args[1:]) + if err != nil { + return nil, err + } + + if *opts.Debug { + log.SetLevel(log.DebugLevel) + } + + *opts.BinDir = expandHomeDir(*opts.BinDir) + *opts.ConfigFile = expandHomeDir(*opts.ConfigFile) + *opts.TempDir = expandHomeDir(*opts.TempDir) + for _, incDir := range *opts.IncludeDirs { + incDir = expandHomeDir(incDir) + } + + if *opts.BinDir != "" { + os.Setenv("PATH", fmt.Sprintf("%s%s%s", *opts.BinDir, string(os.PathListSeparator), os.Getenv("PATH"))) + } + + lp, err := exec.LookPath("pt-summary") + if (err != nil || lp == "") && *opts.BinDir == "" && opts.Command == "collect" && !*opts.NoCollect { + return nil, errors.New("Cannot find Percona Toolkit binaries. Please run this tool again using --bin-dir parameter") + } + + switch opts.Command { + case CollectCmd: + mycnf, err := getParamsFromMyCnf(*opts.ConfigFile) + if err == nil { + if err = validateMySQLParams(opts, mycnf); err != nil { + return nil, err + } + } + if *opts.AskMySQLPass { + if err = askMySQLPassword(opts); err != nil { + return nil, err + } + } + err = askEncryptionPassword(opts, true) + case EncryptCmd: + err = askEncryptionPassword(opts, true) + case DecryptCmd: + if !strings.HasSuffix(*opts.DecryptInFile, ".aes") && *opts.DecryptOutFile == "" { + return nil, fmt.Errorf("Input file does not have .aes extension. I cannot infer the output file") + } + err = askEncryptionPassword(opts, false) + } + + if err != nil { + return nil, err + } + + return opts, nil +} + +func validateMySQLParams(opts *cliOptions, mycnf *myDefaults) error { + if *opts.MySQLPort == 0 && mycnf.MySQLPort > 0 { + log.Debugf("Setting default port from config file") + *opts.MySQLPort = mycnf.MySQLPort + } + if *opts.MySQLHost == "" && mycnf.MySQLHost != "" { + *opts.MySQLHost = mycnf.MySQLHost + log.Debugf("Setting default host from config file") + } + if *opts.MySQLUser == "" && mycnf.MySQLUser != "" { + log.Debugf("Setting default user from config file") + *opts.MySQLUser = mycnf.MySQLUser + } + if *opts.MySQLPass == "" && mycnf.MySQLPass != "" { + log.Debugf("Setting default password from config file") + *opts.MySQLPass = mycnf.MySQLPass + } + + if *opts.MySQLHost == "" { + log.Debugf("MySQL host is empty. Setting it to %s", DefaultMySQLHost) + *opts.MySQLHost = DefaultMySQLHost + } + if *opts.MySQLPort == 0 { + log.Debugf("MySQL port is empty. Setting it to %d", DefaultMySQLPort) + *opts.MySQLPort = DefaultMySQLPort + } + if *opts.MySQLUser == "" { + return fmt.Errorf("MySQL user cannot be empty") + } + + return nil +} + +func askMySQLPassword(opts *cliOptions) error { + if *opts.AskMySQLPass { + fmt.Printf("MySQL password for user %q:", *opts.MySQLUser) + passb, err := terminal.ReadPassword(0) + if err != nil { + return errors.Wrap(err, "Cannot read MySQL password from the terminal") + } + *opts.MySQLPass = string(passb) + } + return nil +} + +func askEncryptionPassword(opts *cliOptions, requireConfirmation bool) error { + if !*opts.NoEncrypt && *opts.EncryptPassword == "" { + fmt.Print("Encryption password: ") + passa, err := terminal.ReadPassword(0) + if err != nil { + return errors.Wrap(err, "Cannot read encryption password from the terminal") + } + fmt.Println("") + if requireConfirmation { + fmt.Print("Re type password: ") + passb, err := terminal.ReadPassword(0) + if err != nil { + return errors.Wrap(err, "Cannot read encryption password confirmation from the terminal") + } + fmt.Println("") + if string(passa) != string(passb) { + return errors.New("Passwords don't match") + } + } + *opts.EncryptPassword = string(passa) + } + return nil +} + +func getParamsFromMyCnf(configFile string) (*myDefaults, error) { + log.Debugf("Reading default MySQL parameters from config file: %q", configFile) + if configFile == "" { + return nil, fmt.Errorf("Config file cannot be empty") + } + configFile = expandHomeDir(configFile) + + cfg, err := ini.Load(configFile) + if err != nil { + return nil, errors.Wrapf(err, "Cannot read config from %q", configFile) + } + + sec, err := cfg.GetSection("client") + if err != nil { + return nil, errors.Wrapf(err, "Cannot read [client] section from %q", configFile) + } + + mycnf := &myDefaults{} + + if val, err := sec.GetKey("user"); err == nil { + mycnf.MySQLUser = val.String() + } + if val, err := sec.GetKey("password"); err == nil { + mycnf.MySQLPass = val.String() + } + if val, err := sec.GetKey("host"); err == nil { + mycnf.MySQLHost = val.String() + } + if val, err := sec.GetKey("port"); err == nil { + if mycnf.MySQLPort, err = val.Int(); err != nil { + return nil, errors.Wrapf(err, "Cannot parse %q as the port number", val.String()) + } + } + log.Debugf("mycnf: %+v\n", *mycnf) + return mycnf, nil +} + +func expandHomeDir(path string) string { + usr, _ := user.Current() + dir := usr.HomeDir + + if len(path) > 1 && path[:2] == "~/" { + path = filepath.Join(dir, path[2:]) + } + return path +} diff --git a/src/go/pt-secure-collect/main_test.go b/src/go/pt-secure-collect/main_test.go new file mode 100644 index 00000000..02501056 --- /dev/null +++ b/src/go/pt-secure-collect/main_test.go @@ -0,0 +1,42 @@ +package main + +import ( + "bufio" + "bytes" + "os" + "reflect" + "testing" +) + +func TestProcessCliParams(t *testing.T) { + var output bytes.Buffer + writer := bufio.NewWriter(&output) + + tests := []struct { + Args []string + WantOpts *cliOptions + WantErr bool + }{ + { + Args: []string{"pt-sanitize-data", "llll"}, + WantOpts: nil, + WantErr: true, + }, + } + + for i, test := range tests { + os.Args = test.Args + opts, err := processCliParams(os.TempDir(), writer) + writer.Flush() + if test.WantErr && err == nil { + t.Errorf("Test #%d expected error, have nil", i) + } + if !reflect.DeepEqual(opts, test.WantOpts) { + + } + } +} + +func TestCollect(t *testing.T) { + +} diff --git a/src/go/pt-secure-collect/sanitize.go b/src/go/pt-secure-collect/sanitize.go new file mode 100644 index 00000000..deaa0b5e --- /dev/null +++ b/src/go/pt-secure-collect/sanitize.go @@ -0,0 +1,42 @@ +package main + +import ( + "os" + + "github.com/percona/percona-toolkit/src/go/pt-secure-collect/sanitize" + "github.com/percona/percona-toolkit/src/go/pt-secure-collect/sanitize/util" + "github.com/pkg/errors" +) + +func sanitizeFile(opts *cliOptions) error { + var err error + ifh := os.Stdin + ofh := os.Stdout + + if *opts.SanitizeInputFile != "" { + ifh, err = os.Open(*opts.SanitizeInputFile) + if err != nil { + return errors.Wrapf(err, "Cannot open %q for reading", *opts.SanitizeInputFile) + } + } + + if *opts.SanitizeOutputFile != "" { + ifh, err = os.Create(*opts.SanitizeOutputFile) + if err != nil { + return errors.Wrapf(err, "Cannot create output file %q", *opts.SanitizeOutputFile) + } + } + + lines, err := util.ReadLinesFromFile(ifh) + if err != nil { + return errors.Wrapf(err, "Cannot read input file %q", *opts.SanitizeInputFile) + } + + sanitized := sanitize.Sanitize(lines, !*opts.DontSanitizeHostnames, !*opts.DontSanitizeQueries) + + if err = util.WriteLinesToFile(ofh, sanitized); err != nil { + return errors.Wrapf(err, "Cannot write output file %q", *opts.SanitizeOutputFile) + } + + return nil +} diff --git a/src/go/pt-secure-collect/sanitize/sanitize.go b/src/go/pt-secure-collect/sanitize/sanitize.go new file mode 100644 index 00000000..a18c3ba4 --- /dev/null +++ b/src/go/pt-secure-collect/sanitize/sanitize.go @@ -0,0 +1,115 @@ +package sanitize + +import ( + "regexp" + "strings" + + "github.com/percona/go-mysql/query" +) + +var ( + hostnameRE = regexp.MustCompile(`(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)+([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-][A-Za-z0-9]){2,3}(?:\W)`) + queryLineRe []*regexp.Regexp + queryInLineRe []*regexp.Regexp +) + +func init() { + statements := []string{ + "CREATE (TABLE|VIEW|DEFINER)", + "DROP (DATABASE|TABLE|VIEW|DEFINER)", + "INSERT INTO", + "REPLACE INTO", + "UPDATE", + "SELECT.*FROM.*", + "SET ", + "SHOW TABLES", + "SHOW DATABASES", + "COMMIT", + "LOAD DATA", + } + for _, re := range statements { + queryLineRe = append(queryLineRe, regexp.MustCompile("(?i)^"+re)) + queryInLineRe = append(queryInLineRe, regexp.MustCompile(("(?im)(" + re + ".*)"))) + } +} + +func Sanitize(lines []string, hostnames, queries bool) []string { + joined := joinQueryLines(lines) + if queries { + sanitizeQueries(joined) + } + if hostnames { + sanitizeHostnames(joined) + } + return joined +} + +func sanitizeHostnames(lines []string) { + for i := range lines { + lines[i] = hostnameRE.ReplaceAllStringFunc(lines[i], replaceHostname) + } +} + +func sanitizeQueries(lines []string) { + for i := range lines { + for _, re := range queryInLineRe { + lines[i] = re.ReplaceAllStringFunc(lines[i], queryToFingerprint) + } + } +} + +func joinQueryLines(lines []string) []string { + inQuery := false + joined := []string{} + queryString := "" + + separator := "" + + for _, line := range lines { + if !inQuery && mightBeAQueryLine(line) { + inQuery = true + } + if inQuery { + if strings.HasPrefix(line, "***") { + joined = append(joined, queryString) + queryString = "" + joined = append(joined, line) + inQuery = false + separator = "" + continue + } + queryString += separator + line + separator = "\n" + if !strings.HasSuffix(strings.TrimSpace(line), ";") { + continue + } + inQuery = false + separator = "" + joined = append(joined, queryString) + queryString = "" + continue + } + joined = append(joined, line) + } + return joined +} + +func replaceHostname(s string) string { + if strings.HasSuffix(s, ":") { + return ":" + } + return "hostname" +} + +func queryToFingerprint(q string) string { + return query.Fingerprint(q) +} + +func mightBeAQueryLine(query string) bool { + for _, re := range queryLineRe { + if re.MatchString(query) { + return true + } + } + return false +} diff --git a/src/go/pt-secure-collect/sanitize/util/util.go b/src/go/pt-secure-collect/sanitize/util/util.go new file mode 100644 index 00000000..d3e7a655 --- /dev/null +++ b/src/go/pt-secure-collect/sanitize/util/util.go @@ -0,0 +1,45 @@ +package util + +import ( + "bufio" + "bytes" + "encoding/gob" + "os" + "strings" + + "github.com/pkg/errors" +) + +func ReadLinesFromFile(fh *os.File) ([]string, error) { + lines := []string{} + reader := bufio.NewReader(fh) + + line, err := reader.ReadString('\n') + for err == nil { + lines = append(lines, strings.TrimRight(line, "\n")) + line, err = reader.ReadString('\n') + } + return lines, nil +} + +func WriteLinesToFile(ofh *os.File, lines []string) error { + for _, line := range lines { + if _, err := ofh.WriteString(line + "\n"); err != nil { + return errors.Wrap(err, "Cannot write output file") + } + } + return nil +} + +func LinesToBytes(lines []string) []byte { + buf := &bytes.Buffer{} + gob.NewEncoder(buf).Encode(lines) + return buf.Bytes() +} + +func BytesToLines(buf []byte) []string { + reader := bytes.NewReader(buf) + lines := []string{} + gob.NewDecoder(reader).Decode(&lines) + return lines +} diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus1 b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus1 new file mode 100644 index 00000000..9df0bcd9 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus1 @@ -0,0 +1,166 @@ +*************************** 1. row *************************** + Type: InnoDB + Name: +Status: +===================================== +180305 13:24:56 INNODB MONITOR OUTPUT +===================================== +Per second averages calculated from the last 4 seconds +----------------- +BACKGROUND THREAD +----------------- +srv_master_thread loops: 10426619 1_second, 10426491 sleeps, 1039481 10_second, 114406 background, 114405 flush +srv_master_thread log flush and writes: 10573068 +---------- +SEMAPHORES +---------- +OS WAIT ARRAY INFO: reservation count 36440343, signal count 977828096 +Mutex spin waits 12033970052, rounds 5762849775, OS waits 2335696 +RW-shared spins 263735499, rounds 1073398879, OS waits 17684023 +RW-excl spins 31045741, rounds 1579081322, OS waits 15143736 +Spin rounds per wait: 0.48 mutex, 4.07 RW-shared, 50.86 RW-excl +-------- +FILE I/O +-------- +I/O thread 0 state: waiting for completed aio requests (insert buffer thread) +I/O thread 1 state: waiting for completed aio requests (log thread) +I/O thread 2 state: waiting for completed aio requests (read thread) +I/O thread 3 state: waiting for completed aio requests (read thread) +I/O thread 4 state: waiting for completed aio requests (read thread) +I/O thread 5 state: waiting for completed aio requests (read thread) +I/O thread 6 state: waiting for completed aio requests (write thread) +I/O thread 7 state: waiting for completed aio requests (write thread) +I/O thread 8 state: waiting for completed aio requests (write thread) +I/O thread 9 state: waiting for completed aio requests (write thread) +Pending normal aio reads: 0 [0, 0, 0, 0] , aio writes: 0 [0, 0, 0, 0] , + ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0 +Pending flushes (fsync) log: 0; buffer pool: 0 +69640821 OS file reads, 648910440 OS file writes, 26513529 OS fsyncs +0.00 reads/s, 0 avg bytes/read, 4.75 writes/s, 1.00 fsyncs/s +------------------------------------- +INSERT BUFFER AND ADAPTIVE HASH INDEX +------------------------------------- +Ibuf: size 1, free list len 44, seg size 46, 42575 merges +merged operations: + insert 106806, delete mark 214604, delete 13653 +discarded operations: + insert 0, delete mark 0, delete 0 +Hash table size 46749559, node heap has 2653 buffer(s) +169.46 hash searches/s, 40.24 non-hash searches/s +--- +LOG +--- +Log sequence number 22611157035212 +Log flushed up to 22611157035212 +Last checkpoint at 22611148135290 +Max checkpoint age 434154333 +Checkpoint age target 420587011 +Modified age 8899922 +Checkpoint age 8899922 +0 pending log writes, 0 pending chkp writes +465303593 log i/o's done, 4.75 log i/o's/second +---------------------- +BUFFER POOL AND MEMORY +---------------------- +Total memory allocated 24245174272; in additional pool allocated 0 +Total memory allocated by read views 2560 +Internal hash tables (constant factor + variable factor) + Adaptive hash index 417467440 (373996472 + 43470968) + Page hash 23375608 (buffer pool 0 only) + Dictionary cache 141153090 (93500944 + 47652146) + File system 1821472 (82672 + 1738800) + Lock system 58442168 (58437656 + 4512) + Recovery system 0 (0 + 0) +Dictionary memory allocated 47652146 +Buffer pool size 1441791 +Buffer pool size, bytes 23622303744 +Free buffers 0 +Database pages 1439138 +Old database pages 531224 +Modified db pages 578 +Pending reads 0 +Pending writes: LRU 0, flush list 0, single page 0 +Pages made young 70145670, not young 0 +0.00 youngs/s, 0.00 non-youngs/s +Pages read 69635295, created 4832854, written 178730753 +0.00 reads/s, 0.25 creates/s, 0.00 writes/s +Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000 +Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s +LRU len: 1439138, unzip_LRU len: 0 +I/O sum[1103]:cur[0], unzip sum[0]:cur[0] +-------------- +ROW OPERATIONS +-------------- +0 queries inside InnoDB, 0 queries in queue +1 read views open inside InnoDB +0 transactions active inside InnoDB +0 out of 1000 descriptors used +---OLDEST VIEW--- +Normal read view +Read view low limit trx n:o 55D01568D +Read view up limit trx id 55D01568D +Read view low limit trx id 55D01568D +Read view individually stored trx ids: +----------------- +Main thread process no. 1648, id 140570308982528, state: sleeping +Number of rows inserted 296824040, updated 207729129, deleted 40014837, read 2455335965266 +1.75 inserts/s, 1.50 updates/s, 0.50 deletes/s, 177.46 reads/s +------------------------ +LATEST DETECTED DEADLOCK +------------------------ +180227 14:45:46 +*** (1) TRANSACTION: +TRANSACTION 55984EF58, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247292, OS thread handle 0x7fd903731700, query id 2598871462 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '557200465a956f1a8822d0.18512229', '1519742747.5575') +*** (1) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF58 lock_mode X locks rec but not gap waiting +*** (2) TRANSACTION: +TRANSACTION 55984EF59, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247291, OS thread handle 0x7fd9033bf700, query id 2598871463 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '1871808655a956f1a882120.81843263', '1519742747.5575') +*** (2) HOLDS THE LOCK(S): +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock mode S locks rec but not gap +*** (2) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock_mode X locks rec but not gap waiting +*** WE ROLL BACK TRANSACTION (2) +------------ +TRANSACTIONS +------------ +Trx id counter 55D015695 +Purge done for trx's n:o < 55D01567D undo n:o < 0 +History list length 5198 +LIST OF TRANSACTIONS FOR EACH SESSION: +---TRANSACTION 0, not started +MySQL thread id 30893689, OS thread handle 0x7fd902e32700, query id 2738997209 localhost rdba +SHOW /*!40100 ENGINE*/ INNODB STATUS +---TRANSACTION 0, not started +MySQL thread id 30741296, OS thread handle 0x7fd902907700, query id 2738995017 10.10.9.10 rdba +---TRANSACTION 55D01565F, not started +MySQL thread id 5923113, OS thread handle 0x7fd903b98700, query id 2738997084 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015660, not started +MySQL thread id 5923112, OS thread handle 0x7fd903d20700, query id 2738997087 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015663, not started +MySQL thread id 5922912, OS thread handle 0x7fd903d51700, query id 2738997092 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01565D, not started +MySQL thread id 5922013, OS thread handle 0x7fd9035da700, query id 2738997081 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015662, not started +MySQL thread id 5922000, OS thread handle 0x7fd90366d700, query id 2738997090 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015590, not started +MySQL thread id 689010, OS thread handle 0x7fd9100f5700, query id 2738996241 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015591, not started +MySQL thread id 689009, OS thread handle 0x7fd910157700, query id 2738996244 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01558E, not started +MySQL thread id 689008, OS thread handle 0x7fd91021b700, query id 2738996239 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01558B, not started +MySQL thread id 689006, OS thread handle 0x7fd9104eb700, query id 2738996232 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01558D, not started +MySQL thread id 689004, OS thread handle 0x7fd9101ea700, query id 2738996235 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---------------------------- +END OF INNODB MONITOR OUTPUT +============================ + diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus2 b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus2 new file mode 100644 index 00000000..e2f866a3 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-innodbstatus2 @@ -0,0 +1,166 @@ +*************************** 1. row *************************** + Type: InnoDB + Name: +Status: +===================================== +180305 13:25:26 INNODB MONITOR OUTPUT +===================================== +Per second averages calculated from the last 4 seconds +----------------- +BACKGROUND THREAD +----------------- +srv_master_thread loops: 10426647 1_second, 10426519 sleeps, 1039484 10_second, 114409 background, 114408 flush +srv_master_thread log flush and writes: 10573097 +---------- +SEMAPHORES +---------- +OS WAIT ARRAY INFO: reservation count 36440353, signal count 977828106 +Mutex spin waits 12033971041, rounds 5762850330, OS waits 2335699 +RW-shared spins 263735506, rounds 1073399060, OS waits 17684029 +RW-excl spins 31045742, rounds 1579081354, OS waits 15143737 +Spin rounds per wait: 0.48 mutex, 4.07 RW-shared, 50.86 RW-excl +-------- +FILE I/O +-------- +I/O thread 0 state: waiting for completed aio requests (insert buffer thread) +I/O thread 1 state: waiting for completed aio requests (log thread) +I/O thread 2 state: waiting for completed aio requests (read thread) +I/O thread 3 state: waiting for completed aio requests (read thread) +I/O thread 4 state: waiting for completed aio requests (read thread) +I/O thread 5 state: waiting for completed aio requests (read thread) +I/O thread 6 state: waiting for completed aio requests (write thread) +I/O thread 7 state: waiting for completed aio requests (write thread) +I/O thread 8 state: waiting for completed aio requests (write thread) +I/O thread 9 state: waiting for completed aio requests (write thread) +Pending normal aio reads: 0 [0, 0, 0, 0] , aio writes: 0 [0, 0, 0, 0] , + ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0 +Pending flushes (fsync) log: 0; buffer pool: 0 +69640821 OS file reads, 648912256 OS file writes, 26513623 OS fsyncs +0.00 reads/s, 0 avg bytes/read, 7.50 writes/s, 0.75 fsyncs/s +------------------------------------- +INSERT BUFFER AND ADAPTIVE HASH INDEX +------------------------------------- +Ibuf: size 1, free list len 44, seg size 46, 42575 merges +merged operations: + insert 106806, delete mark 214604, delete 13653 +discarded operations: + insert 0, delete mark 0, delete 0 +Hash table size 46749559, node heap has 2653 buffer(s) +2154.21 hash searches/s, 777.06 non-hash searches/s +--- +LOG +--- +Log sequence number 22611168022484 +Log flushed up to 22611167816409 +Last checkpoint at 22611157596570 +Max checkpoint age 434154333 +Checkpoint age target 420587011 +Modified age 10425914 +Checkpoint age 10425914 +0 pending log writes, 0 pending chkp writes +465304564 log i/o's done, 7.50 log i/o's/second +---------------------- +BUFFER POOL AND MEMORY +---------------------- +Total memory allocated 24245174272; in additional pool allocated 0 +Total memory allocated by read views 2560 +Internal hash tables (constant factor + variable factor) + Adaptive hash index 417467440 (373996472 + 43470968) + Page hash 23375608 (buffer pool 0 only) + Dictionary cache 141153090 (93500944 + 47652146) + File system 1821472 (82672 + 1738800) + Lock system 58442168 (58437656 + 4512) + Recovery system 0 (0 + 0) +Dictionary memory allocated 47652146 +Buffer pool size 1441791 +Buffer pool size, bytes 23622303744 +Free buffers 1 +Database pages 1439137 +Old database pages 531223 +Modified db pages 576 +Pending reads 0 +Pending writes: LRU 0, flush list 0, single page 0 +Pages made young 70145670, not young 0 +0.00 youngs/s, 0.00 non-youngs/s +Pages read 69635295, created 4832857, written 178731580 +0.00 reads/s, 0.00 creates/s, 0.00 writes/s +Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000 +Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s +LRU len: 1439137, unzip_LRU len: 0 +I/O sum[1268]:cur[0], unzip sum[0]:cur[0] +-------------- +ROW OPERATIONS +-------------- +0 queries inside InnoDB, 0 queries in queue +1 read views open inside InnoDB +0 transactions active inside InnoDB +0 out of 1000 descriptors used +---OLDEST VIEW--- +Normal read view +Read view low limit trx n:o 55D016078 +Read view up limit trx id 55D016078 +Read view low limit trx id 55D016078 +Read view individually stored trx ids: +----------------- +Main thread process no. 1648, id 140570308982528, state: sleeping +Number of rows inserted 296824578, updated 207729525, deleted 40014897, read 2455341879877 +3.50 inserts/s, 2.25 updates/s, 1.00 deletes/s, 73224.19 reads/s +------------------------ +LATEST DETECTED DEADLOCK +------------------------ +180227 14:45:46 +*** (1) TRANSACTION: +TRANSACTION 55984EF58, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247292, OS thread handle 0x7fd903731700, query id 2598871462 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '557200465a956f1a8822d0.18512229', '1519742747.5575') +*** (1) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF58 lock_mode X locks rec but not gap waiting +*** (2) TRANSACTION: +TRANSACTION 55984EF59, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247291, OS thread handle 0x7fd9033bf700, query id 2598871463 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '1871808655a956f1a882120.81843263', '1519742747.5575') +*** (2) HOLDS THE LOCK(S): +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock mode S locks rec but not gap +*** (2) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock_mode X locks rec but not gap waiting +*** WE ROLL BACK TRANSACTION (2) +------------ +TRANSACTIONS +------------ +Trx id counter 55D016114 +Purge done for trx's n:o < 55D016070 undo n:o < 0 +History list length 5648 +LIST OF TRANSACTIONS FOR EACH SESSION: +---TRANSACTION 0, not started +MySQL thread id 30893991, OS thread handle 0x7fd9037c4700, query id 2739004581 localhost rdba +SHOW /*!40100 ENGINE*/ INNODB STATUS +---TRANSACTION 0, not started +MySQL thread id 30741296, OS thread handle 0x7fd902907700, query id 2739001334 10.10.9.10 rdba +---TRANSACTION 55D015EDC, not started +MySQL thread id 5923113, OS thread handle 0x7fd903b98700, query id 2739002770 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015EDF, not started +MySQL thread id 5923112, OS thread handle 0x7fd903d20700, query id 2739002778 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015EE1, not started +MySQL thread id 5922912, OS thread handle 0x7fd903d51700, query id 2739002782 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015EDE, not started +MySQL thread id 5922013, OS thread handle 0x7fd9035da700, query id 2739002773 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D015EE2, not started +MySQL thread id 5922000, OS thread handle 0x7fd90366d700, query id 2739002785 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D016056, not started +MySQL thread id 689010, OS thread handle 0x7fd9100f5700, query id 2739004138 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D016053, not started +MySQL thread id 689009, OS thread handle 0x7fd910157700, query id 2739004129 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D016059, not started +MySQL thread id 689008, OS thread handle 0x7fd91021b700, query id 2739004145 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D016055, not started +MySQL thread id 689006, OS thread handle 0x7fd9104eb700, query id 2739004133 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D016058, not started +MySQL thread id 689004, OS thread handle 0x7fd9101ea700, query id 2739004143 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---------------------------- +END OF INNODB MONITOR OUTPUT +============================ + diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist new file mode 100644 index 00000000..0669866f --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist @@ -0,0 +1,6570 @@ +TS 1520256297.002113337 2018-03-05 13:24:57 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755591 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870367 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635302 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 17 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4195 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893691 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 1 + State: NULL + Info: SHOW ENGINE INNODB MUTEX + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 17. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 18. row *************************** + Id: 30893696 + User: root + Host: bm-dell05-publicwww01.bm.int.percona.com:54746 + db: percona_com_redesign2015 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893698 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256298.002189374 2018-03-05 13:24:58 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755592 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870368 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635303 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 18 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4196 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893705 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256299.003129623 2018-03-05 13:24:59 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755593 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870369 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635304 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 19 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4197 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893710 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893711 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256300.004959584 2018-03-05 13:25:00 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755594 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870370 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635305 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 20 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4198 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893716 + User: root + Host: bm-dell05-publicwww01.bm.int.percona.com:54747 + db: percona_com_redesign2015 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893718 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893719 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256301.003641351 2018-03-05 13:25:01 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755595 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870371 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635306 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 21 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4199 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893727 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893728 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256302.003135612 2018-03-05 13:25:02 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755596 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870372 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635307 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 22 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4200 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893742 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256303.002412991 2018-03-05 13:25:03 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755597 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870373 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635308 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 23 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4201 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893749 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256304.002191920 2018-03-05 13:25:04 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Execute + Time: 1 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 873842127 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Prepare + Time: 0 + State: NULL + Info: INSERT INTO ClientResponse (ts, tool_name, ip) VALUES (?, ?, ?) + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Execute + Time: 0 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 1076294032 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Execute + Time: 1 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 873842127 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Execute + Time: 1 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 873842127 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755598 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870374 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635309 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 24 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4202 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893761 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893762 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256305.006965913 2018-03-05 13:25:05 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755599 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870375 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635310 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 25 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4203 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893768 + User: cod7_user + Host: bm-dell05-publicwww01.bm.int.percona.com:54754 + db: cod7_pl17 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 1 +Rows_examined: 1 + Rows_read: 1 +*************************** 18. row *************************** + Id: 30893769 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256306.003878627 2018-03-05 13:25:06 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755600 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870376 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635311 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 26 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4204 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893785 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893786 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893787 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256307.002854457 2018-03-05 13:25:07 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755601 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870377 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635312 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 27 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4205 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893794 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256308.002396440 2018-03-05 13:25:08 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755602 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870378 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635313 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 28 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4206 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893803 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893805 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256309.002873406 2018-03-05 13:25:09 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755603 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870379 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635314 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 29 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4207 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893811 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893812 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256310.002969644 2018-03-05 13:25:10 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755604 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870380 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635315 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 30 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4208 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893819 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893820 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256311.004907819 2018-03-05 13:25:11 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755605 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870381 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635316 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4209 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893828 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893829 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: Opening tables + Info: SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_TRX ORDER BY trx_id + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893830 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256312.003738582 2018-03-05 13:25:12 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Prepare + Time: 0 + State: NULL + Info: INSERT INTO ClientSoftwareVersion (client_response_id, software_item_id, version, client_instance_id) VALUES (?, ?, ?, ?) + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755606 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870382 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635317 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4210 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893839 + User: forums + Host: bm-dell02-forums.bm.int.percona.com:41873 + db: percona_vbulletin + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893843 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893844 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256313.003023920 2018-03-05 13:25:13 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755607 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870383 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635318 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4211 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893858 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893859 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893860 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256314.002657504 2018-03-05 13:25:14 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755608 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870384 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635319 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4212 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893866 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893867 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256315.004403748 2018-03-05 13:25:15 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755609 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870385 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635320 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4213 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893874 + User: percona_blog + Host: bm-dell02-mpblog.bm.int.percona.com:56928 + db: mpb_recovered + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893875 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256316.002349491 2018-03-05 13:25:16 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755610 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870386 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635321 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4214 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893883 + User: percona_blog + Host: bm-dell02-mpblog.bm.int.percona.com:56929 + db: mpb_recovered + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893884 + User: percona_blog + Host: bm-dell02-mpblog.bm.int.percona.com:56930 + db: mpb_recovered + Command: Query + Time: 1 + State: Sorting result + Info: SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1=1 AND (((wp_posts.post_title LIKE '%master%') OR (wp_posts.post_excerpt LIKE '%master%') OR (wp_posts.post_content LIKE '%master%')) AND ((wp_posts.post_title LIKE '%slave%') OR (wp_posts.post_excerpt LIKE '%slave%') OR (wp_posts.post_content LIKE '%slave%'))) AND (wp_posts.post_password = '') AND wp_posts.post_type IN ('post', 'page', 'attachment', 'spucpt') AND (wp_posts.post_status = 'publish') ORDER BY (CASE WHEN wp_posts.post_title LIKE '%master slave%' THEN 1 WHEN wp_posts.post_title LIKE '%master%' AND wp_posts.post_title LIKE '%slave%' THEN 2 WHEN wp_posts.post_title LIKE '%master%' OR wp_posts.post_title LIKE '%slave%' THEN 3 WHEN wp_posts.post_excerpt LIKE '%master slave%' THEN 4 WHEN wp_posts.post_content LIKE '%master slave%' THEN 5 ELSE 6 END), wp_posts.post_date DESC LIMIT 0, 10 + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893886 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: Writing to net + Info: select @@version_comment limit 1 + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 20. row *************************** + Id: 30893887 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256317.003991143 2018-03-05 13:25:17 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755611 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870387 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635322 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4215 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893895 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256318.003900923 2018-03-05 13:25:18 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755612 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870388 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635323 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4216 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893903 + User: forums + Host: bm-dell02-forums.bm.int.percona.com:41877 + db: percona_vbulletin + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893904 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893905 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256319.003736454 2018-03-05 13:25:19 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755613 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870389 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635324 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4217 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893916 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893917 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256320.002856353 2018-03-05 13:25:20 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755614 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870390 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635325 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4218 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893931 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893932 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256321.002564115 2018-03-05 13:25:21 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755615 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870391 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635326 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4219 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893938 + User: root + Host: bm-dell05-publicwww01.bm.int.percona.com:54784 + db: percona_com_redesign2015 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893941 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256322.005188192 2018-03-05 13:25:22 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755616 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870392 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635327 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4220 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893948 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893949 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256323.002850748 2018-03-05 13:25:23 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755617 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870393 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635328 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 13 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4221 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893963 + User: percona_blog + Host: bm-dell02-mpblog.bm.int.percona.com:56938 + db: mpb_recovered + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893965 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893966 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256324.006445755 2018-03-05 13:25:24 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755618 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870394 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635329 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 14 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4222 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893972 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893973 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893974 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256325.003934683 2018-03-05 13:25:25 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755619 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870395 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635330 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 15 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4223 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893981 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893982 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893983 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS 1520256326.003924709 2018-03-05 13:25:26 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: www-docker01.bm.int.percona.com:48542 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: www-docker01.bm.int.percona.com:48554 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: www-docker01.bm.int.percona.com:48556 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: www-docker01.bm.int.percona.com:48560 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: www-docker01.bm.int.percona.com:48568 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: www-docker01.bm.int.percona.com:56496 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: www-docker01.bm.int.percona.com:56572 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: www-docker01.bm.int.percona.com:33502 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: www-docker01.bm.int.percona.com:34612 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: www-docker01.bm.int.percona.com:34626 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: it-db05.bm.int.percona.com:50538 + db: NULL + Command: Binlog Dump + Time: 1755620 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: it-db04.bm.int.percona.com:34178 + db: NULL + Command: Binlog Dump + Time: 870396 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: 10.10.9.152:43630 + db: NULL + Command: Binlog Dump + Time: 635331 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: 10.10.9.10:51792 + db: NULL + Command: Sleep + Time: 16 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: 10.10.9.152:45277 + db: NULL + Command: Binlog Dump + Time: 4224 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893988 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.hostnames.sample b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.hostnames.sample new file mode 100644 index 00000000..af4f772e --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.hostnames.sample @@ -0,0 +1,6570 @@ +TS hostname2018-03-05 13:24:57 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755591 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870367 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635302 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 17 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4195 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893691 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 1 + State: NULL + Info: SHOW ENGINE INNODB MUTEX + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 17. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 18. row *************************** + Id: 30893696 + User: root + Host: :54746 + db: percona_com_redesign2015 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893698 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:24:58 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755592 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870368 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635303 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 18 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4196 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893705 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:24:59 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755593 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870369 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635304 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 19 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4197 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893710 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893711 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:00 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755594 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870370 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635305 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 20 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4198 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893716 + User: root + Host: :54747 + db: percona_com_redesign2015 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893718 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893719 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:01 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755595 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870371 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635306 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 21 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4199 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893727 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893728 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:02 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755596 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870372 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635307 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 22 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4200 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893742 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:03 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755597 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870373 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635308 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 23 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4201 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893749 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:04 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Execute + Time: 1 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 873842127 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Prepare + Time: 0 + State: NULL + Info: INSERT INTO ClientResponse (ts, tool_name, ip) VALUES (?, ?, ?) + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Execute + Time: 0 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 1076294032 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Execute + Time: 1 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 873842127 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Execute + Time: 1 + State: Sending data + Info: SELECT c.country_iso_code FROM geoip g JOIN countries c ON c.geoname_id = g.geoname_id WHERE 873842127 BETWEEN g.network_start_integer AND g.network_last_integer + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755598 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870374 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635309 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 24 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4202 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893761 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893762 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:05 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755599 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870375 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635310 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 25 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4203 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893768 + User: cod7_user + Host: :54754 + db: cod7_pl17 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 1 +Rows_examined: 1 + Rows_read: 1 +*************************** 18. row *************************** + Id: 30893769 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:06 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755600 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870376 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635311 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 26 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4204 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893785 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893786 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893787 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:07 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755601 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870377 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635312 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 27 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4205 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893794 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:08 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755602 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870378 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635313 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 28 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4206 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893803 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893805 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:09 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755603 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870379 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635314 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 29 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4207 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893811 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893812 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:10 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755604 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870380 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635315 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 30 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4208 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893819 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893820 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:11 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755605 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870381 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635316 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4209 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893828 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893829 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: Opening tables + Info: SELECT SQL_NO_CACHE * FROM INFORMATION_SCHEMA.INNODB_TRX ORDER BY trx_id + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893830 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:12 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Prepare + Time: 0 + State: NULL + Info: INSERT INTO ClientSoftwareVersion (client_response_id, software_item_id, version, client_instance_id) VALUES (?, ?, ?, ?) + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755606 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870382 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635317 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4210 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893839 + User: forums + Host: :41873 + db: percona_vbulletin + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893843 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893844 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:13 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755607 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870383 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635318 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4211 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893858 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893859 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893860 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:14 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755608 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870384 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635319 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4212 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893866 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893867 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:15 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755609 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870385 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635320 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4213 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893874 + User: percona_blog + Host: :56928 + db: mpb_recovered + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893875 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:16 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755610 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870386 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635321 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4214 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893883 + User: percona_blog + Host: :56929 + db: mpb_recovered + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893884 + User: percona_blog + Host: :56930 + db: mpb_recovered + Command: Query + Time: 1 + State: Sorting result + Info: SELECT SQL_CALC_FOUND_ROWS wp_hostnameFROM wp_posts WHERE 1=1 AND (((wp_posts.post_title LIKE '%master%') OR (wp_posts.post_excerpt LIKE '%master%') OR (wp_posts.post_content LIKE '%master%')) AND ((wp_posts.post_title LIKE '%slave%') OR (wp_posts.post_excerpt LIKE '%slave%') OR (wp_posts.post_content LIKE '%slave%'))) AND (wp_posts.post_password = '') AND wp_posts.post_type IN ('post', 'page', 'attachment', 'spucpt') AND (wp_posts.post_status = 'publish') ORDER BY (CASE WHEN wp_posts.post_title LIKE '%master slave%' THEN 1 WHEN wp_posts.post_title LIKE '%master%' AND wp_posts.post_title LIKE '%slave%' THEN 2 WHEN wp_posts.post_title LIKE '%master%' OR wp_posts.post_title LIKE '%slave%' THEN 3 WHEN wp_posts.post_excerpt LIKE '%master slave%' THEN 4 WHEN wp_posts.post_content LIKE '%master slave%' THEN 5 ELSE 6 END), wp_posts.post_date DESC LIMIT 0, 10 + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893886 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: Writing to net + Info: select @@version_comment limit 1 + Rows_sent: 1 +Rows_examined: 0 + Rows_read: 0 +*************************** 20. row *************************** + Id: 30893887 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:17 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755611 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870387 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635322 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4215 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893895 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:18 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755612 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870388 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635323 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4216 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893903 + User: forums + Host: :41877 + db: percona_vbulletin + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893904 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893905 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:19 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755613 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870389 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635324 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4217 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893916 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893917 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:20 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 4 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755614 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870390 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635325 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4218 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893931 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893932 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:21 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 5 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755615 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870391 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635326 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 11 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4219 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893938 + User: root + Host: :54784 + db: percona_com_redesign2015 + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893941 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:22 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 6 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755616 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870392 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635327 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 12 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4220 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893948 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893949 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:23 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 7 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755617 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870393 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635328 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 13 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4221 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893963 + User: percona_blog + Host: :56938 + db: mpb_recovered + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893965 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893966 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:24 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 8 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755618 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870394 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635329 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 14 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4222 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893972 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893973 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893974 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:25 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 2 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 9 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755619 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870395 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635330 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 15 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4223 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893693 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 1 + State: + Info: NULL + Rows_sent: 376 +Rows_examined: 376 + Rows_read: 376 +*************************** 17. row *************************** + Id: 30893981 + User: unauthenticated user + Host: localhost + db: NULL + Command: Connect + Time: NULL + State: Reading from net + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 18. row *************************** + Id: 30893982 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 19. row *************************** + Id: 30893983 + User: rdba + Host: localhost + db: NULL + Command: Sleep + Time: 0 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +TS hostname2018-03-05 13:25:26 +*************************** 1. row *************************** + Id: 689004 + User: version_check + Host: :48542 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 2. row *************************** + Id: 689006 + User: version_check + Host: :48554 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 3. row *************************** + Id: 689008 + User: version_check + Host: :48556 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 4. row *************************** + Id: 689009 + User: version_check + Host: :48560 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 5. row *************************** + Id: 689010 + User: version_check + Host: :48568 + db: version_check + Command: Sleep + Time: 3 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 6. row *************************** + Id: 5922000 + User: version_check + Host: :56496 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 7. row *************************** + Id: 5922013 + User: version_check + Host: :56572 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 8. row *************************** + Id: 5922912 + User: version_check + Host: :33502 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 9. row *************************** + Id: 5923112 + User: version_check + Host: :34612 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 10. row *************************** + Id: 5923113 + User: version_check + Host: :34626 + db: version_check + Command: Sleep + Time: 10 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 11. row *************************** + Id: 25209846 + User: repl + Host: :50538 + db: NULL + Command: Binlog Dump + Time: 1755620 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 12. row *************************** + Id: 28139333 + User: repl + Host: :34178 + db: NULL + Command: Binlog Dump + Time: 870396 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 13. row *************************** + Id: 28851790 + User: repl + Host: :43630 + db: NULL + Command: Binlog Dump + Time: 635331 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 14. row *************************** + Id: 30741296 + User: rdba + Host: :51792 + db: NULL + Command: Sleep + Time: 16 + State: + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 15. row *************************** + Id: 30878805 + User: rdba + Host: :45277 + db: NULL + Command: Binlog Dump + Time: 4224 + State: Master has sent all binlog to slave; waiting for binlog to be updated + Info: NULL + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 +*************************** 16. row *************************** + Id: 30893988 + User: rdba + Host: localhost + db: NULL + Command: Query + Time: 0 + State: NULL + Info: SHOW FULL PROCESSLIST + Rows_sent: 0 +Rows_examined: 0 + Rows_read: 0 diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.sample b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.sample new file mode 100644 index 00000000..588eae73 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_24_55-processlist.sample @@ -0,0 +1 @@ +TS 1520256297.002113337 2018-03-05 13:24:57*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755591 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870367 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635302 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 17 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4195 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893691 User: rdba Host: localhost db: NULL Command: Query Time: 1 State: NULL Info: SHOW ENGINE INNODB MUTEX Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 17. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 18. row *************************** Id: 30893696 User: root Host: bm-dell05-publicwww01.bm.int.percona.com:54746 db: percona_com_redesign2015 Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893698 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256298.002189374 2018-03-05 13:24:58*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755592 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870368 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635303 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 18 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4196 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893705 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256299.003129623 2018-03-05 13:24:59*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 11 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 11 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 11 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 11 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 11 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755593 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870369 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635304 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 19 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4197 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893710 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893711 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256300.004959584 2018-03-05 13:25:00*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 12 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 12 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 12 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 12 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 12 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755594 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870370 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635305 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 20 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4198 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893716 User: root Host: bm-dell05-publicwww01.bm.int.percona.com:54747 db: percona_com_redesign2015 Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893718 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893719 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256301.003641351 2018-03-05 13:25:01*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755595 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870371 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635306 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 21 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4199 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893727 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893728 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256302.003135612 2018-03-05 13:25:02*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755596 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870372 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635307 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 22 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4200 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893742 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256303.002412991 2018-03-05 13:25:03*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755597 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870373 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635308 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 23 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4201 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893749 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256304.002191920 2018-03-05 13:25:04*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Execute Time: 1 State: Sending data Info: select c.country_iso_code from geoip g join countries c on c.geoname_id = g.geoname_id where ? between g.network_start_integer and g.network_last_integer Rows_sent: 1Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Prepare Time: 0 State: NULL Info: insert into clientresponse (ts, tool_name, ip) values(?+) Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Execute Time: 0 State: Sending data Info: select c.country_iso_code from geoip g join countries c on c.geoname_id = g.geoname_id where ? between g.network_start_integer and g.network_last_integer Rows_sent: 1Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Execute Time: 1 State: Sending data Info: select c.country_iso_code from geoip g join countries c on c.geoname_id = g.geoname_id where ? between g.network_start_integer and g.network_last_integer Rows_sent: 1Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Execute Time: 1 State: Sending data Info: select c.country_iso_code from geoip g join countries c on c.geoname_id = g.geoname_id where ? between g.network_start_integer and g.network_last_integer Rows_sent: 1Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755598 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870374 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635309 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 24 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4202 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893761 User: rdba Host: localhost db: NULL Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893762 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256305.006965913 2018-03-05 13:25:05*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755599 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870375 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635310 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 25 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4203 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893768 User: cod7_user Host: bm-dell05-publicwww01.bm.int.percona.com:54754 db: cod7_pl17 Command: Sleep Time: 0 State: Info: NULL Rows_sent: 1Rows_examined: 1 Rows_read: 1*************************** 18. row *************************** Id: 30893769 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256306.003878627 2018-03-05 13:25:06*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755600 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870376 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635311 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 26 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4204 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893785 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893786 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893787 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256307.002854457 2018-03-05 13:25:07*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755601 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870377 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635312 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 27 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4205 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893794 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256308.002396440 2018-03-05 13:25:08*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755602 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870378 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635313 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 28 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4206 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893803 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893805 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256309.002873406 2018-03-05 13:25:09*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755603 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870379 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635314 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 29 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4207 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893811 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893812 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256310.002969644 2018-03-05 13:25:10*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755604 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870380 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635315 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 30 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4208 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893819 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893820 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256311.004907819 2018-03-05 13:25:11*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755605 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870381 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635316 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4209 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893828 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893829 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: Opening tables Info: select sql_no_cache * from information_schema.innodb_trx order by trx_id Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893830 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256312.003738582 2018-03-05 13:25:12*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Prepare Time: 0 State: NULL Info: insert into clientsoftwareversion (client_response_id, software_item_id, version, client_instance_id) values(?+) Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755606 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870382 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635317 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4210 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893839 User: forums Host: bm-dell02-forums.bm.int.percona.com:41873 db: percona_vbulletin Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893843 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893844 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256313.003023920 2018-03-05 13:25:13*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755607 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870383 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635318 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4211 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893858 User: rdba Host: localhost db: NULL Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893859 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893860 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256314.002657504 2018-03-05 13:25:14*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755608 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870384 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635319 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4212 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893866 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893867 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256315.004403748 2018-03-05 13:25:15*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755609 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870385 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635320 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4213 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893874 User: percona_blog Host: bm-dell02-mpblog.bm.int.percona.com:56928 db: mpb_recovered Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893875 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256316.002349491 2018-03-05 13:25:16*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755610 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870386 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635321 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4214 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893883 User: percona_blog Host: bm-dell02-mpblog.bm.int.percona.com:56929 db: mpb_recovered Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893884 User: percona_blog Host: bm-dell02-mpblog.bm.int.percona.com:56930 db: mpb_recovered Command: Query Time: 1 State: Sorting result Info: select sql_calc_found_rows wp_posts.id from wp_posts where ?=? and (((wp_posts.post_title like ?) or (wp_posts.post_excerpt like ?) or (wp_posts.post_content like ?)) and ((wp_posts.post_title like ?) or (wp_posts.post_excerpt like ?) or (wp_posts.post_content like ?))) and (wp_posts.post_password = ?) and wp_posts.post_type in(?+) and (wp_posts.post_status = ?) order by (case when wp_posts.post_title like ? then ? when wp_posts.post_title like ? and wp_posts.post_title like ? then ? when wp_posts.post_title like ? or wp_posts.post_title like ? then ? when wp_posts.post_excerpt like ? then ? when wp_posts.post_content like ? then ? else ? end), wp_posts.post_date desc limit ?, ? Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893886 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: Writing to net Info: select @@version_comment limit 1 Rows_sent: 1Rows_examined: 0 Rows_read: 0*************************** 20. row *************************** Id: 30893887 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256317.003991143 2018-03-05 13:25:17*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755611 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870387 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635322 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4215 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893895 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256318.003900923 2018-03-05 13:25:18*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755612 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870388 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635323 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 8 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4216 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893903 User: forums Host: bm-dell02-forums.bm.int.percona.com:41877 db: percona_vbulletin Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893904 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893905 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256319.003736454 2018-03-05 13:25:19*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755613 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870389 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635324 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4217 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893916 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893917 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256320.002856353 2018-03-05 13:25:20*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 4 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755614 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870390 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635325 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4218 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893931 User: rdba Host: localhost db: NULL Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893932 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256321.002564115 2018-03-05 13:25:21*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 5 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755615 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870391 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635326 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 11 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4219 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893938 User: root Host: bm-dell05-publicwww01.bm.int.percona.com:54784 db: percona_com_redesign2015 Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893941 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256322.005188192 2018-03-05 13:25:22*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 6 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755616 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870392 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635327 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 12 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4220 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893948 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893949 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256323.002850748 2018-03-05 13:25:23*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 7 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755617 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870393 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635328 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 13 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4221 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893963 User: percona_blog Host: bm-dell02-mpblog.bm.int.percona.com:56938 db: mpb_recovered Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893965 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893966 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256324.006445755 2018-03-05 13:25:24*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 1 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 8 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 8 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 8 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 8 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 8 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755618 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870394 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635329 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 14 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4222 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893972 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893973 User: rdba Host: localhost db: NULL Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893974 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256325.003934683 2018-03-05 13:25:25*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 2 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 9 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755619 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870395 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635330 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 15 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4223 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893693 User: rdba Host: localhost db: NULL Command: Sleep Time: 1 State: Info: NULL Rows_sent: 376Rows_examined: 376 Rows_read: 376*************************** 17. row *************************** Id: 30893981 User: unauthenticated user Host: localhost db: NULL Command: Connect Time: NULL State: Reading from net Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 18. row *************************** Id: 30893982 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 19. row *************************** Id: 30893983 User: rdba Host: localhost db: NULL Command: Sleep Time: 0 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0TS 1520256326.003924709 2018-03-05 13:25:26*************************** 1. row *************************** Id: 689004 User: version_check Host: www-docker01.bm.int.percona.com:48542 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 2. row *************************** Id: 689006 User: version_check Host: www-docker01.bm.int.percona.com:48554 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 3. row *************************** Id: 689008 User: version_check Host: www-docker01.bm.int.percona.com:48556 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 4. row *************************** Id: 689009 User: version_check Host: www-docker01.bm.int.percona.com:48560 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 5. row *************************** Id: 689010 User: version_check Host: www-docker01.bm.int.percona.com:48568 db: version_check Command: Sleep Time: 3 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 6. row *************************** Id: 5922000 User: version_check Host: www-docker01.bm.int.percona.com:56496 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 7. row *************************** Id: 5922013 User: version_check Host: www-docker01.bm.int.percona.com:56572 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 8. row *************************** Id: 5922912 User: version_check Host: www-docker01.bm.int.percona.com:33502 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 9. row *************************** Id: 5923112 User: version_check Host: www-docker01.bm.int.percona.com:34612 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 10. row *************************** Id: 5923113 User: version_check Host: www-docker01.bm.int.percona.com:34626 db: version_check Command: Sleep Time: 10 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 11. row *************************** Id: 25209846 User: repl Host: it-db05.bm.int.percona.com:50538 db: NULL Command: Binlog Dump Time: 1755620 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 12. row *************************** Id: 28139333 User: repl Host: it-db04.bm.int.percona.com:34178 db: NULL Command: Binlog Dump Time: 870396 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 13. row *************************** Id: 28851790 User: repl Host: 10.10.9.152:43630 db: NULL Command: Binlog Dump Time: 635331 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 14. row *************************** Id: 30741296 User: rdba Host: 10.10.9.10:51792 db: NULL Command: Sleep Time: 16 State: Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 15. row *************************** Id: 30878805 User: rdba Host: 10.10.9.152:45277 db: NULL Command: Binlog Dump Time: 4224 State: Master has sent all binlog to slave; waiting for binlog to be updated Info: NULL Rows_sent: 0Rows_examined: 0 Rows_read: 0*************************** 16. row *************************** Id: 30893988 User: rdba Host: localhost db: NULL Command: Query Time: 0 State: NULL Info: SHOW FULL PROCESSLIST Rows_sent: 0Rows_examined: 0 Rows_read: 0 \ No newline at end of file diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus1 b/src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus1 new file mode 100644 index 00000000..e1e63337 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus1 @@ -0,0 +1,166 @@ +*************************** 1. row *************************** + Type: InnoDB + Name: +Status: +===================================== +180305 13:29:56 INNODB MONITOR OUTPUT +===================================== +Per second averages calculated from the last 4 seconds +----------------- +BACKGROUND THREAD +----------------- +srv_master_thread loops: 10426915 1_second, 10426787 sleeps, 1039511 10_second, 114409 background, 114408 flush +srv_master_thread log flush and writes: 10573367 +---------- +SEMAPHORES +---------- +OS WAIT ARRAY INFO: reservation count 36440393, signal count 977828160 +Mutex spin waits 12033977328, rounds 5762851841, OS waits 2335706 +RW-shared spins 263735539, rounds 1073399886, OS waits 17684056 +RW-excl spins 31045745, rounds 1579081554, OS waits 15143742 +Spin rounds per wait: 0.48 mutex, 4.07 RW-shared, 50.86 RW-excl +-------- +FILE I/O +-------- +I/O thread 0 state: waiting for completed aio requests (insert buffer thread) +I/O thread 1 state: waiting for completed aio requests (log thread) +I/O thread 2 state: waiting for completed aio requests (read thread) +I/O thread 3 state: waiting for completed aio requests (read thread) +I/O thread 4 state: waiting for completed aio requests (read thread) +I/O thread 5 state: waiting for completed aio requests (read thread) +I/O thread 6 state: waiting for completed aio requests (write thread) +I/O thread 7 state: waiting for completed aio requests (write thread) +I/O thread 8 state: waiting for completed aio requests (write thread) +I/O thread 9 state: waiting for completed aio requests (write thread) +Pending normal aio reads: 0 [0, 0, 0, 0] , aio writes: 0 [0, 0, 0, 0] , + ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0 +Pending flushes (fsync) log: 0; buffer pool: 0 +69640822 OS file reads, 648923500 OS file writes, 26514364 OS fsyncs +0.00 reads/s, 0 avg bytes/read, 9.75 writes/s, 1.00 fsyncs/s +------------------------------------- +INSERT BUFFER AND ADAPTIVE HASH INDEX +------------------------------------- +Ibuf: size 1, free list len 44, seg size 46, 42575 merges +merged operations: + insert 106806, delete mark 214604, delete 13653 +discarded operations: + insert 0, delete mark 0, delete 0 +Hash table size 46749559, node heap has 2653 buffer(s) +46.24 hash searches/s, 40.74 non-hash searches/s +--- +LOG +--- +Log sequence number 22611258576197 +Log flushed up to 22611258571295 +Last checkpoint at 22611248332855 +Max checkpoint age 434154333 +Checkpoint age target 420587011 +Modified age 10243342 +Checkpoint age 10243342 +0 pending log writes, 0 pending chkp writes +465310123 log i/o's done, 9.75 log i/o's/second +---------------------- +BUFFER POOL AND MEMORY +---------------------- +Total memory allocated 24245174272; in additional pool allocated 0 +Total memory allocated by read views 2560 +Internal hash tables (constant factor + variable factor) + Adaptive hash index 417467440 (373996472 + 43470968) + Page hash 23375608 (buffer pool 0 only) + Dictionary cache 141153090 (93500944 + 47652146) + File system 1821472 (82672 + 1738800) + Lock system 58442168 (58437656 + 4512) + Recovery system 0 (0 + 0) +Dictionary memory allocated 47652146 +Buffer pool size 1441791 +Buffer pool size, bytes 23622303744 +Free buffers 1 +Database pages 1439137 +Old database pages 531223 +Modified db pages 594 +Pending reads 0 +Pending writes: LRU 0, flush list 0, single page 0 +Pages made young 70145671, not young 0 +0.00 youngs/s, 0.00 non-youngs/s +Pages read 69635296, created 4832900, written 178737138 +0.00 reads/s, 0.00 creates/s, 0.00 writes/s +Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000 +Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s +LRU len: 1439137, unzip_LRU len: 0 +I/O sum[1102]:cur[0], unzip sum[0]:cur[0] +-------------- +ROW OPERATIONS +-------------- +0 queries inside InnoDB, 0 queries in queue +1 read views open inside InnoDB +0 transactions active inside InnoDB +0 out of 1000 descriptors used +---OLDEST VIEW--- +Normal read view +Read view low limit trx n:o 55D01B7E3 +Read view up limit trx id 55D01B7E3 +Read view low limit trx id 55D01B7E3 +Read view individually stored trx ids: +----------------- +Main thread process no. 1648, id 140570308982528, state: sleeping +Number of rows inserted 296828096, updated 207731732, deleted 40015418, read 2455377947207 +5.00 inserts/s, 3.50 updates/s, 0.25 deletes/s, 211871.28 reads/s +------------------------ +LATEST DETECTED DEADLOCK +------------------------ +180227 14:45:46 +*** (1) TRANSACTION: +TRANSACTION 55984EF58, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247292, OS thread handle 0x7fd903731700, query id 2598871462 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '557200465a956f1a8822d0.18512229', '1519742747.5575') +*** (1) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF58 lock_mode X locks rec but not gap waiting +*** (2) TRANSACTION: +TRANSACTION 55984EF59, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247291, OS thread handle 0x7fd9033bf700, query id 2598871463 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '1871808655a956f1a882120.81843263', '1519742747.5575') +*** (2) HOLDS THE LOCK(S): +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock mode S locks rec but not gap +*** (2) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock_mode X locks rec but not gap waiting +*** WE ROLL BACK TRANSACTION (2) +------------ +TRANSACTIONS +------------ +Trx id counter 55D01B7FF +Purge done for trx's n:o < 55D01B7D4 undo n:o < 0 +History list length 4728 +LIST OF TRANSACTIONS FOR EACH SESSION: +---TRANSACTION 0, not started +MySQL thread id 30894959, OS thread handle 0x7fd9037c4700, query id 2739060099 localhost rdba +SHOW /*!40100 ENGINE*/ INNODB STATUS +---TRANSACTION 0, not started +MySQL thread id 30741296, OS thread handle 0x7fd902907700, query id 2739057614 10.10.9.10 rdba +---TRANSACTION 55D01B7EF, not started +MySQL thread id 5923113, OS thread handle 0x7fd903b98700, query id 2739060064 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7F0, not started +MySQL thread id 5923112, OS thread handle 0x7fd903d20700, query id 2739060067 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7EC, not started +MySQL thread id 5922912, OS thread handle 0x7fd903d51700, query id 2739060058 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7ED, not started +MySQL thread id 5922013, OS thread handle 0x7fd9035da700, query id 2739060061 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7EA, not started +MySQL thread id 5922000, OS thread handle 0x7fd90366d700, query id 2739060056 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7FA, not started +MySQL thread id 689010, OS thread handle 0x7fd9100f5700, query id 2739060089 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7FC, not started +MySQL thread id 689009, OS thread handle 0x7fd910157700, query id 2739060092 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7FD, not started +MySQL thread id 689008, OS thread handle 0x7fd91021b700, query id 2739060095 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7F9, not started +MySQL thread id 689006, OS thread handle 0x7fd9104eb700, query id 2739060087 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D01B7F7, not started +MySQL thread id 689004, OS thread handle 0x7fd9101ea700, query id 2739060084 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---------------------------- +END OF INNODB MONITOR OUTPUT +============================ + diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus2 b/src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus2 new file mode 100644 index 00000000..8ffc4496 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_29_55-innodbstatus2 @@ -0,0 +1,166 @@ +*************************** 1. row *************************** + Type: InnoDB + Name: +Status: +===================================== +180305 13:30:26 INNODB MONITOR OUTPUT +===================================== +Per second averages calculated from the last 4 seconds +----------------- +BACKGROUND THREAD +----------------- +srv_master_thread loops: 10426945 1_second, 10426817 sleeps, 1039514 10_second, 114409 background, 114408 flush +srv_master_thread log flush and writes: 10573397 +---------- +SEMAPHORES +---------- +OS WAIT ARRAY INFO: reservation count 36440428, signal count 977828335 +Mutex spin waits 12033983140, rounds 5762854799, OS waits 2335733 +RW-shared spins 263735563, rounds 1073400093, OS waits 17684061 +RW-excl spins 31045750, rounds 1579081835, OS waits 15143745 +Spin rounds per wait: 0.48 mutex, 4.07 RW-shared, 50.86 RW-excl +-------- +FILE I/O +-------- +I/O thread 0 state: waiting for completed aio requests (insert buffer thread) +I/O thread 1 state: waiting for completed aio requests (log thread) +I/O thread 2 state: waiting for completed aio requests (read thread) +I/O thread 3 state: waiting for completed aio requests (read thread) +I/O thread 4 state: waiting for completed aio requests (read thread) +I/O thread 5 state: waiting for completed aio requests (read thread) +I/O thread 6 state: waiting for completed aio requests (write thread) +I/O thread 7 state: waiting for completed aio requests (write thread) +I/O thread 8 state: waiting for completed aio requests (write thread) +I/O thread 9 state: waiting for completed aio requests (write thread) +Pending normal aio reads: 0 [0, 0, 0, 0] , aio writes: 0 [0, 0, 0, 0] , + ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0 +Pending flushes (fsync) log: 0; buffer pool: 0 +69640822 OS file reads, 648932213 OS file writes, 26514419 OS fsyncs +0.00 reads/s, 0 avg bytes/read, 49.49 writes/s, 1.00 fsyncs/s +------------------------------------- +INSERT BUFFER AND ADAPTIVE HASH INDEX +------------------------------------- +Ibuf: size 1, free list len 44, seg size 46, 42575 merges +merged operations: + insert 106806, delete mark 214604, delete 13653 +discarded operations: + insert 0, delete mark 0, delete 0 +Hash table size 46749559, node heap has 2653 buffer(s) +11618.10 hash searches/s, 1378.66 non-hash searches/s +--- +LOG +--- +Log sequence number 22611271140958 +Log flushed up to 22611270996231 +Last checkpoint at 22611252175617 +Max checkpoint age 434154333 +Checkpoint age target 420587011 +Modified age 18965341 +Checkpoint age 18965341 +0 pending log writes, 0 pending chkp writes +465318567 log i/o's done, 49.49 log i/o's/second +---------------------- +BUFFER POOL AND MEMORY +---------------------- +Total memory allocated 24245174272; in additional pool allocated 0 +Total memory allocated by read views 2560 +Internal hash tables (constant factor + variable factor) + Adaptive hash index 417467440 (373996472 + 43470968) + Page hash 23375608 (buffer pool 0 only) + Dictionary cache 141153090 (93500944 + 47652146) + File system 1821472 (82672 + 1738800) + Lock system 58442168 (58437656 + 4512) + Recovery system 0 (0 + 0) +Dictionary memory allocated 47652146 +Buffer pool size 1441791 +Buffer pool size, bytes 23622303744 +Free buffers 1 +Database pages 1439137 +Old database pages 531223 +Modified db pages 1085 +Pending reads 0 +Pending writes: LRU 0, flush list 0, single page 0 +Pages made young 70145671, not young 0 +0.00 youngs/s, 0.00 non-youngs/s +Pages read 69635296, created 4832914, written 178737400 +0.00 reads/s, 0.25 creates/s, 0.00 writes/s +Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000 +Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s +LRU len: 1439137, unzip_LRU len: 0 +I/O sum[702]:cur[0], unzip sum[0]:cur[0] +-------------- +ROW OPERATIONS +-------------- +0 queries inside InnoDB, 0 queries in queue +1 read views open inside InnoDB +0 transactions active inside InnoDB +0 out of 1000 descriptors used +---OLDEST VIEW--- +Normal read view +Read view low limit trx n:o 55D02049F +Read view up limit trx id 55D02049F +Read view low limit trx id 55D02049F +Read view individually stored trx ids: +----------------- +Main thread process no. 1648, id 140570308982528, state: sleeping +Number of rows inserted 296829308, updated 207739319, deleted 40015463, read 2455401692192 +28.24 inserts/s, 21.74 updates/s, 0.75 deletes/s, 164406.15 reads/s +------------------------ +LATEST DETECTED DEADLOCK +------------------------ +180227 14:45:46 +*** (1) TRANSACTION: +TRANSACTION 55984EF58, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247292, OS thread handle 0x7fd903731700, query id 2598871462 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '557200465a956f1a8822d0.18512229', '1519742747.5575') +*** (1) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF58 lock_mode X locks rec but not gap waiting +*** (2) TRANSACTION: +TRANSACTION 55984EF59, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247291, OS thread handle 0x7fd9033bf700, query id 2598871463 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '1871808655a956f1a882120.81843263', '1519742747.5575') +*** (2) HOLDS THE LOCK(S): +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock mode S locks rec but not gap +*** (2) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock_mode X locks rec but not gap waiting +*** WE ROLL BACK TRANSACTION (2) +------------ +TRANSACTIONS +------------ +Trx id counter 55D02054F +Purge done for trx's n:o < 55D02049F undo n:o < 0 +History list length 2173 +LIST OF TRANSACTIONS FOR EACH SESSION: +---TRANSACTION 0, not started +MySQL thread id 30895279, OS thread handle 0x7fd903857700, query id 2739081619 localhost rdba +SHOW /*!40100 ENGINE*/ INNODB STATUS +---TRANSACTION 0, not started +MySQL thread id 30741296, OS thread handle 0x7fd902907700, query id 2739075683 10.10.9.10 rdba +---TRANSACTION 55D020530, not started +MySQL thread id 5923113, OS thread handle 0x7fd903b98700, query id 2739081571 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D02052A, not started +MySQL thread id 5923112, OS thread handle 0x7fd903d20700, query id 2739081559 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D02052B, not started +MySQL thread id 5922912, OS thread handle 0x7fd903d51700, query id 2739081564 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D02052E, not started +MySQL thread id 5922013, OS thread handle 0x7fd9035da700, query id 2739081567 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D020528, not started +MySQL thread id 5922000, OS thread handle 0x7fd90366d700, query id 2739081557 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D0204BB, not started +MySQL thread id 689010, OS thread handle 0x7fd9100f5700, query id 2739081344 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D0204BD, not started +MySQL thread id 689009, OS thread handle 0x7fd910157700, query id 2739081347 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D0204B3, not started +MySQL thread id 689008, OS thread handle 0x7fd91021b700, query id 2739081333 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D0204B8, not started +MySQL thread id 689006, OS thread handle 0x7fd9104eb700, query id 2739081341 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D0204B6, not started +MySQL thread id 689004, OS thread handle 0x7fd9101ea700, query id 2739081337 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---------------------------- +END OF INNODB MONITOR OUTPUT +============================ + diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus1 b/src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus1 new file mode 100644 index 00000000..bf4600cd --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus1 @@ -0,0 +1,166 @@ +*************************** 1. row *************************** + Type: InnoDB + Name: +Status: +===================================== +180305 13:34:56 INNODB MONITOR OUTPUT +===================================== +Per second averages calculated from the last 4 seconds +----------------- +BACKGROUND THREAD +----------------- +srv_master_thread loops: 10427213 1_second, 10427085 sleeps, 1039541 10_second, 114412 background, 114411 flush +srv_master_thread log flush and writes: 10573668 +---------- +SEMAPHORES +---------- +OS WAIT ARRAY INFO: reservation count 36440480, signal count 977828396 +Mutex spin waits 12033991389, rounds 5762858481, OS waits 2335752 +RW-shared spins 263735596, rounds 1073400964, OS waits 17684090 +RW-excl spins 31045751, rounds 1579081972, OS waits 15143749 +Spin rounds per wait: 0.48 mutex, 4.07 RW-shared, 50.86 RW-excl +-------- +FILE I/O +-------- +I/O thread 0 state: waiting for completed aio requests (insert buffer thread) +I/O thread 1 state: waiting for completed aio requests (log thread) +I/O thread 2 state: waiting for completed aio requests (read thread) +I/O thread 3 state: waiting for completed aio requests (read thread) +I/O thread 4 state: waiting for completed aio requests (read thread) +I/O thread 5 state: waiting for completed aio requests (read thread) +I/O thread 6 state: waiting for completed aio requests (write thread) +I/O thread 7 state: waiting for completed aio requests (write thread) +I/O thread 8 state: waiting for completed aio requests (write thread) +I/O thread 9 state: waiting for completed aio requests (write thread) +Pending normal aio reads: 0 [0, 0, 0, 0] , aio writes: 0 [0, 0, 0, 0] , + ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0 +Pending flushes (fsync) log: 0; buffer pool: 0 +69640822 OS file reads, 648944242 OS file writes, 26515183 OS fsyncs +0.00 reads/s, 0 avg bytes/read, 66.48 writes/s, 5.50 fsyncs/s +------------------------------------- +INSERT BUFFER AND ADAPTIVE HASH INDEX +------------------------------------- +Ibuf: size 1, free list len 44, seg size 46, 42575 merges +merged operations: + insert 106806, delete mark 214604, delete 13653 +discarded operations: + insert 0, delete mark 0, delete 0 +Hash table size 46749559, node heap has 2654 buffer(s) +114.72 hash searches/s, 118.72 non-hash searches/s +--- +LOG +--- +Log sequence number 22611346881333 +Log flushed up to 22611346881333 +Last checkpoint at 22611346009655 +Max checkpoint age 434154333 +Checkpoint age target 420587011 +Modified age 871678 +Checkpoint age 871678 +0 pending log writes, 0 pending chkp writes +465324837 log i/o's done, 10.25 log i/o's/second +---------------------- +BUFFER POOL AND MEMORY +---------------------- +Total memory allocated 24245174272; in additional pool allocated 0 +Total memory allocated by read views 2560 +Internal hash tables (constant factor + variable factor) + Adaptive hash index 417483824 (373996472 + 43487352) + Page hash 23375608 (buffer pool 0 only) + Dictionary cache 141153090 (93500944 + 47652146) + File system 1821472 (82672 + 1738800) + Lock system 58442168 (58437656 + 4512) + Recovery system 0 (0 + 0) +Dictionary memory allocated 47652146 +Buffer pool size 1441791 +Buffer pool size, bytes 23622303744 +Free buffers 1 +Database pages 1439136 +Old database pages 531223 +Modified db pages 257 +Pending reads 0 +Pending writes: LRU 0, flush list 0, single page 0 +Pages made young 70145671, not young 0 +0.00 youngs/s, 0.00 non-youngs/s +Pages read 69635296, created 4832946, written 178743030 +0.00 reads/s, 0.00 creates/s, 54.99 writes/s +Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000 +Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s +LRU len: 1439136, unzip_LRU len: 0 +I/O sum[1376]:cur[0], unzip sum[0]:cur[0] +-------------- +ROW OPERATIONS +-------------- +0 queries inside InnoDB, 0 queries in queue +1 read views open inside InnoDB +0 transactions active inside InnoDB +0 out of 1000 descriptors used +---OLDEST VIEW--- +Normal read view +Read view low limit trx n:o 55D025F9F +Read view up limit trx id 55D025F9F +Read view low limit trx id 55D025F9F +Read view individually stored trx ids: +----------------- +Main thread process no. 1648, id 140570308982528, state: sleeping +Number of rows inserted 296832979, updated 207741812, deleted 40015812, read 2455438612265 +5.25 inserts/s, 4.00 updates/s, 0.00 deletes/s, 141586.85 reads/s +------------------------ +LATEST DETECTED DEADLOCK +------------------------ +180227 14:45:46 +*** (1) TRANSACTION: +TRANSACTION 55984EF58, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247292, OS thread handle 0x7fd903731700, query id 2598871462 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '557200465a956f1a8822d0.18512229', '1519742747.5575') +*** (1) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF58 lock_mode X locks rec but not gap waiting +*** (2) TRANSACTION: +TRANSACTION 55984EF59, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247291, OS thread handle 0x7fd9033bf700, query id 2598871463 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '1871808655a956f1a882120.81843263', '1519742747.5575') +*** (2) HOLDS THE LOCK(S): +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock mode S locks rec but not gap +*** (2) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock_mode X locks rec but not gap waiting +*** WE ROLL BACK TRANSACTION (2) +------------ +TRANSACTIONS +------------ +Trx id counter 55D025F9F +Purge done for trx's n:o < 55D025F9F undo n:o < 0 +History list length 3865 +LIST OF TRANSACTIONS FOR EACH SESSION: +---TRANSACTION 0, not started +MySQL thread id 30896336, OS thread handle 0x7fd902e32700, query id 2739141923 localhost rdba +SHOW /*!40100 ENGINE*/ INNODB STATUS +---TRANSACTION 0, not started +MySQL thread id 30741296, OS thread handle 0x7fd902907700, query id 2739140489 10.10.9.10 rdba +---TRANSACTION 55D025F95, not started +MySQL thread id 5923113, OS thread handle 0x7fd903b98700, query id 2739141887 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F90, not started +MySQL thread id 5923112, OS thread handle 0x7fd903d20700, query id 2739141878 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F96, not started +MySQL thread id 5922912, OS thread handle 0x7fd903d51700, query id 2739141889 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F92, not started +MySQL thread id 5922013, OS thread handle 0x7fd9035da700, query id 2739141880 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F93, not started +MySQL thread id 5922000, OS thread handle 0x7fd90366d700, query id 2739141883 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F9C, not started +MySQL thread id 689010, OS thread handle 0x7fd9100f5700, query id 2739141914 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F99, not started +MySQL thread id 689009, OS thread handle 0x7fd910157700, query id 2739141908 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F98, not started +MySQL thread id 689008, OS thread handle 0x7fd91021b700, query id 2739141905 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F9A, not started +MySQL thread id 689006, OS thread handle 0x7fd9104eb700, query id 2739141911 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D025F9D, not started +MySQL thread id 689004, OS thread handle 0x7fd9101ea700, query id 2739141916 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---------------------------- +END OF INNODB MONITOR OUTPUT +============================ + diff --git a/src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus2 b/src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus2 new file mode 100644 index 00000000..9313b923 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/2018_03_05_13_34_55-innodbstatus2 @@ -0,0 +1,168 @@ +*************************** 1. row *************************** + Type: InnoDB + Name: +Status: +===================================== +180305 13:35:26 INNODB MONITOR OUTPUT +===================================== +Per second averages calculated from the last 4 seconds +----------------- +BACKGROUND THREAD +----------------- +srv_master_thread loops: 10427243 1_second, 10427115 sleeps, 1039544 10_second, 114412 background, 114411 flush +srv_master_thread log flush and writes: 10573698 +---------- +SEMAPHORES +---------- +OS WAIT ARRAY INFO: reservation count 36440485, signal count 977828405 +Mutex spin waits 12033992104, rounds 5762858828, OS waits 2335754 +RW-shared spins 263735599, rounds 1073401054, OS waits 17684093 +RW-excl spins 31045752, rounds 1579081980, OS waits 15143749 +Spin rounds per wait: 0.48 mutex, 4.07 RW-shared, 50.86 RW-excl +-------- +FILE I/O +-------- +I/O thread 0 state: waiting for completed aio requests (insert buffer thread) +I/O thread 1 state: waiting for completed aio requests (log thread) +I/O thread 2 state: waiting for completed aio requests (read thread) +I/O thread 3 state: waiting for completed aio requests (read thread) +I/O thread 4 state: waiting for completed aio requests (read thread) +I/O thread 5 state: waiting for completed aio requests (read thread) +I/O thread 6 state: waiting for completed aio requests (write thread) +I/O thread 7 state: waiting for completed aio requests (write thread) +I/O thread 8 state: waiting for completed aio requests (write thread) +I/O thread 9 state: waiting for completed aio requests (write thread) +Pending normal aio reads: 0 [0, 0, 0, 0] , aio writes: 0 [0, 0, 0, 0] , + ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0 +Pending flushes (fsync) log: 0; buffer pool: 0 +69640822 OS file reads, 648945544 OS file writes, 26515245 OS fsyncs +0.00 reads/s, 0 avg bytes/read, 62.23 writes/s, 3.75 fsyncs/s +------------------------------------- +INSERT BUFFER AND ADAPTIVE HASH INDEX +------------------------------------- +Ibuf: size 1, free list len 44, seg size 46, 42575 merges +merged operations: + insert 106806, delete mark 214604, delete 13653 +discarded operations: + insert 0, delete mark 0, delete 0 +Hash table size 46749559, node heap has 2654 buffer(s) +378.41 hash searches/s, 191.70 non-hash searches/s +--- +LOG +--- +Log sequence number 22611355523170 +Log flushed up to 22611355523170 +Last checkpoint at 22611346878065 +Max checkpoint age 434154333 +Checkpoint age target 420587011 +Modified age 8645105 +Checkpoint age 8645105 +0 pending log writes, 0 pending chkp writes +465325667 log i/o's done, 6.00 log i/o's/second +---------------------- +BUFFER POOL AND MEMORY +---------------------- +Total memory allocated 24245174272; in additional pool allocated 0 +Total memory allocated by read views 2560 +Internal hash tables (constant factor + variable factor) + Adaptive hash index 417483824 (373996472 + 43487352) + Page hash 23375608 (buffer pool 0 only) + Dictionary cache 141153090 (93500944 + 47652146) + File system 1821472 (82672 + 1738800) + Lock system 58442544 (58437656 + 4888) + Recovery system 0 (0 + 0) +Dictionary memory allocated 47652146 +Buffer pool size 1441791 +Buffer pool size, bytes 23622303744 +Free buffers 1 +Database pages 1439136 +Old database pages 531223 +Modified db pages 378 +Pending reads 0 +Pending writes: LRU 0, flush list 0, single page 0 +Pages made young 70145671, not young 0 +0.00 youngs/s, 0.00 non-youngs/s +Pages read 69635296, created 4832952, written 178743491 +0.00 reads/s, 0.00 creates/s, 54.99 writes/s +Buffer pool hit rate 1000 / 1000, young-making rate 0 / 1000 not 0 / 1000 +Pages read ahead 0.00/s, evicted without access 0.00/s, Random read ahead 0.00/s +LRU len: 1439136, unzip_LRU len: 0 +I/O sum[901]:cur[0], unzip sum[0]:cur[0] +-------------- +ROW OPERATIONS +-------------- +0 queries inside InnoDB, 0 queries in queue +1 read views open inside InnoDB +0 transactions active inside InnoDB +0 out of 1000 descriptors used +---OLDEST VIEW--- +Normal read view +Read view low limit trx n:o 55D026BA0 +Read view up limit trx id 55D026BA0 +Read view low limit trx id 55D026BA0 +Read view individually stored trx ids: +----------------- +Main thread process no. 1648, id 140570308982528, state: sleeping +Number of rows inserted 296833449, updated 207742148, deleted 40015845, read 2455447075033 +4.00 inserts/s, 1.25 updates/s, 1.00 deletes/s, 770.56 reads/s +------------------------ +LATEST DETECTED DEADLOCK +------------------------ +180227 14:45:46 +*** (1) TRANSACTION: +TRANSACTION 55984EF58, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +LOCK WAIT 3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247292, OS thread handle 0x7fd903731700, query id 2598871462 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '557200465a956f1a8822d0.18512229', '1519742747.5575') +*** (1) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF58 lock_mode X locks rec but not gap waiting +*** (2) TRANSACTION: +TRANSACTION 55984EF59, ACTIVE 0 sec inserting +mysql tables in use 1, locked 1 +3 lock struct(s), heap size 376, 2 row lock(s) +MySQL thread id 29247291, OS thread handle 0x7fd9033bf700, query id 2598871463 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root update +INSERT INTO semaphore (name, value, expire) VALUES ('variable_init', '1871808655a956f1a882120.81843263', '1519742747.5575') +*** (2) HOLDS THE LOCK(S): +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock mode S locks rec but not gap +*** (2) WAITING FOR THIS LOCK TO BE GRANTED: +RECORD LOCKS space id 636643 page no 3 n bits 72 index "PRIMARY" of table "percona_com_redesign2015"."semaphore" trx id 55984EF59 lock_mode X locks rec but not gap waiting +*** WE ROLL BACK TRANSACTION (2) +------------ +TRANSACTIONS +------------ +Trx id counter 55D026BA1 +Purge done for trx's n:o < 55D026B83 undo n:o < 0 +History list length 3988 +LIST OF TRANSACTIONS FOR EACH SESSION: +---TRANSACTION 0, not started +MySQL thread id 30896632, OS thread handle 0x7fd903e15700, query id 2739149745 localhost rdba +SHOW /*!40100 ENGINE*/ INNODB STATUS +---TRANSACTION 0, not started +MySQL thread id 30896630, OS thread handle 0x7fd903857700, query id 2739149740 bm-dell05-publicwww01.bm.int.percona.com 10.10.9.210 root +---TRANSACTION 0, not started +MySQL thread id 30741296, OS thread handle 0x7fd902907700, query id 2739146469 10.10.9.10 rdba +---TRANSACTION 55D026B7E, not started +MySQL thread id 5923113, OS thread handle 0x7fd903b98700, query id 2739149495 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026B80, not started +MySQL thread id 5923112, OS thread handle 0x7fd903d20700, query id 2739149497 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026B81, not started +MySQL thread id 5922912, OS thread handle 0x7fd903d51700, query id 2739149500 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026B7B, not started +MySQL thread id 5922013, OS thread handle 0x7fd9035da700, query id 2739149488 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026B7D, not started +MySQL thread id 5922000, OS thread handle 0x7fd90366d700, query id 2739149491 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026AE8, not started +MySQL thread id 689010, OS thread handle 0x7fd9100f5700, query id 2739149086 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026AE6, not started +MySQL thread id 689009, OS thread handle 0x7fd910157700, query id 2739149083 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026AE9, not started +MySQL thread id 689008, OS thread handle 0x7fd91021b700, query id 2739149090 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026AEC, not started +MySQL thread id 689006, OS thread handle 0x7fd9104eb700, query id 2739149096 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---TRANSACTION 55D026AEB, not started +MySQL thread id 689004, OS thread handle 0x7fd9101ea700, query id 2739149093 www-docker01.bm.int.percona.com 10.10.9.22 version_check +---------------------------- +END OF INNODB MONITOR OUTPUT +============================ + diff --git a/src/go/pt-secure-collect/testdata/pt-mysql-summary b/src/go/pt-secure-collect/testdata/pt-mysql-summary new file mode 100755 index 00000000..1a343243 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/pt-mysql-summary @@ -0,0 +1,2 @@ +#!/bin/bash +echo "a dummy output for pt-mysql-summary" diff --git a/src/go/pt-secure-collect/testdata/pt-stalk b/src/go/pt-secure-collect/testdata/pt-stalk new file mode 100755 index 00000000..0b18f605 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/pt-stalk @@ -0,0 +1,9 @@ +#!/bin/bash + +# pt-stalk --no-stalk --iterations=2 --sleep=30 --host=127.0.0.1 --dest=/home/karl/data_collection_2018-04-17_15_41_29 --port=5721 --user=msandbox --password=******** +# arg[0] [1] [2] [3] [4] [5] [6] [7] [8] + +preffix="--dest=" +dest_dir=${5#$prefix}; #Remove prefix + +echo "a dummy output for pt-stalk" > ${dest_dir}/dummy.log diff --git a/src/go/pt-secure-collect/testdata/pt-summary b/src/go/pt-secure-collect/testdata/pt-summary new file mode 100755 index 00000000..d22362c0 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/pt-summary @@ -0,0 +1,3 @@ +#!/bin/bash + +echo "a dummy output for pt-summary" diff --git a/src/go/pt-secure-collect/testdata/slow_80.log b/src/go/pt-secure-collect/testdata/slow_80.log new file mode 100755 index 00000000..5b4ad710 --- /dev/null +++ b/src/go/pt-secure-collect/testdata/slow_80.log @@ -0,0 +1,2029 @@ +/home/karl/mysql/my-5.7/bin/mysqld, Version: 5.7.20-log (MySQL Community Server (GPL)). started with: +Tcp port: 12345 Unix socket: /tmp/12345/mysql_sandbox12345.sock +Time Id Command Argument +# Time: 2018-02-05T02:46:43.015898Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 3 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Ping; +# Time: 2018-02-05T02:46:43.015994Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 3 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Quit; +# Time: 2018-02-05T02:46:43.025041Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 4 +# Query_time: 0.000162 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:43.025552Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 4 +# Query_time: 0.000323 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +SHOW /*!40100 ENGINE*/ INNODB STATUS; +# Time: 2018-02-05T02:46:43.025966Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 4 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Quit; +# Time: 2018-02-05T02:46:43.034549Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000052 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:43.034661Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000038 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +SELECT DATABASE(); +# Time: 2018-02-05T02:46:43.034711Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000035 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +use mysql; +SET timestamp=1517798803; +# administrator command: Init DB; +# Time: 2018-02-05T02:46:43.034819Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000035 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +# Time: 2018-02-05T02:46:43.034850Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +# Time: 2018-02-05T02:46:43.034874Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +# Time: 2018-02-05T02:46:43.034900Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET NAMES utf8 */; +# Time: 2018-02-05T02:46:43.034923Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +# Time: 2018-02-05T02:46:43.034955Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000023 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40103 SET TIME_ZONE='+00:00' */; +# Time: 2018-02-05T02:46:43.034984Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +# Time: 2018-02-05T02:46:43.035008Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +# Time: 2018-02-05T02:46:43.035038Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000021 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +# Time: 2018-02-05T02:46:43.035066Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; +# Time: 2018-02-05T02:46:43.035218Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000143 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `columns_priv`; +# Time: 2018-02-05T02:46:43.035248Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.035276Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.035578Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000236 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `columns_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Column_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', + PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`,`Column_name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Column privileges'; +# Time: 2018-02-05T02:46:43.035637Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000027 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.035744Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000095 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `db`; +# Time: 2018-02-05T02:46:43.035779Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000021 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.035807Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.036179Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000301 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `db` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + PRIMARY KEY (`Host`,`Db`,`User`), + KEY `User` (`User`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Database privileges'; +# Time: 2018-02-05T02:46:43.036232Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000027 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.036338Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000095 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `event`; +# Time: 2018-02-05T02:46:43.036372Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000020 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.036401Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.036759Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000310 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `event` ( + `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `name` char(64) NOT NULL DEFAULT '', + `body` longblob NOT NULL, + `definer` char(93) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `execute_at` datetime DEFAULT NULL, + `interval_value` int(11) DEFAULT NULL, + `interval_field` enum('YEAR','QUARTER','MONTH','DAY','HOUR','MINUTE','WEEK','SECOND','MICROSECOND','YEAR_MONTH','DAY_HOUR','DAY_MINUTE','DAY_SECOND','HOUR_MINUTE','HOUR_SECOND','MINUTE_SECOND','DAY_MICROSECOND','HOUR_MICROSECOND','MINUTE_MICROSECOND','SECOND_MICROSECOND') DEFAULT NULL, + `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + `last_executed` datetime DEFAULT NULL, + `starts` datetime DEFAULT NULL, + `ends` datetime DEFAULT NULL, + `status` enum('ENABLED','DISABLED','SLAVESIDE_DISABLED') NOT NULL DEFAULT 'ENABLED', + `on_completion` enum('DROP','PRESERVE') NOT NULL DEFAULT 'DROP', + `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', + `comment` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `originator` int(10) unsigned NOT NULL, + `time_zone` char(64) CHARACTER SET latin1 NOT NULL DEFAULT 'SYSTEM', + `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `body_utf8` longblob, + PRIMARY KEY (`db`,`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Events'; +# Time: 2018-02-05T02:46:43.036802Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000024 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.036899Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000087 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `func`; +# Time: 2018-02-05T02:46:43.036931Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.036959Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.037145Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000170 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `func` ( + `name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `ret` tinyint(1) NOT NULL DEFAULT '0', + `dl` char(128) COLLATE utf8_bin NOT NULL DEFAULT '', + `type` enum('function','aggregate') CHARACTER SET utf8 NOT NULL, + PRIMARY KEY (`name`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User defined functions'; +# Time: 2018-02-05T02:46:43.037181Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.037272Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000082 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `ndb_binlog_index`; +# Time: 2018-02-05T02:46:43.037304Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.037330Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.037530Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000180 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `ndb_binlog_index` ( + `Position` bigint(20) unsigned NOT NULL, + `File` varchar(255) NOT NULL, + `epoch` bigint(20) unsigned NOT NULL, + `inserts` int(10) unsigned NOT NULL, + `updates` int(10) unsigned NOT NULL, + `deletes` int(10) unsigned NOT NULL, + `schemaops` int(10) unsigned NOT NULL, + `orig_server_id` int(10) unsigned NOT NULL, + `orig_epoch` bigint(20) unsigned NOT NULL, + `gci` int(10) unsigned NOT NULL, + `next_position` bigint(20) unsigned NOT NULL, + `next_file` varchar(255) NOT NULL, + PRIMARY KEY (`epoch`,`orig_server_id`,`orig_epoch`) +) ENGINE=MyISAM DEFAULT CHARSET=latin1; +# Time: 2018-02-05T02:46:43.037568Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000023 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.037687Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000110 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `proc`; +# Time: 2018-02-05T02:46:43.037730Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000030 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.037766Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000020 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.038088Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000284 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `proc` ( + `db` char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `name` char(64) NOT NULL DEFAULT '', + `type` enum('FUNCTION','PROCEDURE') NOT NULL, + `specific_name` char(64) NOT NULL DEFAULT '', + `language` enum('SQL') NOT NULL DEFAULT 'SQL', + `sql_data_access` enum('CONTAINS_SQL','NO_SQL','READS_SQL_DATA','MODIFIES_SQL_DATA') NOT NULL DEFAULT 'CONTAINS_SQL', + `is_deterministic` enum('YES','NO') NOT NULL DEFAULT 'NO', + `security_type` enum('INVOKER','DEFINER') NOT NULL DEFAULT 'DEFINER', + `param_list` blob NOT NULL, + `returns` longblob NOT NULL, + `body` longblob NOT NULL, + `definer` char(93) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', + `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `modified` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', + `sql_mode` set('REAL_AS_FLOAT','PIPES_AS_CONCAT','ANSI_QUOTES','IGNORE_SPACE','NOT_USED','ONLY_FULL_GROUP_BY','NO_UNSIGNED_SUBTRACTION','NO_DIR_IN_CREATE','POSTGRESQL','ORACLE','MSSQL','DB2','MAXDB','NO_KEY_OPTIONS','NO_TABLE_OPTIONS','NO_FIELD_OPTIONS','MYSQL323','MYSQL40','ANSI','NO_AUTO_VALUE_ON_ZERO','NO_BACKSLASH_ESCAPES','STRICT_TRANS_TABLES','STRICT_ALL_TABLES','NO_ZERO_IN_DATE','NO_ZERO_DATE','INVALID_DATES','ERROR_FOR_DIVISION_BY_ZERO','TRADITIONAL','NO_AUTO_CREATE_USER','HIGH_NOT_PRECEDENCE','NO_ENGINE_SUBSTITUTION','PAD_CHAR_TO_FULL_LENGTH') NOT NULL DEFAULT '', + `comment` text CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `character_set_client` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `collation_connection` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `db_collation` char(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `body_utf8` longblob, + PRIMARY KEY (`db`,`name`,`type`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Stored Procedures'; +# Time: 2018-02-05T02:46:43.038130Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000024 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.038229Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000090 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `procs_priv`; +# Time: 2018-02-05T02:46:43.038262Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.038290Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.038511Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000199 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `procs_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Routine_name` char(64) CHARACTER SET utf8 NOT NULL DEFAULT '', + `Routine_type` enum('FUNCTION','PROCEDURE') COLLATE utf8_bin NOT NULL, + `Grantor` char(93) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proc_priv` set('Execute','Alter Routine','Grant') CHARACTER SET utf8 NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`Host`,`Db`,`User`,`Routine_name`,`Routine_type`), + KEY `Grantor` (`Grantor`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Procedure privileges'; +# Time: 2018-02-05T02:46:43.038552Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000023 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.038654Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000093 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `proxies_priv`; +# Time: 2018-02-05T02:46:43.038687Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.038714Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.038920Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000186 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `proxies_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proxied_host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Proxied_user` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `With_grant` tinyint(1) NOT NULL DEFAULT '0', + `Grantor` char(93) COLLATE utf8_bin NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`Host`,`User`,`Proxied_host`,`Proxied_user`), + KEY `Grantor` (`Grantor`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='User proxy privileges'; +# Time: 2018-02-05T02:46:43.038957Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.039056Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000090 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +DROP TABLE IF EXISTS `tables_priv`; +# Time: 2018-02-05T02:46:43.039088Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.039115Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.039337Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000197 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE `tables_priv` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `Db` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Table_name` char(64) COLLATE utf8_bin NOT NULL DEFAULT '', + `Grantor` char(93) COLLATE utf8_bin NOT NULL DEFAULT '', + `Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + `Table_priv` set('Select','Insert','Update','Delete','Create','Drop','Grant','References','Index','Alter','Create View','Show view','Trigger') CHARACTER SET utf8 NOT NULL DEFAULT '', + `Column_priv` set('Select','Insert','Update','References') CHARACTER SET utf8 NOT NULL DEFAULT '', + PRIMARY KEY (`Host`,`Db`,`User`,`Table_name`), + KEY `Grantor` (`Grantor`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Table privileges'; +# Time: 2018-02-05T02:46:43.039375Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.039402Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.039427Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.039714Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000228 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE IF NOT EXISTS `user` ( + `Host` char(60) COLLATE utf8_bin NOT NULL DEFAULT '', + `User` char(32) COLLATE utf8_bin NOT NULL DEFAULT '', + `Select_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Insert_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Update_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Delete_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Drop_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Reload_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Shutdown_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Process_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `File_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Grant_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `References_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Index_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Show_db_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Super_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_tmp_table_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Lock_tables_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Execute_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Repl_slave_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Repl_client_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Show_view_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Alter_routine_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_user_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Event_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Trigger_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `Create_tablespace_priv` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `ssl_type` enum('','ANY','X509','SPECIFIED') CHARACTER SET utf8 NOT NULL DEFAULT '', + `ssl_cipher` blob NOT NULL, + `x509_issuer` blob NOT NULL, + `x509_subject` blob NOT NULL, + `max_questions` int(11) unsigned NOT NULL DEFAULT '0', + `max_updates` int(11) unsigned NOT NULL DEFAULT '0', + `max_connections` int(11) unsigned NOT NULL DEFAULT '0', + `max_user_connections` int(11) unsigned NOT NULL DEFAULT '0', + `plugin` char(64) COLLATE utf8_bin NOT NULL DEFAULT 'mysql_native_password', + `authentication_string` text COLLATE utf8_bin, + `password_expired` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + `password_last_changed` timestamp NULL DEFAULT NULL, + `password_lifetime` smallint(5) unsigned DEFAULT NULL, + `account_locked` enum('N','Y') CHARACTER SET utf8 NOT NULL DEFAULT 'N', + PRIMARY KEY (`Host`,`User`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='Users and global privileges'; +# Time: 2018-02-05T02:46:43.039755Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.039783Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.039809Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.039917Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000091 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE IF NOT EXISTS `general_log` ( + `event_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + `user_host` mediumtext NOT NULL, + `thread_id` bigint(21) unsigned NOT NULL, + `server_id` int(10) unsigned NOT NULL, + `command_type` varchar(64) NOT NULL, + `argument` mediumblob NOT NULL +) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='General log'; +# Time: 2018-02-05T02:46:43.039952Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000020 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.039976Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.040000Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.040109Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000090 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE IF NOT EXISTS `slow_log` ( + `start_time` timestamp(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6) ON UPDATE CURRENT_TIMESTAMP(6), + `user_host` mediumtext NOT NULL, + `query_time` time(6) NOT NULL, + `lock_time` time(6) NOT NULL, + `rows_sent` int(11) NOT NULL, + `rows_examined` int(11) NOT NULL, + `db` varchar(512) NOT NULL, + `last_insert_id` int(11) NOT NULL, + `insert_id` int(11) NOT NULL, + `server_id` int(10) unsigned NOT NULL, + `sql_text` mediumblob NOT NULL, + `thread_id` bigint(21) unsigned NOT NULL +) ENGINE=CSV DEFAULT CHARSET=utf8 COMMENT='Slow log'; +# Time: 2018-02-05T02:46:43.040142Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:43.040168Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = utf8 */; +# Time: 2018-02-05T02:46:43.040191Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:43.040218Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; +# Time: 2018-02-05T02:46:43.040245Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +# Time: 2018-02-05T02:46:43.040268Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +# Time: 2018-02-05T02:46:43.040292Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000013 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +# Time: 2018-02-05T02:46:43.040315Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +# Time: 2018-02-05T02:46:43.040341Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +# Time: 2018-02-05T02:46:43.040363Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +# Time: 2018-02-05T02:46:43.040384Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000011 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; +# Time: 2018-02-05T02:46:43.040396Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 5 +# Query_time: 0.000003 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Quit; +# Time: 2018-02-05T02:46:43.043354Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 6 +# Query_time: 0.000051 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:43.043476Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 6 +# Query_time: 0.000084 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE DATABASE IF NOT EXISTS percona_test; +# Time: 2018-02-05T02:46:43.043498Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 6 +# Query_time: 0.000004 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Quit; +# Time: 2018-02-05T02:46:43.046476Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 7 +# Query_time: 0.000052 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:43.047241Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 7 +# Query_time: 0.000667 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +CREATE TABLE IF NOT EXISTS percona_test.sentinel (id INT PRIMARY KEY, ping VARCHAR(64) NOT NULL DEFAULT ''); +# Time: 2018-02-05T02:46:43.047299Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 7 +# Query_time: 0.000005 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Quit; +# Time: 2018-02-05T02:46:43.050851Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 8 +# Query_time: 0.000051 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:43.050939Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 8 +# Query_time: 0.000027 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +SELECT VERSION(); +# Time: 2018-02-05T02:46:43.051005Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 8 +# Query_time: 0.000004 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798803; +# administrator command: Quit; +# Time: 2018-02-05T02:46:44.726486Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000052 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798804; +SELECT UNIX_TIMESTAMP(); +# Time: 2018-02-05T02:46:44.726632Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000050 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798804; +SELECT @@GLOBAL.SERVER_ID; +# Time: 2018-02-05T02:46:44.726682Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000029 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798804; +SET @master_heartbeat_period= 30000001024; +# Time: 2018-02-05T02:46:44.726730Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000028 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798804; +SET @master_binlog_checksum= @@global.binlog_checksum; +# Time: 2018-02-05T02:46:44.726766Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000026 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798804; +SELECT @master_binlog_checksum; +# Time: 2018-02-05T02:46:44.726889Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000057 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798804; +SELECT @@GLOBAL.GTID_MODE; +# Time: 2018-02-05T02:46:44.726947Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000039 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798804; +SELECT @@GLOBAL.SERVER_UUID; +# Time: 2018-02-05T02:46:44.726995Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000033 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798804; +SET @slave_uuid= 'cd111826-0a1e-11e8-98c3-88787342351a'; +# Time: 2018-02-05T02:46:44.727014Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 9 +# Query_time: 0.000008 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798804; +# administrator command: Register Slave; +# Time: 2018-02-05T02:46:46.399787Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000064 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798806; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:46.399936Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000039 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +SET autocommit=1; +# Time: 2018-02-05T02:46:46.400040Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000074 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +DROP DATABASE IF EXISTS `sakila`; +# Time: 2018-02-05T02:46:46.400131Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000068 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE DATABASE `sakila`; +# Time: 2018-02-05T02:46:46.400166Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000020 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +use sakila; +SET timestamp=1517798806; +USE `sakila`; +# Time: 2018-02-05T02:46:46.400203Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798806; +SELECT DATABASE(); +# Time: 2018-02-05T02:46:46.400233Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798806; +SELECT DATABASE(); +# Time: 2018-02-05T02:46:46.400275Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798806; +# administrator command: Init DB; +# Time: 2018-02-05T02:46:46.400326Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000029 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +SET NAMES utf8; +# Time: 2018-02-05T02:46:46.400366Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +SET UNIQUE_CHECKS=0; +# Time: 2018-02-05T02:46:46.400395Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +SET FOREIGN_KEY_CHECKS=0; +# Time: 2018-02-05T02:46:46.401387Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000966 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `actor` ( + `actor_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `first_name` varchar(45) NOT NULL, + `last_name` varchar(45) NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`actor_id`), + KEY `idx_actor_last_name` (`last_name`) +) ENGINE=InnoDB AUTO_INCREMENT=201 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.405326Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.003914 Lock_time: 0.003888 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `actor` WRITE; +# Time: 2018-02-05T02:46:46.405429Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000070 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `actor` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.408083Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.002468 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `actor` VALUES (1,'PENELOPE','GUINESS','2006-02-15 11:34:33'); +# Time: 2018-02-05T02:46:46.408179Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000061 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `actor` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.408702Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000504 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.409898Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.001158 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `address` ( + `address_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `address` varchar(50) NOT NULL, + `address2` varchar(50) DEFAULT NULL, + `district` varchar(20) NOT NULL, + `city_id` smallint(5) unsigned NOT NULL, + `postal_code` varchar(10) DEFAULT NULL, + `phone` varchar(20) NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`address_id`), + KEY `idx_fk_city_id` (`city_id`), + CONSTRAINT `fk_address_city` FOREIGN KEY (`city_id`) REFERENCES `city` (`city_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=606 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.410112Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000183 Lock_time: 0.000172 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `address` WRITE; +# Time: 2018-02-05T02:46:46.410190Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000055 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `address` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.421441Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.010329 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `address` VALUES (1,'47 MySakila Drive',NULL,'Alberta',300,'','','2006-02-15 11:45:30'); +# Time: 2018-02-05T02:46:46.421562Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000066 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `address` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.421629Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000048 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.422374Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000719 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `category` ( + `category_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(25) NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`category_id`) +) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.422581Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000170 Lock_time: 0.000159 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `category` WRITE; +# Time: 2018-02-05T02:46:46.422656Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000053 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `category` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.422904Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000215 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `category` VALUES (1,'Action','2006-02-15 11:46:27'); +# Time: 2018-02-05T02:46:46.422981Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000052 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `category` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.423487Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000489 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.424442Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000888 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `city` ( + `city_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `city` varchar(50) NOT NULL, + `country_id` smallint(5) unsigned NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`city_id`), + KEY `idx_fk_country_id` (`country_id`), + CONSTRAINT `fk_city_country` FOREIGN KEY (`country_id`) REFERENCES `country` (`country_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=601 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.424669Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000171 Lock_time: 0.000159 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `city` WRITE; +# Time: 2018-02-05T02:46:46.424772Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000051 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `city` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.431725Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.006503 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `city` VALUES (1,'A Corua (La Corua)',87,'2006-02-15 11:45:25'); +# Time: 2018-02-05T02:46:46.431810Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000051 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `city` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.431850Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.432416Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000541 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `country` ( + `country_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `country` varchar(50) NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`country_id`) +) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.432562Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000127 Lock_time: 0.000118 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `country` WRITE; +# Time: 2018-02-05T02:46:46.432622Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000043 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `country` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.433434Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000743 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `country` VALUES (1,'Afghanistan','2006-02-15 11:44:00'); +# Time: 2018-02-05T02:46:46.433502Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000046 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `country` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.433538Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.434549Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000982 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `customer` ( + `customer_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `store_id` tinyint(3) unsigned NOT NULL, + `first_name` varchar(45) NOT NULL, + `last_name` varchar(45) NOT NULL, + `email` varchar(50) DEFAULT NULL, + `address_id` smallint(5) unsigned NOT NULL, + `active` tinyint(1) NOT NULL DEFAULT '1', + `create_date` datetime NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`customer_id`), + KEY `idx_fk_store_id` (`store_id`), + KEY `idx_fk_address_id` (`address_id`), + KEY `idx_last_name` (`last_name`), + CONSTRAINT `fk_customer_address` FOREIGN KEY (`address_id`) REFERENCES `address` (`address_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_customer_store` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=600 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.434721Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000150 Lock_time: 0.000141 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `customer` WRITE; +# Time: 2018-02-05T02:46:46.434793Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000054 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `customer` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.446687Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.011117 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `customer` VALUES (1,1,'MARY','SMITH','MARY.SMITH@sakilacustomer.org',5,1,'2006-02-14 22:04:36','2006-02-15 11:57:20'); +# Time: 2018-02-05T02:46:46.446791Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000054 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `customer` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.446832Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.446878Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000030 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:46.446907Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_cs_results = @@character_set_results */; +# Time: 2018-02-05T02:46:46.446938Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_col_connection = @@collation_connection */; +# Time: 2018-02-05T02:46:46.446973Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000023 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_client = latin1 */; +# Time: 2018-02-05T02:46:46.447008Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_results = latin1 */; +# Time: 2018-02-05T02:46:46.447036Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET collation_connection = latin1_swedish_ci */; +# Time: 2018-02-05T02:46:46.447069Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_sql_mode = @@sql_mode */; +# Time: 2018-02-05T02:46:46.447097Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET sql_mode = '' */; +# Time: 2018-02-05T02:46:46.447377Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000264 Lock_time: 0.000172 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 CREATE*/ /*!50017 DEFINER=`msandbox`@`%`*/ /*!50003 TRIGGER customer_create_date BEFORE INSERT ON customer + FOR EACH ROW SET NEW.create_date = NOW() */; +# Time: 2018-02-05T02:46:46.447417Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000024 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET sql_mode = @saved_sql_mode */; +# Time: 2018-02-05T02:46:46.447449Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:46.447478Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_results = @saved_cs_results */; +# Time: 2018-02-05T02:46:46.447504Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET collation_connection = @saved_col_connection */; +# Time: 2018-02-05T02:46:46.448543Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.001004 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `film` ( + `film_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `title` varchar(255) NOT NULL, + `description` text, + `release_year` year(4) DEFAULT NULL, + `language_id` tinyint(3) unsigned NOT NULL, + `original_language_id` tinyint(3) unsigned DEFAULT NULL, + `rental_duration` tinyint(3) unsigned NOT NULL DEFAULT '3', + `rental_rate` decimal(4,2) NOT NULL DEFAULT '4.99', + `length` smallint(5) unsigned DEFAULT NULL, + `replacement_cost` decimal(5,2) NOT NULL DEFAULT '19.99', + `rating` enum('G','PG','PG-13','R','NC-17') DEFAULT 'G', + `special_features` set('Trailers','Commentaries','Deleted Scenes','Behind the Scenes') DEFAULT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`film_id`), + KEY `idx_title` (`title`), + KEY `idx_fk_language_id` (`language_id`), + KEY `idx_fk_original_language_id` (`original_language_id`), + CONSTRAINT `fk_film_language` FOREIGN KEY (`language_id`) REFERENCES `language` (`language_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_film_language_original` FOREIGN KEY (`original_language_id`) REFERENCES `language` (`language_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.448713Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000147 Lock_time: 0.000138 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `film` WRITE; +# Time: 2018-02-05T02:46:46.448773Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000042 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.475076Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.023707 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `film` VALUES (1,'ACADEMY DINOSAUR','A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies',2006,1,NULL,6,'0.99',86,'20.99','PG','Deleted Scenes,Behind the Scenes','2006-02-15 12:03:42'); +# Time: 2018-02-05T02:46:46.475233Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000059 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.475278Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000028 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.476052Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000745 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `film_actor` ( + `actor_id` smallint(5) unsigned NOT NULL, + `film_id` smallint(5) unsigned NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`actor_id`,`film_id`), + KEY `idx_fk_film_id` (`film_id`), + CONSTRAINT `fk_film_actor_actor` FOREIGN KEY (`actor_id`) REFERENCES `actor` (`actor_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_film_actor_film` FOREIGN KEY (`film_id`) REFERENCES `film` (`film_id`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.476211Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000137 Lock_time: 0.000128 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `film_actor` WRITE; +# Time: 2018-02-05T02:46:46.476273Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000042 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film_actor` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.517327Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.039063 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `film_actor` VALUES (1,1,'2006-02-15 12:05:03'); +# Time: 2018-02-05T02:46:46.517481Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000071 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film_actor` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.517526Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000028 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.518376Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000822 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `film_category` ( + `film_id` smallint(5) unsigned NOT NULL, + `category_id` tinyint(3) unsigned NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`film_id`,`category_id`), + KEY `fk_film_category_category` (`category_id`), + CONSTRAINT `fk_film_category_film` FOREIGN KEY (`film_id`) REFERENCES `film` (`film_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_film_category_category` FOREIGN KEY (`category_id`) REFERENCES `category` (`category_id`) ON UPDATE CASCADE +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.518543Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000145 Lock_time: 0.000136 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `film_category` WRITE; +# Time: 2018-02-05T02:46:46.518606Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000044 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film_category` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.525975Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.007012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `film_category` VALUES (1,6,'2006-02-15 12:07:09'); +# Time: 2018-02-05T02:46:46.526071Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000055 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film_category` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.526111Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.526330Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000195 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `film_text` ( + `film_id` smallint(6) NOT NULL, + `title` varchar(255) NOT NULL, + `description` text, + PRIMARY KEY (`film_id`), + FULLTEXT KEY `idx_title_description` (`title`,`description`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.526439Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000093 Lock_time: 0.000086 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `film_text` WRITE; +# Time: 2018-02-05T02:46:46.526497Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000041 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film_text` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.531773Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.003888 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `film_text` VALUES (1,'ACADEMY DINOSAUR','A Epic Drama of a Feminist And a Mad Scientist who must Battle a Teacher in The Canadian Rockies'); +# Time: 2018-02-05T02:46:46.544968Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.013144 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `film_text` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.545038Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000042 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.546064Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000993 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `inventory` ( + `inventory_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT, + `film_id` smallint(5) unsigned NOT NULL, + `store_id` tinyint(3) unsigned NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`inventory_id`), + KEY `idx_fk_film_id` (`film_id`), + KEY `idx_store_id_film_id` (`store_id`,`film_id`), + CONSTRAINT `fk_inventory_store` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_inventory_film` FOREIGN KEY (`film_id`) REFERENCES `film` (`film_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=4582 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.546250Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000164 Lock_time: 0.000154 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `inventory` WRITE; +# Time: 2018-02-05T02:46:46.546318Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000047 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `inventory` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.599398Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.051309 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `inventory` VALUES (1,1,1,'2006-02-15 12:09:17'); +# Time: 2018-02-05T02:46:46.599545Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000073 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `inventory` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.599592Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000030 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.600238Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000622 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `language` ( + `language_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, + `name` char(20) NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`language_id`) +) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.600393Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000134 Lock_time: 0.000125 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `language` WRITE; +# Time: 2018-02-05T02:46:46.600460Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000047 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `language` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.600587Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000109 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `language` VALUES (1,'English','2006-02-15 12:02:19'); +# Time: 2018-02-05T02:46:46.600644Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000041 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `language` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.600678Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000021 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.601819Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.001108 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `payment` ( + `payment_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, + `customer_id` smallint(5) unsigned NOT NULL, + `staff_id` tinyint(3) unsigned NOT NULL, + `rental_id` int(11) DEFAULT NULL, + `amount` decimal(5,2) NOT NULL, + `payment_date` datetime NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`payment_id`), + KEY `idx_fk_staff_id` (`staff_id`), + KEY `idx_fk_customer_id` (`customer_id`), + KEY `fk_payment_rental` (`rental_id`), + CONSTRAINT `fk_payment_rental` FOREIGN KEY (`rental_id`) REFERENCES `rental` (`rental_id`) ON DELETE SET NULL ON UPDATE CASCADE, + CONSTRAINT `fk_payment_customer` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`customer_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_payment_staff` FOREIGN KEY (`staff_id`) REFERENCES `staff` (`staff_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.601989Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000147 Lock_time: 0.000138 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `payment` WRITE; +# Time: 2018-02-05T02:46:46.602051Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000043 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `payment` DISABLE KEYS; +# Time: 2018-02-05T02:46:46.889688Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.275454 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `payment` VALUES (1,1,1,76,'2.99','2005-05-25 11:30:37','2006-02-16 05:12:30'); +# Time: 2018-02-05T02:46:46.911779Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.020782 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +INSERT INTO `payment` VALUES (14872,554,2,15690,'4.99','2005-08-23 09:53:30','2006-02-16 05:21:52'); +# Time: 2018-02-05T02:46:46.911900Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000068 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `payment` ENABLE KEYS; +# Time: 2018-02-05T02:46:46.911944Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000028 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:46.911988Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000030 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:46.912016Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_cs_results = @@character_set_results */; +# Time: 2018-02-05T02:46:46.912043Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_col_connection = @@collation_connection */; +# Time: 2018-02-05T02:46:46.912079Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000026 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_client = latin1 */; +# Time: 2018-02-05T02:46:46.912115Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_results = latin1 */; +# Time: 2018-02-05T02:46:46.912142Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000016 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET collation_connection = latin1_swedish_ci */; +# Time: 2018-02-05T02:46:46.912170Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET @saved_sql_mode = @@sql_mode */; +# Time: 2018-02-05T02:46:46.912197Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET sql_mode = '' */; +# Time: 2018-02-05T02:46:46.912518Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000301 Lock_time: 0.000200 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 CREATE*/ /*!50017 DEFINER=`msandbox`@`%`*/ /*!50003 TRIGGER payment_date BEFORE INSERT ON payment + FOR EACH ROW SET NEW.payment_date = NOW() */; +# Time: 2018-02-05T02:46:46.912560Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET sql_mode = @saved_sql_mode */; +# Time: 2018-02-05T02:46:46.912591Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000020 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:46.912626Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000018 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET character_set_results = @saved_cs_results */; +# Time: 2018-02-05T02:46:46.912653Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +/*!50003 SET collation_connection = @saved_col_connection */; +# Time: 2018-02-05T02:46:46.913938Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.001253 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +CREATE TABLE `rental` ( + `rental_id` int(11) NOT NULL AUTO_INCREMENT, + `rental_date` datetime NOT NULL, + `inventory_id` mediumint(8) unsigned NOT NULL, + `customer_id` smallint(5) unsigned NOT NULL, + `return_date` datetime DEFAULT NULL, + `staff_id` tinyint(3) unsigned NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`rental_id`), + UNIQUE KEY `rental_date` (`rental_date`,`inventory_id`,`customer_id`), + KEY `idx_fk_inventory_id` (`inventory_id`), + KEY `idx_fk_customer_id` (`customer_id`), + KEY `idx_fk_staff_id` (`staff_id`), + CONSTRAINT `fk_rental_staff` FOREIGN KEY (`staff_id`) REFERENCES `staff` (`staff_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_rental_inventory` FOREIGN KEY (`inventory_id`) REFERENCES `inventory` (`inventory_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_rental_customer` FOREIGN KEY (`customer_id`) REFERENCES `customer` (`customer_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:46.914116Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000154 Lock_time: 0.000145 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +LOCK TABLES `rental` WRITE; +# Time: 2018-02-05T02:46:46.914183Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000048 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798806; +ALTER TABLE `rental` DISABLE KEYS; +# Time: 2018-02-05T02:46:47.153486Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.227548 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO `rental` VALUES (1,'2005-05-24 22:53:30',367,130,'2005-05-26 22:04:30',1,'2006-02-16 04:30:53'); +# Time: 2018-02-05T02:46:47.226856Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.069531 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO `rental` VALUES (12370,'2005-08-18 07:57:47',3343,503,'2005-08-22 11:32:47',1,'2006-02-16 04:30:53'); +# Time: 2018-02-05T02:46:47.227082Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000096 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +ALTER TABLE `rental` ENABLE KEYS; +# Time: 2018-02-05T02:46:47.227144Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000029 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:47.227205Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000028 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET @saved_cs_client = @@character_set_client */; +# Time: 2018-02-05T02:46:47.227250Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET @saved_cs_results = @@character_set_results */; +# Time: 2018-02-05T02:46:47.227271Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET @saved_col_connection = @@collation_connection */; +# Time: 2018-02-05T02:46:47.227300Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000021 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET character_set_client = latin1 */; +# Time: 2018-02-05T02:46:47.227328Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000015 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET character_set_results = latin1 */; +# Time: 2018-02-05T02:46:47.227351Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET collation_connection = latin1_swedish_ci */; +# Time: 2018-02-05T02:46:47.227373Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET @saved_sql_mode = @@sql_mode */; +# Time: 2018-02-05T02:46:47.227395Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET sql_mode = '' */; +# Time: 2018-02-05T02:46:47.227741Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000335 Lock_time: 0.000245 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 CREATE*/ /*!50017 DEFINER=`msandbox`@`%`*/ /*!50003 TRIGGER rental_date BEFORE INSERT ON rental + FOR EACH ROW SET NEW.rental_date = NOW() */; +# Time: 2018-02-05T02:46:47.227779Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000022 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET sql_mode = @saved_sql_mode */; +# Time: 2018-02-05T02:46:47.227807Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000017 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:47.227828Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000013 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET character_set_results = @saved_cs_results */; +# Time: 2018-02-05T02:46:47.227848Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000012 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!50003 SET collation_connection = @saved_col_connection */; +# Time: 2018-02-05T02:46:47.266712Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.038842 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE TABLE `staff` ( + `staff_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, + `first_name` varchar(45) NOT NULL, + `last_name` varchar(45) NOT NULL, + `address_id` smallint(5) unsigned NOT NULL, + `picture` blob, + `email` varchar(50) DEFAULT NULL, + `store_id` tinyint(3) unsigned NOT NULL, + `active` tinyint(1) NOT NULL DEFAULT '1', + `username` varchar(16) NOT NULL, + `password` varchar(40) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`staff_id`), + KEY `idx_fk_store_id` (`store_id`), + KEY `idx_fk_address_id` (`address_id`), + CONSTRAINT `fk_staff_store` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_staff_address` FOREIGN KEY (`address_id`) REFERENCES `address` (`address_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:47.266800Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000043 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +/*!40101 SET character_set_client = @saved_cs_client */; +# Time: 2018-02-05T02:46:47.266997Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000151 Lock_time: 0.000142 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +LOCK TABLES `staff` WRITE; +# Time: 2018-02-05T02:46:47.267077Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000047 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +ALTER TABLE `staff` DISABLE KEYS; +# Time: 2018-02-05T02:46:47.269149Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.001498 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO `staff` VALUES (1,'Mike','Hillyer',3,NULL); +# Time: 2018-02-05T02:46:47.269273Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000053 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +ALTER TABLE `staff` ENABLE KEYS; +# Time: 2018-02-05T02:46:47.269314Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000025 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:47.270951Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.001606 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE TABLE `store` ( + `store_id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, + `manager_staff_id` tinyint(3) unsigned NOT NULL, + `address_id` smallint(5) unsigned NOT NULL, + `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, + PRIMARY KEY (`store_id`), + UNIQUE KEY `idx_unique_manager` (`manager_staff_id`), + KEY `idx_fk_address_id` (`address_id`), + CONSTRAINT `fk_store_staff` FOREIGN KEY (`manager_staff_id`) REFERENCES `staff` (`staff_id`) ON UPDATE CASCADE, + CONSTRAINT `fk_store_address` FOREIGN KEY (`address_id`) REFERENCES `address` (`address_id`) ON UPDATE CASCADE +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; +# Time: 2018-02-05T02:46:47.271161Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000176 Lock_time: 0.000166 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +LOCK TABLES `store` WRITE; +# Time: 2018-02-05T02:46:47.271227Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000047 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +ALTER TABLE `store` DISABLE KEYS; +# Time: 2018-02-05T02:46:47.271380Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000137 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO `store` VALUES (1,1,1,'2006-02-15 11:57:12'),(2,2,2,'2006-02-15 11:57:12'); +# Time: 2018-02-05T02:46:47.271483Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000053 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +ALTER TABLE `store` ENABLE KEYS; +# Time: 2018-02-05T02:46:47.271898Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000377 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +UNLOCK TABLES; +# Time: 2018-02-05T02:46:47.272643Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000710 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE VIEW customer_list +AS +SELECT cu.customer_id AS ID, CONCAT(cu.first_name, _utf8' ', cu.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, + a.phone AS phone, city.city AS city, country.country AS country, IF(cu.active, _utf8'active',_utf8'') AS notes, cu.store_id AS SID +FROM customer AS cu JOIN address AS a ON cu.address_id = a.address_id JOIN city ON a.city_id = city.city_id + JOIN country ON city.country_id = country.country_id; +# Time: 2018-02-05T02:46:47.273366Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000688 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE VIEW film_list +AS +SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, + film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(actor.first_name, _utf8' ', actor.last_name) SEPARATOR ', ') AS actors +FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id + JOIN film_actor ON film.film_id = film_actor.film_id + JOIN actor ON film_actor.actor_id = actor.actor_id +GROUP BY film.film_id, category.name; +# Time: 2018-02-05T02:46:47.273786Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000352 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE VIEW nicer_but_slower_film_list +AS +SELECT film.film_id AS FID, film.title AS title, film.description AS description, category.name AS category, film.rental_rate AS price, + film.length AS length, film.rating AS rating, GROUP_CONCAT(CONCAT(CONCAT(UCASE(SUBSTR(actor.first_name,1,1)), + LCASE(SUBSTR(actor.first_name,2,LENGTH(actor.first_name))),_utf8' ',CONCAT(UCASE(SUBSTR(actor.last_name,1,1)), + LCASE(SUBSTR(actor.last_name,2,LENGTH(actor.last_name)))))) SEPARATOR ', ') AS actors +FROM category LEFT JOIN film_category ON category.category_id = film_category.category_id LEFT JOIN film ON film_category.film_id = film.film_id + JOIN film_actor ON film.film_id = film_actor.film_id + JOIN actor ON film_actor.actor_id = actor.actor_id +GROUP BY film.film_id, category.name; +# Time: 2018-02-05T02:46:47.274145Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000324 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE VIEW staff_list +AS +SELECT s.staff_id AS ID, CONCAT(s.first_name, _utf8' ', s.last_name) AS name, a.address AS address, a.postal_code AS `zip code`, a.phone AS phone, + city.city AS city, country.country AS country, s.store_id AS SID +FROM staff AS s JOIN address AS a ON s.address_id = a.address_id JOIN city ON a.city_id = city.city_id + JOIN country ON city.country_id = country.country_id; +# Time: 2018-02-05T02:46:47.274921Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000722 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE VIEW sales_by_store +AS +SELECT +CONCAT(c.city, _utf8',', cy.country) AS store +, CONCAT(m.first_name, _utf8' ', m.last_name) AS manager +, SUM(p.amount) AS total_sales +FROM payment AS p +INNER JOIN rental AS r ON p.rental_id = r.rental_id +INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id +INNER JOIN store AS s ON i.store_id = s.store_id +INNER JOIN address AS a ON s.address_id = a.address_id +INNER JOIN city AS c ON a.city_id = c.city_id +INNER JOIN country AS cy ON c.country_id = cy.country_id +INNER JOIN staff AS m ON s.manager_staff_id = m.staff_id +GROUP BY s.store_id +ORDER BY cy.country, c.city; +# Time: 2018-02-05T02:46:47.275182Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000214 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE VIEW sales_by_film_category +AS +SELECT +c.name AS category +, SUM(p.amount) AS total_sales +FROM payment AS p +INNER JOIN rental AS r ON p.rental_id = r.rental_id +INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id +INNER JOIN film AS f ON i.film_id = f.film_id +INNER JOIN film_category AS fc ON f.film_id = fc.film_id +INNER JOIN category AS c ON fc.category_id = c.category_id +GROUP BY c.name +ORDER BY total_sales DESC; +# Time: 2018-02-05T02:46:47.275551Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000320 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE DEFINER=CURRENT_USER SQL SECURITY INVOKER VIEW actor_info +AS +SELECT +a.actor_id, +a.first_name, +a.last_name, +GROUP_CONCAT(DISTINCT CONCAT(c.name, ': ', + (SELECT GROUP_CONCAT(f.title ORDER BY f.title SEPARATOR ', ') + FROM sakila.film f + INNER JOIN sakila.film_category fc + ON f.film_id = fc.film_id + INNER JOIN sakila.film_actor fa + ON f.film_id = fa.film_id + WHERE fc.category_id = c.category_id + AND fa.actor_id = a.actor_id + ) + ) + ORDER BY c.name SEPARATOR '; ') +AS film_info +FROM sakila.actor a +LEFT JOIN sakila.film_actor fa + ON a.actor_id = fa.actor_id +LEFT JOIN sakila.film_category fc + ON fa.film_id = fc.film_id +LEFT JOIN sakila.category c + ON fc.category_id = c.category_id +GROUP BY a.actor_id, a.first_name, a.last_name; +# Time: 2018-02-05T02:46:47.275583Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000014 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +COMMIT; +# Time: 2018-02-05T02:46:47.276034Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000416 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +FLUSH TABLES; +# Time: 2018-02-05T02:46:47.276070Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 10 +# Query_time: 0.000005 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +# administrator command: Quit; +# Time: 2018-02-05T02:46:47.278863Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 11 +# Query_time: 0.000050 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798807; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:47.296247Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 11 +# Query_time: 0.017352 Lock_time: 0.016992 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +ANALYZE TABLE actor, address, category, city, country, customer, film, film_actor, film_category, film_text, inventory, language, payment, rental, staff, store; +# Time: 2018-02-05T02:46:47.296332Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 11 +# Query_time: 0.000008 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +# administrator command: Quit; +# Time: 2018-02-05T02:46:47.339042Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000053 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +set autocommit=0; +# Time: 2018-02-05T02:46:47.339350Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000188 Lock_time: 0.000133 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +UPDATE mysql.proc SET created='2012-06-05 00:00:00', modified='2012-06-05 00:00:00'; +# Time: 2018-02-05T02:46:47.339613Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000172 Lock_time: 0.000046 Rows_sent: 31 Rows_examined: 31 +SET timestamp=1517798807; +SHOW TABLES FROM mysql; +# Time: 2018-02-05T02:46:47.339852Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000060 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE DATABASE IF NOT EXISTS percona_test; +# Time: 2018-02-05T02:46:47.340019Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000089 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +DROP TABLE IF EXISTS percona_test.checksums; +# Time: 2018-02-05T02:46:47.340698Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000603 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE TABLE percona_test.checksums( + db_tbl varchar(128) not null primary key, + checksum int unsigned not null); +# Time: 2018-02-05T02:46:47.363917Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.023112 Lock_time: 0.023065 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CHECKSUM TABLES mysql.columns_priv, mysql.db, mysql.engine_cost, mysql.event, mysql.func, mysql.gtid_executed, mysql.help_category, mysql.help_keyword, mysql.help_relation, mysql.help_topic, mysql.ndb_binlog_index, mysql.plugin, mysql.proc, mysql.procs_priv, mysql.proxies_priv, mysql.server_cost, mysql.servers, mysql.tables_priv, mysql.time_zone, mysql.time_zone_leap_second, mysql.time_zone_name, mysql.time_zone_transition, mysql.time_zone_transition_type, mysql.user, sakila.actor, sakila.address, sakila.category, sakila.city, sakila.country, sakila.customer, sakila.film, sakila.film_actor, sakila.film_category, sakila.film_text, sakila.inventory, sakila.language, sakila.payment, sakila.rental, sakila.staff, sakila.store; +# Time: 2018-02-05T02:46:47.364402Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000230 Lock_time: 0.000168 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.engine_cost', 537960405); +# Time: 2018-02-05T02:46:47.364574Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000079 Lock_time: 0.000035 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.help_category', 2621154011); +# Time: 2018-02-05T02:46:47.364677Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000063 Lock_time: 0.000032 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.help_keyword', 2726331373); +# Time: 2018-02-05T02:46:47.364760Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000053 Lock_time: 0.000025 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.help_relation', 3304891083); +# Time: 2018-02-05T02:46:47.364834Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000048 Lock_time: 0.000023 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.help_topic', 1178478843); +# Time: 2018-02-05T02:46:47.364908Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000047 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.server_cost', 3229560508); +# Time: 2018-02-05T02:46:47.364980Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('mysql.user', 3100833990); +# Time: 2018-02-05T02:46:47.365052Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000047 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.actor', 188518946); +# Time: 2018-02-05T02:46:47.365120Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.address', 1939802661); +# Time: 2018-02-05T02:46:47.365189Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.category', 1662287106); +# Time: 2018-02-05T02:46:47.365261Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.city', 3197559470); +# Time: 2018-02-05T02:46:47.365329Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000045 Lock_time: 0.000020 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.country', 321994950); +# Time: 2018-02-05T02:46:47.365397Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.customer', 3588889237); +# Time: 2018-02-05T02:46:47.365468Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000049 Lock_time: 0.000024 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.film', 3383030362); +# Time: 2018-02-05T02:46:47.365537Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.film_actor', 3046967589); +# Time: 2018-02-05T02:46:47.365605Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.film_category', 2595914572); +# Time: 2018-02-05T02:46:47.365673Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.film_text', 3517545183); +# Time: 2018-02-05T02:46:47.365776Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000082 Lock_time: 0.000055 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.inventory', 1667122127); +# Time: 2018-02-05T02:46:47.365847Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000047 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.language', 4248231622); +# Time: 2018-02-05T02:46:47.365917Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000047 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.payment', 3932143932); +# Time: 2018-02-05T02:46:47.365984Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000045 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.rental', 3621860071); +# Time: 2018-02-05T02:46:47.366053Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000046 Lock_time: 0.000021 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.staff', 1306245126); +# Time: 2018-02-05T02:46:47.366122Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000047 Lock_time: 0.000022 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +INSERT INTO percona_test.checksums(db_tbl, checksum) + VALUES('sakila.store', 972255196); +# Time: 2018-02-05T02:46:47.366214Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000067 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +commit; +# Time: 2018-02-05T02:46:47.366276Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000019 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +rollback; +# Time: 2018-02-05T02:46:47.366293Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 12 +# Query_time: 0.000004 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +# administrator command: Quit; +# Time: 2018-02-05T02:46:47.407542Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 13 +# Query_time: 0.000648 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +CREATE TABLE IF NOT EXISTS percona_test.load_data (i int); +# Time: 2018-02-05T02:46:47.408859Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 13 +# Query_time: 0.000273 Lock_time: 0.000159 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +LOAD DATA INFILE '/tmp/load_data_test.24252' INTO TABLE percona_test.load_data; +# Time: 2018-02-05T02:46:47.409066Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 13 +# Query_time: 0.000088 Lock_time: 0.000037 Rows_sent: 1 Rows_examined: 1 +SET timestamp=1517798807; +SELECT i FROM percona_test.load_data; +# Time: 2018-02-05T02:46:47.409155Z +# User@Host: msandbox[msandbox] @ localhost [127.0.0.1] Id: 13 +# Query_time: 0.000007 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 1 +SET timestamp=1517798807; +# administrator command: Quit; +# Time: 2018-02-05T02:46:47.412871Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 14 +# Query_time: 0.000078 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798807; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:47.413010Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 14 +# Query_time: 0.000047 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798807; +SELECT MD5(RAND()); +# Time: 2018-02-05T02:46:47.413118Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 14 +# Query_time: 0.000008 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798807; +# administrator command: Quit; +# Time: 2018-02-05T02:46:47.416484Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 15 +# Query_time: 0.000050 Lock_time: 0.000000 Rows_sent: 1 Rows_examined: 0 +SET timestamp=1517798807; +select @@version_comment limit 1; +# Time: 2018-02-05T02:46:47.416539Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 15 +# Query_time: 0.000023 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +SET AUTOCOMMIT=1; +# Time: 2018-02-05T02:46:47.416844Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 15 +# Query_time: 0.000283 Lock_time: 0.000176 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +REPLACE INTO percona_test.sentinela (id, ping) VALUES (1, '1dcc1893f940d4b0615d8cf540d52e8c'); +# Time: 2018-02-05T02:46:47.416862Z +# User@Host: msandbox[msandbox] @ localhost [] Id: 15 +# Query_time: 0.000003 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 +SET timestamp=1517798807; +# administrator command: Quit; diff --git a/src/go/pt-secure-collect/testdata/slow_80.log.sample b/src/go/pt-secure-collect/testdata/slow_80.log.sample new file mode 100644 index 0000000000000000000000000000000000000000..3b383463817f41e052ed859e3d7c7f3ce4bf2a9f GIT binary patch literal 103949 zcmeHw`*Yez_HTZj{1v)2b<56P;^-~pDOZKqB;k$?4&cmWzqJJzWQQ9bULKiv|N8qm z-D*9MKoV-4WOq|D36ffmbGrMyAFn>or{1eCgT>_4^l|x5`unAI;=H;Y&-jT^MfvD0 zmgD*CRKbN4U41#3-z&#gkDU*f%K3acUC+j=N2TK}zIqGg_}%s8ix(%#ay3}2ypi(P zc=h@8S$FuLJj@rXQ$^Da(^8b1+4!5XoDaWvIQMEbeR#z#@K^ShgW2eI{*9eFp;6De z)t9RNQnk9OernpMrg5TbR@JTk9b;~m z-s1K9`4aD+`tSQ6@#7!LYh^MY4kn**UHPAXC`w~=%HD3^&JSyE@z`6jcc>>S{%E$M zT;elhCskEx&;MHXmiVSqMOFBb_iZp8&pbR%eb%XW6?zPCHGMeKEX{G;YE?CU!%GGu z3>z<3i@|EXP=-J=z&us1$FqC7yc0s#HKjvnJ{5!?*5g$Mgu11g+WrulX>+LAdM1Qg zp*dW76K}XuUcbh+pzYJ6NyJ)ECgbUNrD&NzT9z&uNJBR=fh@LAJMUY6D6jtZzf4ub zdapO%HJbImy;2&@X6xdO(&^T^H=RsCUE7unsH%g;Jk5^Gv0g#(Om}|>t+e&3T0hu& zHB8$su_@DmG^&}?SZq^v>X-HNu5wZ9*51@Q_2U;Ai_1Qz`BxzOO05G2xfv?g1SNLdT5%gb7~(Q5Y2 zTg@i6JAM)tQcmYVf~)>yYoS@Ys&|z2>aLm#Jl&AK)DJYrM!4U*jjMX^@2zGX6C3=_ z1+Hbu23NXJLZmlG|9bhPLYS)@wb zNx}|;L+`3}L3>{OtSI8w*-^9AtKD>4y^pm^EFzHqzt`KXJiEnG%P1gExk@xGBJ&XB z%~rQgJ0pPbjdFVU%gRpxa@BPOAUr`+`6^EZ^enGrV_A;u8P^TjhQ9N5z1FS!YdgN8mE-4%(kBaLUm;8!+v*F2 z3$b;EgC1TX?gfw>$#ggf_}V8zzZwnWyV^D(uL=Ps>NF<$m>ngnuB^ergVwgl`To8^U2X|Hg|;QLHf)d zRv_G*!m`}4s!Ctm+7HYfZB6=&8(`aVRe(5m#5(?&cp_&OTsl>}*?M|>)C8mWl$SqX zFfnq@YDzzbGpf>$xc~=Td8Hq7zVN^{OF!mfF@Grikavs0Y*qRxA^$J^sK#vMeJlNx z+JrO&F1+l&`uvH4gTA+7GG5sSauWeP%2(V|hu)R428Y+YJ_z8GLj z4B(V2AVS-^QNpR8u7vA9i3n{Q@~w_fBtm<%+%u(Us7LZA7f!(gnpGuB(Kg~hWa|+> zv=r@Fvh^lIlRe{cDVi^3E=ZF^%}q;WBuW}Ba$B1=EI(U}9sS$+=&_H;y4n5hWPTgi zXqcQk^6tPch4slb%6*XM^SJ?xXJnzFFuTA&LiRHD&hZQ~($~SHhyT|wUE%mx(_ZWt zcsKSYqrNY*e5%*lkmx_$)Y^zVz^|)Tv-=+ZUerF}@As`6cCyjD>DF=lN4@?#{^``= zmcGD`tHyb|6&%sS;N1uw(DQG{vwBzJ5p)pTK?A}|>?pX#?+C~8r$pc9-yJ>W-xU8Y z{z$wh9GQZkArt6L%@pQ8C;L+Cz2`48o$@5vX~!=gB^U(}oaWc7GNCQU`B+vwi-b8%hc5mP;QOW6!wVjL(}+DhVE$&X!? z#4hHL`^PhiZ1!m`JR9rTa(s`#=wLCkEllL3_pkXZ=2wU@s>uLqmKNL`={2xj>GJ=9qYAco#2C%X_JTQ@DLZ^la}KNTu$9c!oeeD| zw|2AephbYoJTm?#aEJstXCB zFGhP>y63(kV*U)?8!%DxW7)Ff4%I`Y7|7Om9J?wz zibj)e4^L-+4~u!W#^ZqN$@Xs;vPob}xRK8E9Qm>G`av;Jj_Fm^s_fmYS7qBT;vOEh zlE06GC#uQ3y=e;D?{&KctK>~PYO7}4bNS#6Vc{Qc#{LT3CbZ@Wi~j6>J-83FC9)KU z3^^RlEXcz84ZHuKHy9!`7krRwSul2YYYo_O*+4R?@*l8FU$B#8nyo^(O96SMlXs^*o<4hGh;6-k;t-d zr#?blW6ya&p1`y>K@|xIC<%ufwA%Gz29%`xpEp`BawI=gHTj~SE?W?Y ziGFFThZ4v(V}7#jT2)<_?#OUu3w_(g`kX0(Ro#~Es`|MsT2gVQJHv)im}zP!_gfSL69boOaFMj6cx!XKU0rxEuL0v6X7Hvxewd{oTL-AqTlJ0YHWy8Le z4}TkroR2IMYE`}&QT@p{F+A{r`dDuDyH8pUW2?Avnh#toJFoBb$y&Utot}H#}s>3Ui7Am?Sbr z`T+36`M1YHoYA#pJ73hFCGx^mE$PKgo=8Jwd6hX;R9C(?;wNK_uBOS3KvNG}nz5XU z>Kf8(ZfLIT7}7Xnj4tSMeDNZdpOjZiW8|B&m?tb^6YzoJYUP1=n_oMIXKZKHui=UP z&|G=?GJa5UeW1z43fxfr8-$4AB2#;Vo0N~p#KsZjQY(~8jo*HXZ!uMvm!^qo+TXYG z&SANIm$KoDFnZT;q|?BkhS8hy^9iJv?~kef3443VutV3>rHgro#Xw08C|?!Ub=hH- zF%F0tg=EDPbqblnP>vDq%hLW^gC-?0%rC6t*Xbx*&_qfNnzlEY4@RZyX>>lXSEKn~ zv(gWO>Pz7=rJqC5v!x%xB&*U-`8O@l!|K)`cE9X0?yMim7h>uAd+Nt57bL6pP1}2z z^p+D;XDy9&_9$N7we+)m+)Jrp^dC|U$wwJ6=+fx_p(-K;8<7>-dKe7LFV*F85{pM9 z?XO8G|9@JlOG@8${hUH2FN&#p^w{C};WJhKNX96B!?Szi6PQq4nGte?n7H^x&ja^Dt4RTY0Dt;0RKY;?R+(V zSu+`g-mb<($_C5jU-QL?JEI5d)n}AE8V`AfJNl5J@feK!ER1c#5aY+1^4n2w<6(@@ zDiQEXr5}oxJQSbOV+A~*JHB9kAn z!SglBnN6r4U70UW^|dqEy|k~Kp0ZS^)!jWJc?Xk1_5$YsO)q4pCB}5-EgEA&mCg=b zbDgUE{wA^=i!s;}K$f)^R8{H0dq1?r+|{JpM_lcYuH+4S!M%q%SSU(`TwK54EvwnZ znoE+O)vtDbY^S6mBx)?ts2zpQahZ{CCIWFc^3)rR*HcF6MJyH@vigh~Pa~EdD6$>X zm?9esVwEqI&~I$%OBN!{lK5Bb-2=b3XJ6r87n2miLg?q6j{z&+sDkdt{l4S4Mb5*0 zX1R0MEz^K;OQezPsMi?jkVrP&12l_}UG6*vyJWIyQdKeO5jY3Mz?Rw17Yj=bJf*V< z=^pf5X4d5d6?{XQ$!fZNZ<-0^!*3PL33rrcGeSusXXGOj*B7FLu%AN>iW?)0?7FCV zv1QB%UQ|I@Ee&lwVozW)HqTBEQ@=M~lXX2ey{EJ)VlAnJya<~qLi9UW8F?r^_JAor z13f`2_pRRE^+BmEQX6V8KM2y%1T`*Pu0Gb|*jp zE4^~nf#Zgdk?eQ7qXxI)C>N*)*uw`=_eImgls1NJf|KWSf$z#E;o<->Zs%E$#W4WmrXll|;hyhSKsr;2()dcBoBofuJ|p5T%-21IX8 zSiP3KB=B@fJv%4k>3F4RnLwIl%q{6a9;(U=RYrMJ>#$a=q)GZ=P6!`>>uLb)Zkau& zrdy(@PCB@%Y;IL*)!L;d)Jb2p*>w16SFNL$;kcyn7lMkapqzVg-QA zc3u^j&k)Ghuiss^-qbEnSU(f=2)WorNjaF+qB?$lFm*&8fY zx9EP^1NRxvM`wyb5~&LJi;khcDwGU#s^};K|5DXos#aIkPfh#OWMCIBKUn~5sfOwe zu>I1~s7E{evRqH8jXjTJIoY_9je^4UCkvn;JFsKF1@2FNQCO?hqKqa#tX8(5wI8fv zGr#Mi!wu>u)-$KnHH!vpOk{eYMNJl=~jov%WBoBI)DeZQVuZ!lWyH+w)?(Ot)D7uS<%mK!I8-Ilwztexj>O$!P;F&+ zjTsEt7jJfRI?zi)m(B#_Dr7zrXx6Uk9oF728zlJzL~b=QAEcPm_)N`)tFSnlNf_nE zzW8t@!vL~@(+uenmuqLMhsF4IES#}F7_x?#tg0vb&EoM=Q&>a<2b@1`z+w<9_(jk#w5IY&O4mvw?^+*iXXmgUuddA8T=zwI?j;XMWE(@Q!s_ws_)25vF!Ol11PKlZ@ z>C4*6;kzidX>Xd5ZJV`*-D(L3c`8IGn|2_Dj1eL%;?W3Y^p}3dl7F-x2MZo0*q4QV zX@cc39_NqHBZ2K0l1S_v!9=qdQ*N+$5;b~@J!wdNR;cCKPCmk$4v+^k+@Z!An?hA6ReYlVN;wKw}AS^UGM{k_2(#J3{k2I#Q z_<|U#2pzdkY1iM@+thTtqp+u85rj{TN&_`?Q@^N(vHR)F+g9yhE~9B&8M_7%Wm-|M zP!_Gzswrkw&C&O#brC8M*))0BH{dH#o=&bRaat~jLIDP@Yi5bCk~A1j(YLl=X3fZCnKhkxpL@Vs{ z4Vv05U9((C{77J>ujFA!x^9=Kx||N6YNaq-5T^YBj8UKvz#<$8ZEq#^ zg>Xh#QcZN0k86^MF43KAcB8w}SF>tmhfNh@%UdS90KYLz>4rnIDqH#}#BWTqL{@A1 zE+zAoTob?szhUYI=QTo6*{PtVF&eJ32qi3`L$aDb$j;8E{5_G%7SqL8;~lbvlDX>IH&{+NW;7P&R9xbX{2cZ-gRR1e9kzU^gug_X^gZK~3o6jPN%cFC4$ zE>>wej%?jDPZ~=Z>dAmBz$Ojo#YN+rG6Y-OlADYK^KzU`G8m&QQaPV5)&u4Ea=?GR zII2{gP1`FJG~LSNn1)u>q{oirNL?yD=lQuMK(wTTm?Qq67>GrQW8 zdtt!S^Y9$FGIi-Z$2_chCYE0jwquxvZ0*dE4rZL~2r#3Z=k6YbF5$2k%#sE{^Hj|? z2qIHfx*tq6Wyd_kH8g>U0xZX{jQx{G)72TtZLT0?6k<81Wy%(O-KuQOdV}Sxm#g`d zs`7Fr%|FamrqY-W9<}f?ZHdfyC@r|fn-0d4&@V{Zp)m0U1!aZvE1!mlfE8HzDN<(k zNF`?@HMD|9A8EY2?hvIES6**~zxoROO_88+$K+G-*~rW#oP^=T9QT9YiBVBB9Sc7& zO=o;011Kewhvs#|>o^o2c-S>4Mz#QU>YfD?{*OFZ9Po(UW{x zmi%JFyeSr60sFFHI{N0l)>vH9%F0ML~j$^(aIG8zk_ zxHS86Ko<*0Ffe>bwmBkCCr7+A&Iy_+qC{IS2 z2x9(E=8OBIidDfafi2opbp2FCRFj>Me=O%z&z65o+bL1ZEqy;c*>cG*03jHyaE@<= znMGB`o^KE&yn zwyR3d5R*;C z1&(x%r^{B^W6L0Qy#oaV{Y=X!VMQz7QB~=i|FE+j2U)D|LLke}l$7pIj?Z%1at>y> zxBLr5HYG?{=+2EptONw$*CKxjSms>af_DbPrKtG_6A@II^)}JoXb>(*ct^d0Jzx%-m z$N}AUZ{2~vM%@VyXwn)5s3XZwSE=64RzI znFo0J67%-FN=@|uUNMve2--mw+=;H!pHU_GeDOpZL0WjGcKW;L<8&9Ub zxtMkl`M)+mU|ztlGxrv}lA+m8%xJ@)U$ zy<|Q1hGTR&J2oqk&JF=+N9Ku(?tJ7Io_MqS)#ojVF5(pdDi&yRiMD}M#1yK{5-Bv| zMOONYG>?0Y%;7yxDqseDn_HoNNBqOAQblwef%R{H2DN!|*#XfIf2h0C0erJJ`q9 zAPD$eZ*`0=^03yUv?}gAN8t{_-eT<0A@5s1QaVF)_MsDRyw78FNkjWOaV~sI0NoQA z*Tp)I8^ZlHeB9?h;ujI>6@vWP07w2OLiQD_dt8;utmJuHGZ?CX5go|pDNiixUr9}}K zvZ4qG{rN2L08YL=!j$crjJcFKa0RUIj-{3;zMLjRBf&#WnZQy)bjR^T zyZWSDG@7kW?S?39O{qVOhe$mdOb5#RP8ld~Jzj)csewKYl&b+z%`s>xf)13wKF^gY zjQYx(!3r!E*Sp>T<@y%Nc&2ngOwR|i!Du{~!4ow6!e}p9?qR`aMAfbwsf_+t@k{4F zIn|F7=t`12M_d3%Y=#TKI5qXm;5x@TK#dsWQ6!vSrDiQ`5Z_F3pU>81fTwS@Hdqe)RJ~Mhh*U4GFG_AEd~N-%Ow0#t4H! z^c-otF!OEVwVQ7g=aZHKaU}uSK{zpXfON|!)bSJ%Q!{LtoH#^N4rUA}Q6ojNAg!9R z?Y{}_rx!w5fFJ9YE4y$eicrfYYDs<^0vobqrX7c6yrAtmr>dLDl66~kWXqQaF8vat zZ+#^{SJrI=FUnrq-!r}qLWW_;&XUvI6q-~@pi1G&yi@ZQj%;sK(%R286R!m+_$K3& zZ*MM93h>V^D>v1rJZSccUd+WKtmu_~^mL@6$JJw_Q@aWr4f&NiOq*Gv(NCIT5cA`v z=>b)#tc1^69yS69<;SE*Pj*bQ5e{Ji7J}4d*~%*`;VIWzm}DUw(2#w67envP-ck06 zg*c274TsbA3ChtwfiS|6o1Zb6NJf_)sVLnUQotT-nUEr72U57H6s}ByMVv8>XJ6s6 z2y0OV$4mj7A`Wp4H^=I@nzJ00U^zKd%^(LT$npB#dS(pxP`&hPh6JER?4P9J1$9LP zKwKFmJ9Q+HX~RIg;WrN7?59A*YeR}B!?qhO4(X4Lyd|IQH+&nxw5fawIOFf)BO{>a zP&nh|w9iZnX_Upy!Pr;2^s)$AYVaenndF#*0}SVK34&6z}=Bms!NwwP*Fm%i#*QVBLO`uW-Su?w3F$krIqtsV+y)G{$3TB z1vtzsns793aGQOKOk$D^={d5RkzxtdU_z0@Y6MbpaT)*!DfQ>#G$DZb84cjHBqsq= zPtk)inh?&A&m7ff_YKh-h~oxp-^%GOBK!&)RlEaYZ31m*!kdt_Ic zD#UD1>`ZbI6O?t5?Msa_n}@+8g%bO5J^m3>Ba7FX6csD-1^b}N&)pq+Q>Mq#5B8?# zvZ^8|DGFl8sz&lGQ~_yhsd zrm8E>Gl3%Z8R81_vqmve=)DZ-n=cJ#BKAgqY;>lQ@5&N-G=v21Q~kt7u2$jh$XQ81 z2adb;CpV|uqocm3bh+oCdRG8nez6A~uI;K+LxS!=Urmu;OBoVk`gH(iDD{wb?T~Mm z#XytfW1)5XONh+WsYyLGoTxlxE2?#hNayS(4=&2MNbcXHtB&;AU>WE^7J*)|EMzEE z(6hot*9)GN z4_X{S;2@s4%W#lZDjOV)f@P z{X!s1Z^m%og+5GM&U=-9A?O|HTpGod<%VIzCfwiV8)YkKn+KXwQxv3v8Dd?Dn@ zH-}4)jtr1XWly%PrOmCCV;@=a3q0xvtrHmM7bQx*VB&50$ts7XopInpW+_CcWlx;T zG4-}3JIh}EnM%I68vJ~csVZoRY0=&F7dgny5&=XOrg-RzQ zy;QZ$*=Xz~pbSm)p;4X{8uyLOhV4`kkH?J8++=TyGUPBtM-!-Fj7Dv86;|rqA#=_N z+M-q^_eHf`%Scgx_V;OI;)`n72&`0JLQX`Y8p^PnaAX*0xKlwae0Ui_VdUq~+2wta z<{;Bpveu}&Qte+rTIyEHX~3tI;UKX=Hjr|An*+$)aUTpK_$j4BB%3zG^wCiL5c*iU z_1eF>TQ}h-kRI)goa3auqttfaf&!s|rK3Px&4UB^3952)bg{5gaUjKj&z6B9-vz15 zrus1y#1(Y08**B+Imo(XofK{xsfn$dvmOUotnWe~%MZ&q>}Ho`z~>V#JC70*{uHEc z!w6ZxfX~5pr8Bw1g1rH+Z^l1UGHbUpa2->2=nA zQyvD()pT1oA^izXvPir1^VDs14FmoUy#ev&)*a@5{k zyAimxr-uQs$GW()C6>d%K+vI*xZGN#Fe1s#vj=oBtEdlMe*c1Q!;d06cg%EU+YnTbq`QgSFTro%lzgydfP6_`A9brr>K*q z?4w1D-e~0}+X#d_DA~S>O=*tvLoUtvEOV!rlP1kg(FNe%TSOA|G7}ghJTr&f_GH3~ z5E@9>hz3Ydz`}Yq{^#23`M{D8k$}6bI76@ZiAY?;NWN)9tU*>J7i&a%WKzgT6`<&i zftV71XJm?gB(cUp?0{@Ll;)&tGtJ(&0AG@|1I_tZI}}36WyYU?wKM1nuy*vusmhM{ z*3t^&m!ka}tepWFvi3yj9Au<9$lp79Q90I;)22sK)>y)ye|1-39k715g5}4K9Gdkr z)Z}OVj#iaiJqg)ePD)>dQqy0E^;1<)$-<1INsU1UP4Zd)$432+pz&xAWjR*QYn|sE zFNR{?_9v)9W1 zZ8e$#1UfY!{z~r|jbQLx60Xidcj_C1e@hFIon!@n=@k3npNtgx zrAv`R%rP7}_b3i|Ld%k_iWC05zSo9YC(_l2#dzppDYBRG28nc<{}Q*bZiaN4_cg32 z@7k@K>z=<;{C`*{l`VUQUyE#;PW>8oy)OCyV@L5d%Em1H1?dB!T-M)q`RZcW5wNfY zDF78G`3j1SJBeP4KZ_m_AIpx|+NNJ(Iv^bLKWy=`G3-ml{bC%pM0io0^p||>2HvHE zHtl@DKbiduPCRGGRo;B!3&8)Xjfu_N6^`6^MXY|qlI?DY?ur?f;i7lDUiFrf`Cs_S z;QlwFMtTUfxz_w`qeL&J4fl2%X;%&_kH627q~fKSleG1 z>_>!oZhc=kXybLk1-uP^VAK5XmOkW`HWA=0S?n_8b~@h>yO?snDRV7P`00eawcNrw zmXf3`62;=e*7IKi>4fpgOlgb09pXO`ZScZCdSU?4nPs} z(_rE)d$*6U8etYfIsUm%;f74^6k>3NMD;*wW>PS}FOcww#V?kt9+%$(dZ|n|R-A8- zdR|dFH&@3GC%o1ed*W(Nvi*`ij0-M)N-M2~hv$uE6Mjo3H*l$oPA^DscsTLJFeYv+ z!lURtL8c7dHm2JaC&4)`IgDc`qBk>G`J%*)<8bAkDd94X-VoJZ=v_NjZS*!K^yB-6 zbWcq37g|7Uv@iS94UcpO<}4=u2NMSPqBjP6Y|6iF(?$sCYZ_3NP=bnp+G<~5G9Xoj zivkOTePos}g=B8IkqanGAwBjjDon8jNjrrJQ9=fe?3iIfJNUU)H^D`V`;Jz_SV-F> zf{WkL#S_BNV8Qrm2j76P<8a+^{5}uXT!c=*yWKg@Tyd6c z?}}>3P4fNbfF}~h2yPHSW zBaA1$I#hW+h>~R-1#)JE<5#Giu)%g4O_*^4^3MtR(J6Gw=fC`N>|1$ay6W8tSEz%T z5hpgJ*FftN+8_PPY$eOVm+^$Y5i9U6by$S#M+OI-zp&O)Z&PS3Z&{PkuMoetyoMoC zxf|qs2Zw~Ht$1$q-#^~h+jZI;yHNYo(mvFSGpeDKMni3<=JrzVNpgF9&z z(2cv18yEw^Pa>;gRC0-Ik!-pm-{3BvleMm{8r>{VY}JtMQa9z+%L0jfdwJ7&uXJl~ zF6*6afaF&OQf0>o{0h4;n#;hB4pZQK0ps)(qS)wE`LG_ZvLLKh?Glay?b)w*i??`0 z6SS#!s;DP0N>S<5L{*#(Q!OHySYEXEZGcbr@UiMM3MQn-K(3rVoFUo?MJB6=&i?J$ z(wlh06{;J3^%l$Vd0iDt}6%bRAqZi!&5TC;Zf z>F;&EG8IPoKvlSTKeROBS5zm)p!zxovFL$56~Hf(?xSbr=>Y>G{e|Ga`EQ+g2IibkH{!Gd05PcJbZKE zK@%9AA*)`~Us6L;OHtKR_8&|S)A?w8H{NzV6G66Clv3tLkdtP|H)HW1lxn|0GYxGA z(d@i${o%7YE+sQ$WkOlCif-fFP^xw|W59?FAa^kaU%|#&sJ(&h9==zFs`u3YgdPHG zkGB}kXM-O6tQmaJFp=+o;jTy2Rysw}C4il;% z6r7+U&1gNHEqlPwSCCCcWJkB+mp8kI$Oai~2|Sp8 zE{l_&y~#tMddE&;Dk$9~c5dNO<<|Kuc5*dGDvdZZ!!#r3WHP@;{il)lO`Lz2tnsD6 z5x7M3cN{$MkZ)s{vZEj)KL!G43{ZXwVH+Io)!>%w-_e^$g6;ha5hTGFaiTZz1`oZZ z2bvT>7>xEU-u`2QTOiV71xCRS?+CB;R*w(C`zWmkG8;FE_+q3u64Io99EyhG1d}br z0k;AN&k7|?e*oEAf~(A+7k^#M#up#RrBMGl5nI_^lcqt&chZ<6^0L1(u3|(A*g~O8)P+W>kd}=uyKr_)estMsEY&EX zcgk5>3|&6?CTuy>ULG;AMmDyb!lh&LV=FcCbnl*V(l#Q)mSAi^mtm-8)kSBi9O$YR zwz1_$S8Dk)^uhQM_9A2Xz!jR0R80qY#yN21sznpL3*ag(;1`u~zB8^OLJKV{U3XEM z*;1?7`_L^M6JG#XDfta>xPEVBk*q{m(qL+W3B*-1v1F+S)Q?kBAipP;d})h`b+q-W zRruXq)6PZ{8b=fijQWWelRy&}uL)7qpBa5F>}+9y5c(g7DWP}}s%&)cts>bV$D+~; zCtm&hi;B$sj6}JPWx1x4gG3qn0asL-_X=SQ-;L|}d(RJ9B24L;>zb~W2T_G{^#2Xk zlkYDgOj%X@aZyw?o1UBY0VSz44G>|l-+N7w{esYBR1I|RGHg8?P0*?TTmcu5$SElPk8k$Xdwgl}2qeQQSOxZ8=WS z47B{XO6^o>eMgIx&jSNHDsTm{ic+}&R5q@lP9JU`{%BgVk1Jte2C7WmtirbfF*F-h z2XpSg5c;EPf4=RVHlPdP%A~(@V5)jJlQ9Z(CIgIq06m#|B?wV47FTW9wzKs=Fu{X` z6@VB2n22Kj8lqD0UZUJ8x=3X%C>zx5iK*0gG^+blibY-lPcE`}5Pt6FKod6T!O&!< z5%ay<-NBm9gOf5s6ks4YATyWSnG-NA(3$dfF#M7Ym3z32ugb1oT_SSMR3Wv=*t=wvb$ut)|8GgVkmWf*2s(SU+&Nm8#_?*2;j zWvh0fP-GQyMcy_p>&nrq)%4+205uD%I?+uXjnFZq+wudFV(#f+^zPkYs;*kNWJH?4 zo{AeFK8YJtY>DC~8C%Ii_DKkL#S)eaGB+X0XhmHfk*MHwAX8O>GC=zIS63I-aU1zS$1k#omWH6SqL#l* zuyVw87n{3Ms}mfgsK^w7&`MpMKUfL`vS=)$DDTMx5`h6pH7ve5i$!-*21xCu+d602 zMrRp$9RR9Yrf*g1%<0t>pr}0G-p1&5{ra+Yj@V>kkug@WM9?H6DJLXAAR_Q#JiC9P zgcaVDBW*Ms!aZo*xu!ZYZ&h2fM%CdRqL4LjJc2UVIbK0c`^=9ne{|~a; B-2?yt literal 0 HcmV?d00001