如何在 MySQL 和 Derby 之间设置复制或联合?

发布于 2024-08-24 20:03:50 字数 182 浏览 8 评论 0原文

也许这还不可能,但是...

在 MySQL 和 Derby 之间设置复制或联合的最简单方法是什么?

我需要一种方法,将数据更新/插入/删除到 Derby 中的某个表中,以尽可能快速有效地自动流入 MySQL 中的等效相同表中。

当然,这可以在应用程序代码中完成,但至少可以说,这是不优雅、缓慢且低效的。

Perhaps this is not possible yet, but...

What's the easiest way to setup Replication or Federation between MySQL and Derby?

I need a way for data updates/inserts/deletes into a certain table in Derby to automatically flow into an equivalent identical table in MySQL, as quickly and efficiently as possible.

This can be done in application code of course, but it would be inelegant, slow, and inefficient to say the least.

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

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

发布评论

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

评论(1

乖不如嘢 2024-08-31 20:03:51

我还没有尝试过,但我想使用 c-jdbc、红杉或(红杉的后继者)。

例如,从 c-jdbc 主页:
C-JDBC 是一个开源 (LGPL) 数据库集群中间件,它允许任何 Java 应用程序通过 JDBC(tm) 透明地访问数据库集群。数据库在多个节点之间分布和复制,C-JDBC 平衡这些节点之间的查询C-JDBC 处理节点故障并提供对检查点和热恢复的支持。”

简短的功能概述:

  • 无需修改现有应用程序或数据库,
  • 先进的 RAIDb 技术提供高可用性,
  • 具有独特的负载平衡和查询结果缓存功能的性能可扩展性,
  • 基于 JMX 的集成管理和监控,
  • 100% Java 实现,允许跨平台移植,
  • 开放源代码已获得 LGPL 许可。

它的功能超出了您的需要,但应该涵盖您的用例。

I haven't tried it, but I imagine it shouldn't bee to hard using either c-jdbc, sequoia or tungsten (sequoia's successor).

For example, from the c-jdbc home page:
" C-JDBC is an open source (LGPL) database cluster middleware that allows any Java application to transparently access a cluster of databases through JDBC(tm). The database is distributed and replicated among several nodes and C-JDBC balances the queries among these nodes. C-JDBC handles node failures and provides support for checkpointing and hot recovery."

Short feature overview:

  • No modification of existing applications or databases,
  • High availability provided by advanced RAIDb technology,
  • Performance scalability with unique load balancing and query result caching features,
  • Integrated JMX-based administration and monitoring,
  • 100% Java implementation allowing portability across platforms,
  • Open source licensed under LGPL.

It does more than you need, but should cover your use case.

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