- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将一个使用 DB2 BDD(在 AS400 竞赛野兽上)在 Java 上运行的应用程序(我们的客户热线)传递给在 Unix 服务器上运行的 MariaDB BDD。我有一个表演问题。新的 Unix 服务器有两个处理器 * 1 核和 5GB RAM。我可以再协商 2 颗心,但几乎无法超出。该应用每天可招揽100名用户,同时可招揽10-15名活跃用户。我的主表有 20000 条记录(热线票数),但从属表可以达到大约 150000 条记录。我使用InnoDB引擎,因为我有义务保留外键的约束。我创建了最符合逻辑的索引。每个表平均有 50 个字段。 (十进制和 varchar 10 或 20)问题是我有 5 个 View 的查询,每个 View 使用 4 个表(请参阅其他 View ),这非常贪婪,每个表有数万条记录。除非我完全重写应用程序,否则我几乎无法修改这些查询。 (我提醒你,这只是BDD的一个改变)。谁能告诉我 my.cnf 设置是否正确。我在网上寻找信息,但我不是专家。
# MariaDB database server configuration file.
#
# You can copy this file to one of:
# - "/etc/mysql/my.cnf" to set global options,
# - "~/.my.cnf" to set user-specific options.
#
# 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
# escpecially if they contain "#" chars...
# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
[client]
port = 3306
socket = /var/run/mysqld/mysqld.sock
# 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 = /var/run/mysqld/mysqld.sock
nice = 0
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc_messages_dir = /usr/share/mysql
lc_messages = en_US
skip-external-locking
lower_case_table_names = 1
character-set-server=utf8
collation-server=utf8_general_ci
#
# Instead of skip-networking the default is now to listen only on
# localhost which is more compatible and is not less secure.
bind-address = 10.10.64.51
#
# * Fine Tuning
#
max_connections = 100
connect_timeout = 5
wait_timeout = 600
max_allowed_packet = 16M
thread_cache_size = 128
#sort_buffer_size = 4M
sort_buffer_size = 8M
bulk_insert_buffer_size = 16M
#tmp_table_size = 32M
#max_heap_table_size = 32M
#tmp_table_size = 256M
tmp_table_size = 512M
#max_heap_table_size = 256M
max_heap_table_size = 512M
#
# * 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
key_buffer_size = 128M
#open-files-limit = 2000
#table_open_cache = 400
table_open_cache = 600
myisam_sort_buffer_size = 512M
concurrent_insert = 2
read_buffer_size = 2M
#read_rnd_buffer_size = 1M
read_rnd_buffer_size = 2M
#
# * Query Cache Configuration
#
# Cache only tiny result sets, so we can fit more in the query cache.
#query_cache_limit = 128K
query_cache_limit = 512K
#query_cache_size = 256M
query_cache_size = 512M
#query_cache_type = DEMAND
#
# * Logging and Replication
#
# 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_file = /var/log/mysql/mysql.log
#general_log = 1
#
# Error logging goes to syslog due to /etc/mysql/conf.d/mysqld_safe_syslog.cnf.
#
# we do want to know about network errors and such
log_warnings = 2
#
# Enable the slow query log to see queries with especially long duration
#slow_query_log[={0|1}]
slow_query_log_file = /var/log/mysql/mariadb-slow.log
long_query_time = 10
#log_slow_rate_limit = 1000
log_slow_verbosity = query_plan
#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 README.Debian about
# other settings you may need to change.
#server-id = 1
#report_host = master1
#auto_increment_increment = 2
#auto_increment_offset = 1
log_bin = /var/log/mysql/mariadb-bin
log_bin_index = /var/log/mysql/mariadb-bin.index
# not fab for performance, but safer
#sync_binlog = 1
expire_logs_days = 10
max_binlog_size = 100M
# slaves
#relay_log = /var/log/mysql/relay-bin
#relay_log_index = /var/log/mysql/relay-bin.index
#relay_log_info_file = /var/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_buffer_pool_size = 512M
innodb_buffer_pool_size = 1G
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
#
# * Galera-related settings
#
[galera]
# Mandatory settings
#wsrep_on=ON
#wsrep_provider=
#wsrep_cluster_address=
#binlog_format=row
#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
[mysqldump]
quick
quote-names
max_allowed_packet = 16M
[mysql]
#no-auto-rehash # faster start of mysql but no tab completion
[isamchk]
key_buffer = 16M
#
# * IMPORTANT: Additional settings that can override those from this file!
# The files must end with '.cnf', otherwise they'll be ignored.
#
!includedir /etc/mysql/conf.d/
致以诚挚的问候
最佳答案
更改这些:
tmp_table_size = 50M
max_heap_table_size = 50M
query_cache_size = 50m
关于mysql - 参数数据库MariaDB my.cnf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41370065/
我正在尝试根据此 SO 查找文件 my.cnf邮政。有了答案之一,我在 ssh 到远程服务器后输入了 mysqladmin --help 。 部分输出: Default options are rea
在/etc/mysql/我看到两个配置文件:my.cnf 和 mysql.cnf 两者的内容几乎相同。其中之一最近通过 apt-get 进行了更新。看起来其中一个已经过时了。 谁能解释一下这两者之间的
我正在使用 MySQL/MariaDB 10.0 在我的 server.cnf 中,我通常在过去使用下划线来表示此配置中的大部分内容。我正在测试生成的 .cnf,但它有破折号而不是下划线,破折号有效吗
我真的很困惑为什么2-CNF SAT在P,而3-CNF SAT在NPC。我读过 CLRS,我了解他们如何证明 3-CNF SAT 在 NPC 中。我不能使用从 SAT 到 2-CNF-SAT 的相同还
如何在haskell中获得随机命题公式?最好我需要 CNF 中的公式,但我会 我想使用公式进行性能测试,也涉及 SAT 求解器。请注意,我的目标不是测试 SAT 求解器的性能!我也对非常困难的公式不感
有没有办法使用 z3 将公式转换为 CNF(使用 Tseitsin 风格的编码)?我正在寻找类似 simplify 的东西命令,但保证返回的公式是 CNF。 最佳答案 您可以使用 apply命令来做这
关闭。这个问题不符合 Stack Overflow guidelines 。它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 Stack Overflow 的 on-topic。 10 个月前
我对 docker 还很陌生。我想知道是否有办法为 docker 图像“硬编码”my.cnf 设置,而不是编辑 docker 容器。 我需要将这两行添加到 my.cnf 中才能使我的应用正常运行: [
我正在努力使用 MiniSat解决约束满足问题。在一阶逻辑中,问题很容易由几个离散域变量和一些谓词表示。 但是,MiniSat 以及我目前看到的其他 CSP 求解器都希望以 CNF 形式输入。因此,我
已关闭。这个问题是 not about programming or software development 。目前不接受答案。 这个问题似乎不是关于 a specific programming
我有一个列表: KB = [['~p', '~r', 's'], ['~r', 'k'], ['~k', 'm'], ['r'], ['~m'], ['~p', 'r']] 我需要输出到 CNF 格式
我正在尝试 MySQL 的许多问题,内存使用率高,尤其是 CPU 使用率高。 我有一个具有以下配置的专用服务器: 8 CPU Intel(R) Xeon(R) CPU E3-1240 v6 @ 3.7
my.cnf 文件中的某些内容阻止 mysql (5.7.20) 启动/关闭,我不知道是哪个条目或哪个条目有问题。我收到无法连接到本地主机 61/2003 错误。 my.cnf文件是: [mysqld
我有一个数据库设置为使用编码 UTF-8 multibyte-4。这是在 my.cnf 文件中配置的: [client] default-character-set = utf8mb4 [mysql]
我将一个使用 DB2 BDD(在 AS400 竞赛野兽上)在 Java 上运行的应用程序(我们的客户热线)传递给在 Unix 服务器上运行的 MariaDB BDD。我有一个表演问题。新的 Unix
在一个实例中,我有两个数据库: 第一个数据库 -> my_db 第二个数据库 -> sample_db mysql> show global variables like 'char%'; +----
所以我知道 my.cnf 文件可以让您控制应用程序的“key_buffer”和“thread_cache_size”等内容,但它是否直接修改数据库? 目前我的网站有 5 台服务器,其中 4 台是测试服
有什么方法可以找出 mysql 当前正在使用哪个 my.cnf 吗?原因是因为它使用正确的套接字文件进行连接,但我无法确定它正在使用或尝试使用哪个(如果有的话)my.cnf,因此我可以在本地计算机上手
我想将我的从句转换为合取范式。每次我运行程序时,条款都会发生变化,所以我想我需要在程序中内置一个工具来为我执行此操作。有什么建议如何实现吗?我还发现了一些库,例如: Orbital library 。
这是一个作业。我必须将语句集转换为 CNF 并实现它们。我知道我需要先将前缀表示法的输入转换为中缀,然后重复应用 De Morgans 定律。但是,我不知道将其转换为中缀符号后如何继续实现。 我是否必
我是一名优秀的程序员,十分优秀!