如何在单个 JdbcTemplateexecute() 和 PostgreSQL 中记录多个 sql 查询的进度

发布于 2024-12-05 21:11:58 字数 117 浏览 1 评论 0原文

我有一个包含许多语句的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山川志 2024-12-12 21:11:58

还有另一种方法可以得到你想要的东西。使用 PostgreSQL 服务器日志。在配置文件 postgresql.conf 中设置选项并重新加载,或者为每个会话设置参数,如下所示:

记录每个 SQL 语句:

set log_statement = 'all';

或者特别寻找慢速查询,例如:所有花费时间超过1000 ms:

set log_min_duration_statement = 1000;

关于 logging-parameters 的手册:

log_statement(枚举)

控制记录哪些 SQL 语句。有效值为 none(关闭)、ddl、mod 和 all(所有语句)。

如果您记录所有内容,请记住随后将其关闭,否则日志文件可能会变得很大。

log_min_duration_statement(整数)

如果语句运行了至少指定的毫秒数,则记录每个已完成语句的持续时间。将其设置为零会打印所有语句持续时间。 (...)

关于如何设置参数的手册。

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:

set log_statement = 'all';

Or hunt for slow queries in particular, for example: everything that takes longer than 1000 ms:

set log_min_duration_statement = 1000;

The manual about logging-parameters:

log_statement (enum)

Controls which SQL statements are logged. Valid values are none (off), ddl, mod, and all (all statements).

If you log everything remember to turn it off afterwards or the log files may grow huge.

log_min_duration_statement (integer)

Causes the duration of each completed statement to be logged if the statement ran for at least the specified number of milliseconds. Setting this to zero prints all statement durations. (...)

The manual on how to set parameters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文