如何在Websphere 6.1集群环境中运行计划任务

发布于 2024-09-11 04:34:57 字数 291 浏览 2 评论 0原文

我想在 Websphere 6.1 集群环境上部署的 Web 应用程序中每隔一段时间运行一次后台任务。该任务将访问数据库、发送电子邮件并写入数据库。

我正在考虑在首次加载网络应用程序时启动一个线程,如下所示: Tomcat servlet 应用程序的后台线程

由于它是集群环境,那么不在集群的每个单独节点上运行任务的最佳方法是什么?

I would like to run a background task on some interval from a web application I have deployed on Websphere 6.1 clustered environment. The task will access a database, send emails, and write to the database.

I was thinking about kicking off a thread when the web app is first loaded, as suggested here: Background Thread for a Tomcat servlet app.

Since it is a clustered environment, what would be the best way to NOT have task run on each individual node of the cluster?

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

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

发布评论

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

评论(1

咆哮 2024-09-18 04:34:57

查看 WAS 调度服务

它谈到集群环境:

集群中的调度程序守护进程

当有多个调度器时
配置为使用相同的表(如
是集群中的情况
环境),任何守护进程都可以
找到一个任务并在其中设置闹钟
Java 虚拟机(JVM)。任务
是在虚拟机中执行的
调度程序守护进程首先运行的地方,
直到守护进程停止并且
另一个守护进程启动。如果一个
server1 上的应用程序安排
要运行的任务并且 server2 已启动
在 server1 之前,则任务运行在
服务器2。

Have a look at the WAS Scheduler service.

It says of clustered environments:

Scheduler daemons in a cluster

When multiple schedulers are
configured to use the same tables (as
is the case in a clustered
environment), any of the daemons can
find a task and set the alarm in its
Java virtual machine (JVM). The task
is executed in the virtual machine
where the scheduler daemon first runs,
until the daemon is stopped and
another daemon starts. If an
application on server1 schedules a
task to run and server2 was started
before server1, then the task runs on
server2.

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