add changes
This commit is contained in:
196
bookstack/bookstack_db_data/custom.cnf
Normal file
196
bookstack/bookstack_db_data/custom.cnf
Normal file
@@ -0,0 +1,196 @@
|
||||
## custom configuration file based on https://github.com/just-containers/mariadb/blob/master/rootfs/etc/mysql/my.cnf
|
||||
## please be aware that changing options here may break things
|
||||
#
|
||||
# The MySQL database server configuration file.
|
||||
#
|
||||
# One can use all long options that the program supports.
|
||||
# Run program with --help to get a list of available options and with
|
||||
# --print-defaults to see which it would actually understand and use.
|
||||
#
|
||||
# For explanations see
|
||||
# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
|
||||
|
||||
# This will be passed to all mysql clients
|
||||
# It has been reported that passwords should be enclosed with ticks/quotes
|
||||
# especially if they contain "#" chars...
|
||||
[client]
|
||||
port = 3306
|
||||
socket = /run/mysqld/mysqld.sock
|
||||
|
||||
default-character-set = utf8mb4
|
||||
|
||||
# Here is entries for some specific programs
|
||||
# The following values assume you have at least 32M ram
|
||||
|
||||
# This was formally known as [safe_mysqld]. Both versions are currently parsed.
|
||||
[mysqld_safe]
|
||||
socket = /run/mysqld/mysqld.sock
|
||||
nice = 0
|
||||
|
||||
[mysqld]
|
||||
#
|
||||
# * Basic Settings
|
||||
#
|
||||
user = abc
|
||||
pid-file = /run/mysqld/mysqld.pid
|
||||
socket = /run/mysqld/mysqld.sock
|
||||
port = 3306
|
||||
basedir = /usr
|
||||
datadir = /var/lib/mysql
|
||||
tmpdir = /tmp
|
||||
lc_messages_dir = /usr/share/mariadb
|
||||
lc_messages = en_US
|
||||
skip-external-locking
|
||||
#
|
||||
# Instead of skip-networking the default is now to listen only on
|
||||
# localhost which is more compatible and is not less secure.
|
||||
#bind-address = 127.0.0.1
|
||||
#
|
||||
# * Fine Tuning
|
||||
#
|
||||
key_buffer_size = 128M
|
||||
max_connections = 100
|
||||
connect_timeout = 5
|
||||
wait_timeout = 600
|
||||
max_allowed_packet = 16M
|
||||
thread_cache_size = 128
|
||||
thread_stack = 192K
|
||||
sort_buffer_size = 4M
|
||||
bulk_insert_buffer_size = 16M
|
||||
tmp_table_size = 32M
|
||||
max_heap_table_size = 32M
|
||||
|
||||
#performance_schema = on
|
||||
character_set_server = utf8mb4
|
||||
collation_server = utf8mb4_general_ci
|
||||
transaction_isolation = READ-COMMITTED
|
||||
binlog_format = MIXED
|
||||
|
||||
#
|
||||
# * MyISAM
|
||||
#
|
||||
# This replaces the startup script and checks MyISAM tables if needed
|
||||
# the first time they are touched. On error, make copy and try a repair.
|
||||
myisam-recover-options = BACKUP
|
||||
#open-files-limit = 2000
|
||||
table_open_cache = 400
|
||||
#table_cache = 64
|
||||
#thread_concurrency = 10
|
||||
myisam_sort_buffer_size = 512M
|
||||
concurrent_insert = 2
|
||||
read_buffer_size = 2M
|
||||
read_rnd_buffer_size = 1M
|
||||
#
|
||||
# * Query Cache Configuration
|
||||
#
|
||||
# Cache only tiny result sets, so we can fit more in the query cache.
|
||||
query_cache_limit = 128K
|
||||
query_cache_size = 64M
|
||||
# for more write intensive setups, set to DEMAND or OFF
|
||||
query_cache_type = DEMAND
|
||||
#
|
||||
# * Logging and Replication
|
||||
#
|
||||
console = 1
|
||||
# Both location gets rotated by the cronjob.
|
||||
# Be aware that this log type is a performance killer.
|
||||
# As of 5.1 you can enable the log at runtime!
|
||||
#general_log = 1
|
||||
#general_log_file = /config/log/mysql/mysql.log
|
||||
#
|
||||
# Error log - should be very few entries.
|
||||
#
|
||||
log_warnings = 2
|
||||
# Error logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf
|
||||
log_error = /config/log/mysql/mariadb-error.log
|
||||
#
|
||||
# Enable the slow query log to see queries with especially long duration
|
||||
slow_query_log = 1
|
||||
slow_query_log_file = /config/log/mysql/mariadb-slow.log
|
||||
long_query_time = 5
|
||||
#log_slow_rate_limit = 1000
|
||||
#log-queries-not-using-indexes
|
||||
#log_slow_admin_statements
|
||||
#
|
||||
# The following can be used as easy to replay backup logs or for replication.
|
||||
# note: if you are setting up a replication slave, see
|
||||
# https://mariadb.com/kb/en/setting-up-replication/
|
||||
# about other settings you may need to change.
|
||||
#server-id = 1
|
||||
#report_host = master1
|
||||
#auto_increment_increment = 2
|
||||
#auto_increment_offset = 1
|
||||
log_bin = /config/log/mysql/mariadb-bin
|
||||
log_bin_index = /config/log/mysql/mariadb-bin.index
|
||||
# not fab for performance, but safer
|
||||
#sync_binlog = 1
|
||||
#binlog_do_db = include_database_name
|
||||
#binlog_ignore_db = include_database_name
|
||||
expire_logs_days = 10
|
||||
max_binlog_size = 100M
|
||||
# slaves
|
||||
#relay_log = /config/log/mysql/relay-bin
|
||||
#relay_log_index = /config/log/mysql/relay-bin.index
|
||||
#relay_log_info_file = /config/log/mysql/relay-bin.info
|
||||
#log_slave_updates
|
||||
#read_only
|
||||
#
|
||||
# If applications support it, this stricter sql_mode prevents some
|
||||
# mistakes like inserting invalid dates etc.
|
||||
#sql_mode = NO_ENGINE_SUBSTITUTION,TRADITIONAL
|
||||
#
|
||||
# * InnoDB
|
||||
#
|
||||
# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
|
||||
# Read the manual for more InnoDB related options. There are many!
|
||||
default_storage_engine = InnoDB
|
||||
# you can't just change log file size, requires special procedure
|
||||
#innodb_log_file_size = 50M
|
||||
innodb_buffer_pool_size = 256M
|
||||
innodb_log_buffer_size = 8M
|
||||
innodb_file_per_table = 1
|
||||
innodb_open_files = 400
|
||||
innodb_io_capacity = 400
|
||||
innodb_flush_method = O_DIRECT
|
||||
#
|
||||
# * Security Features
|
||||
#
|
||||
# Read the manual, too, if you want chroot!
|
||||
# chroot = /var/lib/mysql/
|
||||
#
|
||||
# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
|
||||
#
|
||||
# ssl-ca=/etc/mysql/cacert.pem
|
||||
# ssl-cert=/etc/mysql/server-cert.pem
|
||||
# ssl-key=/etc/mysql/server-key.pem
|
||||
|
||||
[mysqldump]
|
||||
quick
|
||||
quote-names
|
||||
max_allowed_packet = 16M
|
||||
|
||||
[mysql]
|
||||
#no-auto-rehash # faster start of mysql but no tab completion
|
||||
|
||||
[isamchk]
|
||||
key_buffer = 16M
|
||||
|
||||
#
|
||||
# * Galera-related settings
|
||||
#
|
||||
[galera]
|
||||
# Mandatory settings
|
||||
#wsrep_on=ON
|
||||
#wsrep_provider=
|
||||
#wsrep_cluster_address=
|
||||
#binlog_format=MIXED
|
||||
#default_storage_engine=InnoDB
|
||||
#innodb_autoinc_lock_mode=2
|
||||
#
|
||||
# Allow server to accept connections on all interfaces.
|
||||
#
|
||||
#bind-address=0.0.0.0
|
||||
#
|
||||
# Optional setting
|
||||
#wsrep_slave_threads=1
|
||||
#innodb_flush_log_at_trx_commit=0
|
||||
BIN
bookstack/bookstack_db_data/databases/aria_log.00000001
Normal file
BIN
bookstack/bookstack_db_data/databases/aria_log.00000001
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/aria_log_control
Normal file
BIN
bookstack/bookstack_db_data/databases/aria_log_control
Normal file
Binary file not shown.
2
bookstack/bookstack_db_data/databases/bookstack/db.opt
Normal file
2
bookstack/bookstack_db_data/databases/bookstack/db.opt
Normal file
@@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_general_ci
|
||||
169
bookstack/bookstack_db_data/databases/ib_buffer_pool
Normal file
169
bookstack/bookstack_db_data/databases/ib_buffer_pool
Normal file
@@ -0,0 +1,169 @@
|
||||
7,3
|
||||
7,2
|
||||
7,1
|
||||
7,0
|
||||
6,6
|
||||
6,5
|
||||
6,4
|
||||
6,3
|
||||
6,2
|
||||
6,1
|
||||
6,0
|
||||
5,3
|
||||
5,2
|
||||
5,1
|
||||
5,0
|
||||
4,3
|
||||
4,2
|
||||
4,1
|
||||
4,0
|
||||
3,2
|
||||
2,2
|
||||
1,2
|
||||
0,9
|
||||
0,2
|
||||
1,45
|
||||
3,44
|
||||
2,44
|
||||
1,44
|
||||
3,43
|
||||
2,43
|
||||
1,43
|
||||
3,42
|
||||
2,42
|
||||
1,42
|
||||
3,41
|
||||
2,41
|
||||
1,41
|
||||
3,40
|
||||
2,40
|
||||
1,40
|
||||
3,39
|
||||
2,39
|
||||
1,39
|
||||
3,38
|
||||
2,38
|
||||
1,38
|
||||
3,37
|
||||
2,37
|
||||
1,37
|
||||
3,36
|
||||
2,36
|
||||
1,36
|
||||
3,35
|
||||
2,35
|
||||
1,35
|
||||
3,34
|
||||
2,34
|
||||
1,34
|
||||
3,33
|
||||
2,33
|
||||
1,33
|
||||
3,32
|
||||
2,32
|
||||
1,32
|
||||
3,31
|
||||
2,31
|
||||
1,31
|
||||
3,30
|
||||
2,30
|
||||
1,30
|
||||
3,29
|
||||
2,29
|
||||
1,29
|
||||
3,28
|
||||
2,28
|
||||
1,28
|
||||
3,27
|
||||
2,27
|
||||
1,27
|
||||
3,26
|
||||
2,26
|
||||
1,26
|
||||
3,25
|
||||
2,25
|
||||
1,25
|
||||
3,24
|
||||
2,24
|
||||
1,24
|
||||
3,23
|
||||
2,23
|
||||
1,23
|
||||
3,22
|
||||
2,22
|
||||
1,22
|
||||
3,21
|
||||
2,21
|
||||
1,21
|
||||
3,20
|
||||
2,20
|
||||
1,20
|
||||
3,19
|
||||
2,19
|
||||
1,19
|
||||
3,18
|
||||
2,18
|
||||
1,18
|
||||
3,17
|
||||
2,17
|
||||
1,17
|
||||
3,16
|
||||
2,16
|
||||
1,16
|
||||
3,15
|
||||
2,15
|
||||
1,15
|
||||
3,14
|
||||
2,14
|
||||
1,14
|
||||
3,13
|
||||
2,13
|
||||
1,13
|
||||
3,12
|
||||
2,12
|
||||
1,12
|
||||
3,11
|
||||
2,11
|
||||
1,11
|
||||
3,10
|
||||
2,10
|
||||
1,10
|
||||
3,9
|
||||
2,9
|
||||
1,9
|
||||
3,8
|
||||
2,8
|
||||
1,8
|
||||
3,7
|
||||
2,7
|
||||
1,7
|
||||
3,6
|
||||
2,6
|
||||
1,6
|
||||
3,5
|
||||
2,5
|
||||
1,5
|
||||
3,4
|
||||
2,4
|
||||
1,4
|
||||
3,3
|
||||
3,0
|
||||
2,3
|
||||
2,0
|
||||
1,3
|
||||
1,0
|
||||
0,6
|
||||
0,0
|
||||
0,47
|
||||
0,46
|
||||
0,49
|
||||
0,48
|
||||
0,45
|
||||
0,12
|
||||
0,10
|
||||
0,8
|
||||
0,11
|
||||
0,5
|
||||
0,7
|
||||
0,4
|
||||
0,3
|
||||
BIN
bookstack/bookstack_db_data/databases/ib_logfile0
Normal file
BIN
bookstack/bookstack_db_data/databases/ib_logfile0
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/ibdata1
Normal file
BIN
bookstack/bookstack_db_data/databases/ibdata1
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
11.4.4-MariaDB
|
||||
BIN
bookstack/bookstack_db_data/databases/mysql/column_stats.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/column_stats.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/column_stats.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/column_stats.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/column_stats.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/column_stats.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/columns_priv.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/columns_priv.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/columns_priv.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/columns_priv.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/columns_priv.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/columns_priv.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/db.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/db.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/db.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/db.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/db.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/db.frm
Normal file
Binary file not shown.
2
bookstack/bookstack_db_data/databases/mysql/db.opt
Normal file
2
bookstack/bookstack_db_data/databases/mysql/db.opt
Normal file
@@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb4
|
||||
default-collation=utf8mb4_general_ci
|
||||
BIN
bookstack/bookstack_db_data/databases/mysql/event.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/event.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/event.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/event.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/event.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/event.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/func.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/func.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/func.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/func.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/func.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/func.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/general_log.CSM
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/general_log.CSM
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/general_log.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/general_log.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/global_priv.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/global_priv.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/global_priv.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/global_priv.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/global_priv.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/global_priv.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/gtid_slave_pos.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/gtid_slave_pos.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/gtid_slave_pos.ibd
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/gtid_slave_pos.ibd
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_category.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_category.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_category.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_category.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_category.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_category.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_keyword.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_keyword.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_keyword.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_keyword.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_keyword.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_keyword.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_relation.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_relation.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_relation.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_relation.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_relation.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_relation.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_topic.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_topic.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_topic.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_topic.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/help_topic.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/help_topic.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/index_stats.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/index_stats.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/index_stats.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/index_stats.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/index_stats.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/index_stats.frm
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/plugin.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/plugin.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/plugin.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/plugin.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/plugin.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/plugin.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/proc.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/proc.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/proc.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/proc.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/proc.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/proc.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/procs_priv.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/procs_priv.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/procs_priv.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/procs_priv.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/procs_priv.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/procs_priv.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/proxies_priv.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/proxies_priv.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/proxies_priv.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/proxies_priv.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/proxies_priv.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/proxies_priv.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/roles_mapping.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/roles_mapping.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/roles_mapping.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/roles_mapping.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/roles_mapping.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/roles_mapping.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/servers.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/servers.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/servers.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/servers.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/servers.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/servers.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/slow_log.CSM
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/slow_log.CSM
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/slow_log.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/slow_log.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/table_stats.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/table_stats.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/table_stats.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/table_stats.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/table_stats.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/table_stats.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/tables_priv.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/tables_priv.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/tables_priv.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/tables_priv.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/tables_priv.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/tables_priv.frm
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone.frm
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone_name.MAD
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone_name.MAD
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone_name.MAI
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone_name.MAI
Normal file
Binary file not shown.
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone_name.frm
Normal file
BIN
bookstack/bookstack_db_data/databases/mysql/time_zone_name.frm
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
16
bookstack/bookstack_db_data/databases/mysql/user.frm
Normal file
16
bookstack/bookstack_db_data/databases/mysql/user.frm
Normal file
@@ -0,0 +1,16 @@
|
||||
TYPE=VIEW
|
||||
query=select `mysql`.`global_priv`.`Host` AS `Host`,`mysql`.`global_priv`.`User` AS `User`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.plugin\') in (\'mysql_native_password\',\'mysql_old_password\'),ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.authentication_string\'),\'\'),\'\') AS `Password`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 1,\'Y\',\'N\') AS `Select_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 2,\'Y\',\'N\') AS `Insert_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 4,\'Y\',\'N\') AS `Update_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 8,\'Y\',\'N\') AS `Delete_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 16,\'Y\',\'N\') AS `Create_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 32,\'Y\',\'N\') AS `Drop_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 64,\'Y\',\'N\') AS `Reload_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 128,\'Y\',\'N\') AS `Shutdown_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 256,\'Y\',\'N\') AS `Process_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 512,\'Y\',\'N\') AS `File_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 1024,\'Y\',\'N\') AS `Grant_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 2048,\'Y\',\'N\') AS `References_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 4096,\'Y\',\'N\') AS `Index_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 8192,\'Y\',\'N\') AS `Alter_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 16384,\'Y\',\'N\') AS `Show_db_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 32768,\'Y\',\'N\') AS `Super_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 65536,\'Y\',\'N\') AS `Create_tmp_table_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 131072,\'Y\',\'N\') AS `Lock_tables_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 262144,\'Y\',\'N\') AS `Execute_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 524288,\'Y\',\'N\') AS `Repl_slave_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 1048576,\'Y\',\'N\') AS `Repl_client_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 2097152,\'Y\',\'N\') AS `Create_view_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 4194304,\'Y\',\'N\') AS `Show_view_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 8388608,\'Y\',\'N\') AS `Create_routine_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 16777216,\'Y\',\'N\') AS `Alter_routine_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 33554432,\'Y\',\'N\') AS `Create_user_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 67108864,\'Y\',\'N\') AS `Event_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 134217728,\'Y\',\'N\') AS `Trigger_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 268435456,\'Y\',\'N\') AS `Create_tablespace_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 536870912,\'Y\',\'N\') AS `Delete_history_priv`,elt(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.ssl_type\'),0) + 1,\'\',\'ANY\',\'X509\',\'SPECIFIED\') AS `ssl_type`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.ssl_cipher\'),\'\') AS `ssl_cipher`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.x509_issuer\'),\'\') AS `x509_issuer`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.x509_subject\'),\'\') AS `x509_subject`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_questions\'),0) as unsigned) AS `max_questions`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_updates\'),0) as unsigned) AS `max_updates`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_connections\'),0) as unsigned) AS `max_connections`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_user_connections\'),0) as signed) AS `max_user_connections`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.plugin\'),\'\') AS `plugin`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.authentication_string\'),\'\') AS `authentication_string`,if(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.password_last_changed\'),1) = 0,\'Y\',\'N\') AS `password_expired`,elt(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.is_role\'),0) + 1,\'N\',\'Y\') AS `is_role`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.default_role\'),\'\') AS `default_role`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_statement_time\'),0.0) as decimal(12,6)) AS `max_statement_time` from `mysql`.`global_priv`
|
||||
md5=9e8063501afc8396f55d7c723632d5d8
|
||||
updatable=1
|
||||
algorithm=0
|
||||
definer_user=mariadb.sys
|
||||
definer_host=localhost
|
||||
suid=1
|
||||
with_check_option=0
|
||||
timestamp=0001750249670833603
|
||||
create-version=2
|
||||
source=SELECT\n Host,\n User,\n IF(JSON_VALUE(Priv, \'$.plugin\') IN (\'mysql_native_password\', \'mysql_old_password\'), IFNULL(JSON_VALUE(Priv, \'$.authentication_string\'), \'\'), \'\') AS Password,\n IF(JSON_VALUE(Priv, \'$.access\') & 1, \'Y\', \'N\') AS Select_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 2, \'Y\', \'N\') AS Insert_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 4, \'Y\', \'N\') AS Update_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 8, \'Y\', \'N\') AS Delete_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 16, \'Y\', \'N\') AS Create_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 32, \'Y\', \'N\') AS Drop_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 64, \'Y\', \'N\') AS Reload_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 128, \'Y\', \'N\') AS Shutdown_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 256, \'Y\', \'N\') AS Process_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 512, \'Y\', \'N\') AS File_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 1024, \'Y\', \'N\') AS Grant_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 2048, \'Y\', \'N\') AS References_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 4096, \'Y\', \'N\') AS Index_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 8192, \'Y\', \'N\') AS Alter_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 16384, \'Y\', \'N\') AS Show_db_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 32768, \'Y\', \'N\') AS Super_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 65536, \'Y\', \'N\') AS Create_tmp_table_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 131072, \'Y\', \'N\') AS Lock_tables_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 262144, \'Y\', \'N\') AS Execute_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 524288, \'Y\', \'N\') AS Repl_slave_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 1048576, \'Y\', \'N\') AS Repl_client_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 2097152, \'Y\', \'N\') AS Create_view_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 4194304, \'Y\', \'N\') AS Show_view_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 8388608, \'Y\', \'N\') AS Create_routine_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 16777216, \'Y\', \'N\') AS Alter_routine_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 33554432, \'Y\', \'N\') AS Create_user_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 67108864, \'Y\', \'N\') AS Event_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 134217728, \'Y\', \'N\') AS Trigger_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 268435456, \'Y\', \'N\') AS Create_tablespace_priv,\n IF(JSON_VALUE(Priv, \'$.access\') & 536870912, \'Y\', \'N\') AS Delete_history_priv,\n ELT(IFNULL(JSON_VALUE(Priv, \'$.ssl_type\'), 0) + 1, \'\', \'ANY\',\'X509\', \'SPECIFIED\') AS ssl_type,\n IFNULL(JSON_VALUE(Priv, \'$.ssl_cipher\'), \'\') AS ssl_cipher,\n IFNULL(JSON_VALUE(Priv, \'$.x509_issuer\'), \'\') AS x509_issuer,\n IFNULL(JSON_VALUE(Priv, \'$.x509_subject\'), \'\') AS x509_subject,\n CAST(IFNULL(JSON_VALUE(Priv, \'$.max_questions\'), 0) AS UNSIGNED) AS max_questions,\n CAST(IFNULL(JSON_VALUE(Priv, \'$.max_updates\'), 0) AS UNSIGNED) AS max_updates,\n CAST(IFNULL(JSON_VALUE(Priv, \'$.max_connections\'), 0) AS UNSIGNED) AS max_connections,\n CAST(IFNULL(JSON_VALUE(Priv, \'$.max_user_connections\'), 0) AS SIGNED) AS max_user_connections,\n IFNULL(JSON_VALUE(Priv, \'$.plugin\'), \'\') AS plugin,\n IFNULL(JSON_VALUE(Priv, \'$.authentication_string\'), \'\') AS authentication_string,\n IF(IFNULL(JSON_VALUE(Priv, \'$.password_last_changed\'), 1) = 0, \'Y\', \'N\') AS password_expired,\n ELT(IFNULL(JSON_VALUE(Priv, \'$.is_role\'), 0) + 1, \'N\', \'Y\') AS is_role,\n IFNULL(JSON_VALUE(Priv, \'$.default_role\'), \'\') AS default_role,\n CAST(IFNULL(JSON_VALUE(Priv, \'$.max_statement_time\'), 0.0) AS DECIMAL(12,6)) AS max_statement_time\n FROM global_priv;
|
||||
client_cs_name=utf8mb4
|
||||
connection_cl_name=utf8mb4_general_ci
|
||||
view_body_utf8=select `mysql`.`global_priv`.`Host` AS `Host`,`mysql`.`global_priv`.`User` AS `User`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.plugin\') in (\'mysql_native_password\',\'mysql_old_password\'),ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.authentication_string\'),\'\'),\'\') AS `Password`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 1,\'Y\',\'N\') AS `Select_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 2,\'Y\',\'N\') AS `Insert_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 4,\'Y\',\'N\') AS `Update_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 8,\'Y\',\'N\') AS `Delete_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 16,\'Y\',\'N\') AS `Create_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 32,\'Y\',\'N\') AS `Drop_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 64,\'Y\',\'N\') AS `Reload_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 128,\'Y\',\'N\') AS `Shutdown_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 256,\'Y\',\'N\') AS `Process_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 512,\'Y\',\'N\') AS `File_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 1024,\'Y\',\'N\') AS `Grant_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 2048,\'Y\',\'N\') AS `References_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 4096,\'Y\',\'N\') AS `Index_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 8192,\'Y\',\'N\') AS `Alter_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 16384,\'Y\',\'N\') AS `Show_db_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 32768,\'Y\',\'N\') AS `Super_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 65536,\'Y\',\'N\') AS `Create_tmp_table_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 131072,\'Y\',\'N\') AS `Lock_tables_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 262144,\'Y\',\'N\') AS `Execute_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 524288,\'Y\',\'N\') AS `Repl_slave_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 1048576,\'Y\',\'N\') AS `Repl_client_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 2097152,\'Y\',\'N\') AS `Create_view_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 4194304,\'Y\',\'N\') AS `Show_view_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 8388608,\'Y\',\'N\') AS `Create_routine_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 16777216,\'Y\',\'N\') AS `Alter_routine_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 33554432,\'Y\',\'N\') AS `Create_user_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 67108864,\'Y\',\'N\') AS `Event_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 134217728,\'Y\',\'N\') AS `Trigger_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 268435456,\'Y\',\'N\') AS `Create_tablespace_priv`,if(json_value(`mysql`.`global_priv`.`Priv`,\'$.access\') & 536870912,\'Y\',\'N\') AS `Delete_history_priv`,elt(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.ssl_type\'),0) + 1,\'\',\'ANY\',\'X509\',\'SPECIFIED\') AS `ssl_type`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.ssl_cipher\'),\'\') AS `ssl_cipher`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.x509_issuer\'),\'\') AS `x509_issuer`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.x509_subject\'),\'\') AS `x509_subject`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_questions\'),0) as unsigned) AS `max_questions`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_updates\'),0) as unsigned) AS `max_updates`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_connections\'),0) as unsigned) AS `max_connections`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_user_connections\'),0) as signed) AS `max_user_connections`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.plugin\'),\'\') AS `plugin`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.authentication_string\'),\'\') AS `authentication_string`,if(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.password_last_changed\'),1) = 0,\'Y\',\'N\') AS `password_expired`,elt(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.is_role\'),0) + 1,\'N\',\'Y\') AS `is_role`,ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.default_role\'),\'\') AS `default_role`,cast(ifnull(json_value(`mysql`.`global_priv`.`Priv`,\'$.max_statement_time\'),0.0) as decimal(12,6)) AS `max_statement_time` from `mysql`.`global_priv`
|
||||
mariadb-version=110404
|
||||
@@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb3
|
||||
default-collation=utf8mb3_general_ci
|
||||
2
bookstack/bookstack_db_data/databases/sys/db.opt
Normal file
2
bookstack/bookstack_db_data/databases/sys/db.opt
Normal file
@@ -0,0 +1,2 @@
|
||||
default-character-set=utf8mb3
|
||||
default-collation=utf8mb3_general_ci
|
||||
16
bookstack/bookstack_db_data/databases/sys/host_summary.frm
Normal file
16
bookstack/bookstack_db_data/databases/sys/host_summary.frm
Normal file
@@ -0,0 +1,16 @@
|
||||
TYPE=VIEW
|
||||
query=select if(`performance_schema`.`accounts`.`HOST` is null,\'background\',`performance_schema`.`accounts`.`HOST`) AS `host`,sum(`stmt`.`total`) AS `statements`,format_pico_time(sum(`stmt`.`total_latency`)) AS `statement_latency`,format_pico_time(ifnull(sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0),0)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,format_pico_time(sum(`io`.`io_latency`)) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`USER`) AS `unique_users`,`sys`.`format_bytes`(sum(`mem`.`current_allocated`)) AS `current_memory`,`sys`.`format_bytes`(sum(`mem`.`total_allocated`)) AS `total_memory_allocated` from (((`performance_schema`.`accounts` join `sys`.`x$host_summary_by_statement_latency` `stmt` on(`performance_schema`.`accounts`.`HOST` = `stmt`.`host`)) join `sys`.`x$host_summary_by_file_io` `io` on(`performance_schema`.`accounts`.`HOST` = `io`.`host`)) join `sys`.`x$memory_by_host_by_current_bytes` `mem` on(`performance_schema`.`accounts`.`HOST` = `mem`.`host`)) group by if(`performance_schema`.`accounts`.`HOST` is null,\'background\',`performance_schema`.`accounts`.`HOST`)
|
||||
md5=9d308ebdfc57e16758aca9e4c6a95b19
|
||||
updatable=0
|
||||
algorithm=2
|
||||
definer_user=mariadb.sys
|
||||
definer_host=localhost
|
||||
suid=0
|
||||
with_check_option=0
|
||||
timestamp=0001750249672799841
|
||||
create-version=2
|
||||
source=SELECT IF(accounts.host IS NULL, \'background\', accounts.host) AS host,\n SUM(stmt.total) AS statements,\n format_pico_time(SUM(stmt.total_latency)) AS statement_latency,\n format_pico_time(IFNULL(SUM(stmt.total_latency) / NULLIF(SUM(stmt.total), 0), 0)) AS statement_avg_latency,\n SUM(stmt.full_scans) AS table_scans,\n SUM(io.ios) AS file_ios,\n format_pico_time(SUM(io.io_latency)) AS file_io_latency,\n SUM(accounts.current_connections) AS current_connections,\n SUM(accounts.total_connections) AS total_connections,\n COUNT(DISTINCT user) AS unique_users,\n sys.format_bytes(SUM(mem.current_allocated)) AS current_memory,\n sys.format_bytes(SUM(mem.total_allocated)) AS total_memory_allocated\n FROM performance_schema.accounts\n JOIN sys.x$host_summary_by_statement_latency AS stmt ON accounts.host = stmt.host\n JOIN sys.x$host_summary_by_file_io AS io ON accounts.host = io.host\n JOIN sys.x$memory_by_host_by_current_bytes mem ON accounts.host = mem.host\n GROUP BY IF(accounts.host IS NULL, \'background\', accounts.host);
|
||||
client_cs_name=utf8mb3
|
||||
connection_cl_name=utf8mb3_general_ci
|
||||
view_body_utf8=select if(`performance_schema`.`accounts`.`HOST` is null,\'background\',`performance_schema`.`accounts`.`HOST`) AS `host`,sum(`stmt`.`total`) AS `statements`,format_pico_time(sum(`stmt`.`total_latency`)) AS `statement_latency`,format_pico_time(ifnull(sum(`stmt`.`total_latency`) / nullif(sum(`stmt`.`total`),0),0)) AS `statement_avg_latency`,sum(`stmt`.`full_scans`) AS `table_scans`,sum(`io`.`ios`) AS `file_ios`,format_pico_time(sum(`io`.`io_latency`)) AS `file_io_latency`,sum(`performance_schema`.`accounts`.`CURRENT_CONNECTIONS`) AS `current_connections`,sum(`performance_schema`.`accounts`.`TOTAL_CONNECTIONS`) AS `total_connections`,count(distinct `performance_schema`.`accounts`.`USER`) AS `unique_users`,`sys`.`format_bytes`(sum(`mem`.`current_allocated`)) AS `current_memory`,`sys`.`format_bytes`(sum(`mem`.`total_allocated`)) AS `total_memory_allocated` from (((`performance_schema`.`accounts` join `sys`.`x$host_summary_by_statement_latency` `stmt` on(`performance_schema`.`accounts`.`HOST` = `stmt`.`host`)) join `sys`.`x$host_summary_by_file_io` `io` on(`performance_schema`.`accounts`.`HOST` = `io`.`host`)) join `sys`.`x$memory_by_host_by_current_bytes` `mem` on(`performance_schema`.`accounts`.`HOST` = `mem`.`host`)) group by if(`performance_schema`.`accounts`.`HOST` is null,\'background\',`performance_schema`.`accounts`.`HOST`)
|
||||
mariadb-version=110404
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user