如果调整临时文件限制temp_file_limit

简介:

temp_file_limit的缺省值为10GB(10000000,单位kB),如果因为创建索引、运行大查询,可能超过此限制:

  CREATE UNIQUE INDEX ix_gl_balance_1 ON t_gl_balance USING btree (corp_id, acct_year, acct_period, subject_id, curr_id);
ERROR:  temporary file size exceeds temp_file_limit (10000000kB)

可以临时修改。方法如下:

对于PPAS:

rds_set_conf_for_all_roles('temp_file_limit','100000000');

对于PG:

alter role all set temp_file_limit = 100000000

注意,作为临时操作后,需要把它再改回来,避免误用临时空间导致占满磁盘。

目录
相关文章
|
BI
解决File.delete()删除不掉文件
首先注意两点: 此文件被使用的时候无法删除(比如网络输出没关闭流) 判断此文件是否存在再做删除(exists) 删除文件夹之前先删除文件夹下的所有文件(递归解决) 判断是否删除成功会有返回值,文件名错了的话,删除文件不会报错。
2301 0
|
5月前
|
存储 缓存 API
file_cache: 使用文件缓存函数结果
file_cache: 使用文件缓存函数结果
58 15
|
Linux
删除大量文件和目录时报错:Argument list too long
这个目录下的文件数量我惊呆了。40W+ 的文件目录数量,直接报错了。
103 1
|
Ubuntu JavaScript
ubuntu 文件监视数量 Error: ENOSPC: System limit for number of file watchers reached, watch‘所在文件路径‘
vue 运行执行 npm run dev | * Error: ENOSPC: System limit for number of file watchers reached, watch’所在文件路径’ 最简单的命令 沾走就能用
214 0
ubuntu 文件监视数量 Error: ENOSPC: System limit for number of file watchers reached, watch‘所在文件路径‘
|
SQL 关系型数据库 MySQL
MGR修改max_binlog_cache_size参数导致异常
MGR修改max_binlog_cache_size参数导致异常
164 0
MGR修改max_binlog_cache_size参数导致异常