为 Weblogic 的 10.3.5 特定工作管理器分配名称

发布于 2024-12-26 03:01:09 字数 300 浏览 2 评论 0原文

有什么方法可以为特定的 Weblogic Work Manager 线程分配名称吗?

例如: 我定义了一个名为:TestWorkManager 的工作管理器,每次该工作管理器执行某些任务时,都会将以下行打印到日志文件中。

{[ACTIVE] ExecuteThread:队列为“2”:“weblogic.kernel.Default(自调整)”}

这样我实际上无法知道哪个工作管理器执行任务,所以我想为他的线程分配名称。

谢谢。

There is any way to assign names to specific Weblogic Work Manager threads?

for example:
I defined a work manager called: TestWorkManager, each time that this work manager executes some task the following line will be printed to the log file.

{[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'}

in this way i can't actually know which work manager executes the task, so i want to assignnames to his threads.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倥絔 2025-01-02 03:01:09

我认为线程不是由WorkManager执行,因为它们更像是用于管理它们的策略/策略(例如:线程调度)。也就是说,WorkManager 不是线程池,也不是线程队列。

因此,Weblogic 将记录 WorkManager 的名称,用于与其角色直接相关的事物,而不是所有执行(例如:卡住线程、最小/最大约束等...)

AdminServer控制台在Server:Monitoring:Thread中显示线程的WorkManager名称

当报告卡住的线程时,JVM 标志 -Dweblogic.StuckThreadHandling=true 可用于在日志文件中附加 WorkManager 的名称。

您可以使用 Server:Debug 中的 AdminServer 控制台启用特定的调试信息/密钥,例如 weblogic.work.[*]

我对 WLS 还没有足够的经验,但如果您所描述的情况是可能的,那么我会很高兴得到答案,因为我也需要这样

I think that threads are not executed by WorkManager as they are more like Policy/Strategy which are used to manage them (e.g : Thread Scheduling). That is WorkManager is not Thread Pool nor Thread Queue.

Thus Weblogic will log WorkManager's name for things that are directly related to its role and not for all executions (e.g : Stuck thread, Min/Max constraints, etc...)

AdminServer console displays threads' WorkManager's name in Server:Monitoring:Thread

The JVM flag -Dweblogic.StuckThreadHandling=true can be used to append WorkManager's name in log files when a stuck thread is reported.

You can enable specific debug info/key using AdminServer console in Server:Debug e.g weblogic.work.[*]

I don't have yet enough experience about WLS but if what you described is possible then I would be pleased to get the answer as I also need it that way

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