SQL 异常导致 Hibernate 二级缓存以 Infinispan 作为提供者具有陈旧数据

发布于 2024-11-30 09:41:28 字数 318 浏览 3 评论 0原文

我们在基于 JPA(Hibernate) 的应用程序中使用 Infinispan(使用 JGroups 集群)作为二级缓存。当数据库操作失败时,我们会看到二级缓存已过时。例如:

1) 尝试创建登录名为“joe”的用户。 2)调用persist(user); 3)由于数据库唯一性约束导致持久失败。 4)通过id对login=joe进行查找(假设login是PK)。 5) Hibernate 从 Infinispan 缓存返回 joe 用户,即使数据库没有它。

在这种情况下,配置 XA 事务并让 Infinispan 参与 XA 似乎有点矫枉过正。 XA 是解决这个问题的唯一方法吗?

We are using Infinispan (clustered using JGroups) as our second level cache in our JPA(Hibernate) based application. When a database operation fails, we see that the level-2 cache is stale. For example:

1) Attempt to create a user with login "joe."
2) Call persist(user);
3) persist fails due to database uniqueness constraint.
4) Do a find by id on login=joe (assuming login is the PK).
5) Hibernate returns joe user from Infinispan cache, even though database doesn't have it.

Configuring XA transactions and have Infinispan participate in XA seems like overkill in this situation. Is XA the only way to address this?

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

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

发布评论

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

评论(2

爱你是孤单的心事 2024-12-07 09:41:28

启用事务同步,比XA便宜很多。

请参阅http://infinispan.blogspot.com/2011/ 06/faster-infinispan-based-second-level.html 了解更多详细信息。

Enable transaction synchronization, much cheaper than XA.

See http://infinispan.blogspot.com/2011/06/faster-infinispan-based-second-level.html for more details.

迷路的信 2024-12-07 09:41:28

我必须通过部署 Atomikos 来启用 XA 事务,以保持缓存同步。其他解决方案不起作用。

I had to enable XA transactions by deploying Atomikos to keep the cache in sync. Other solutions did not work.

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