异步负载生成器

发布于 2024-12-26 03:22:38 字数 242 浏览 0 评论 0原文

我正在尝试使用 Jetty 的 HttpClient 在 Java 中编写异步负载生成器,因为它提供异步通信。

但我面临一些问题。 其中主要的是为了生成负载,我使用了 java.util.TimerTask。但 TimerTask 类的问题是它不能保证时间的准确性,即与预期时间的某些毫秒可能会更多。因此,如果我尝试生成 1000 tps,我将只能获得大约 700-800 tps。

谁能建议我如何克服这个问题。有什么工具可以作为参考吗?

I'm trying to write asynchronous load generator in Java using Jetty's HttpClient as it provides Asynchronous communication.

But i'm facing some problems.
The major of which is that for generating load i had used java.util.TimerTask. But the problem with TimerTask class is that it does not guarantees accuracy in time i.e. certain miliseconds from the expected time might be more. Due to this, if i try to generate 1000 tps i will be getting only around 700-800 tps.

Can anyone suggest me how to overcome this issue. Is there any implement that i can use as reference ??

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

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

发布评论

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

评论(2

婴鹅 2025-01-02 03:22:38

我将使用 Apache JMeter 来完成此任务。

I would use Apache JMeter for this task.

呆橘 2025-01-02 03:22:38

我遇到了类似的问题并使用以下方法解决了它。您可能应该开始使用 Scheduled Executor Service 来安排调用,而不是使用计时器或睡眠,然后您很可能能够达到所需的 TPS。

I was facing a similar problem and resolved it using the following approach. Instead of using Timer, or using sleep, you should probably start scheduling calls using Scheduled Executor Service and then you will most likely will be able to achieve the required TPS.

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