go-kill-mysql-query

command module
v1.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 11, 2019 License: MIT Imports: 8 Imported by: 0

README

kill-mysql-query

  _____     ____
/      \  |  o |
|        |/ ___\|
|_________/
|_|_| |_|_|

kill-mysql-query interactively shows long running queries in MySQL database and provides option to kill them one by one.

👉 Great for firefighting situations 🔥🚨🚒

It can connect to MySQL server as configured, can use SSH Tunnel if necessary, and let you decide which query to kill. By default queries running for more than 10 seconds will be marked as long running queries, but it can be configured.

screenshot


Installation

Download binary from release tab.


Usage

kill-mysql-query [config.toml]:
	Checks for long running queries in the configured server.
	If no file is given, it tries to read from config.toml
	in the current directory.

Other commands:

	generate [config.toml]:
		Generates a new empty configuration file

	init:
		Alias for generate

	help, --help, -h:
		Shows this message


Configuration

Run kill-mysql-query init to generate an empty configuration file.

[MySQL]
  mysql_host = ""
  mysql_port = 3306
  mysql_username = ""
  mysql_password = ""

  # hosted_in_aws_rds: Optional.
  #
  # Uses `CALL mysql.rds_kill()` instead of `kill` command.
  # Useful in RDS databases or replica where
  # `mysql_username` may not have privilege to use `kill`
  hosted_in_aws_rds = false

  # db: Optional.
  #
  # If provided, filter out long running
  # queries from other databases
  db = ""

[ssh_tunnel]
  use_ssh_tunnel = false
  ssh_host = ""
  ssh_port = 22
  ssh_username = ""
  ssh_password = ""

  # ssh_private_key takes priority over ssh_password
  # if both are provided
  ssh_private_key = ""

  # ssh_key_passphrase: Optional.
  ssh_key_passphrase = ""

[long_running_query]
  # Default is 10 seconds.
  # `kill-mysql-query` will only list running queries
  # those are being executed for more than or equal to
  # this value.
  timeout_second = 10


FAQ

How do I simulate a long running query to test kill-mysql-query?

This stackoverflow answer may come in handy: https://stackoverflow.com/a/3892443/761555

select benchmark(9999999999, md5('when will it end?'));

License

MIT

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL