我有一个用 JAX-RS 实现的 REST 服务。有些操作需要很长时间才能完成,可能需要 15-30 分钟。对于这些情况,我倾向于调度一个后台线程来处理长时间运行的操作,然后立即响应 HTTP 状态 202 ACCEPTED。响应将包含一个带有 URL 的位置标头,客户端可以使用该 URL 来轮询进度。
这种方法需要创建线程来处理长时间运行的操作,这样可以立即返回 202 ACCEPTED。我也知道在 Java EE 容器中创建自己的线程通常是不好的做法!
我的问题如下:
- 人们是否同意这是一种正确的方法?
- 假设它是正确的,人们能否推荐一个“良好实践”的解决方案,使我能够在后台调度长时间运行的操作并立即返回?
另外,为了避免管理我自己的线程,我研究了 JAX-RS 异步服务器 API。不幸的是,尽管这提高了服务器吞吐量,但它不允许我立即响应 ACCEPTED。
泽西岛声明如下:
Note that the use of server-side asynchronous processing model will not improve the
request processing time perceived by the client. It will however increase the
throughput of the server, by releasing the initial request processing thread back to
the I/O container while the request may still be waiting in a queue for processing or
the processing may still be running on another dedicated thread. The released I/O
container thread can be used to accept and process new incoming request connections.
任何帮助表示赞赏。谢谢!