美文网首页我爱编程
2018-04-06|insert流程-测试checkpoint

2018-04-06|insert流程-测试checkpoint

作者: walleipt | 来源:发表于2018-04-16 12:28 被阅读0次

    预备知识:

    测试外部硬盘存储改变

    让数据快速刷入存储文件

    检查点(CHECKPOINT)介绍

    开始测试:

    查看checkpoint_timeout

    select name,setting,unit from pg_settings ps where 1=1 and ps.name like '%timeout%';

    查看checkpoint_time

    设置checkpoint_timeout

    #修改配置文件postgresql.conf

    vi postgresql.conf

    #设置checkpoint_timeout = 30s

    #让配置生效

    pg_ctl reload

    查看结果:

    修改后的checkpoint_timeout结果

    验证结果

    插入数据,并查看时间

    insert into test(id,name,age) values('1','c',1) ;

    select now();

    插入数据并查看插入时间

    等待timeout时间,查看磁盘文件修改时间

    查看文件修改时间

    参考资料:

    postgresql 的几个 timeout 参数

    postgresql修改配置生效方法

    相关文章

      网友评论

        本文标题:2018-04-06|insert流程-测试checkpoint

        本文链接:https://www.haomeiwen.com/subject/uqpshftx.html