如何在单个 JdbcTemplateexecute() 和 PostgreSQL 中记录多个 sql 查询的进度
我有一个包含许多语句的 SQL 脚本,我使用 JdbcTemplate.execute() 执行这些语句。有些查询很慢,我想将整个脚本的进度写入日志。
就目前情况而言,我只有在所有语句完成后才会写入日志。
I have a SQL script with many statements which I execute using JdbcTemplate.execute(). Some queries are slow and I'd like to write progress of the whole script to the logs.
As it stands, I only get logs written once all the statements have completed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还有另一种方法可以得到你想要的东西。使用 PostgreSQL 服务器日志。在配置文件
postgresql.conf
中设置选项并重新加载,或者为每个会话设置参数,如下所示:记录每个 SQL 语句:
或者特别寻找慢速查询,例如:所有花费时间超过1000 ms:
关于 logging-parameters 的手册:
如果您记录所有内容,请记住随后将其关闭,否则日志文件可能会变得很大。
关于如何设置参数的手册。
There is another way to get what you want. Use the PostgreSQL server log. Set the options in the config file
postgresql.conf
and reload, or set parameters per session like this:Log every single SQL statement:
Or hunt for slow queries in particular, for example: everything that takes longer than 1000 ms:
The manual about logging-parameters:
If you log everything remember to turn it off afterwards or the log files may grow huge.
The manual on how to set parameters.