ES 修改 查询最大行数
curl -XPUT http://ip:port/your_index/_settings?preserve_existing=true -H 'Content-Type: application/json' -d' { "max_result_window" : "50000000" }'
这里就把es最大查询行数提升到了50000000 默认20000行;
curl -XPUT http://ip:port/your_index/_settings?preserve_existing=true -H 'Content-Type: application/json' -d' { "max_result_window" : "50000000" }'
这里就把es最大查询行数提升到了50000000 默认20000行;
mysql安装在虚拟机中,公司突然断电导致mysql启动失败查看mysql的error日志2021-05-19T06:44:51.993300Z 0 [ERROR] InnoDB: Ignoring the redo log due to...
下载rpm包wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm 安裝包仓库yum -y install * 或者yum -...
mysql5.7DROP TABLE IF EXISTS `xxx_copy1`;CREATE TABLE `xxx_copy1` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCR...
系统:centos,版本:postgresql-9.6因为要测试postgresql的性能,当多次查询的时候查询结果会因为缓存用时很短,不能模拟出现实使用的场景。因此需要清除缓存。首先stop掉postgresqlsystemctl sto...
查看数据库的大小 select pg_database_size('test'); select pg_size_pretty(pg_database_size('test');查看单...
https://blog.csdn.net/qq_36582604/article/details/80526287...