ObjectWeb has announced the release of C-JDBC 2.0, a package that enables nearly transparent clustering of JDBC sources, for the purposes of using a distributed database as if it were one datasource.
Changes include support for JDBC 3.0 Savepoints, new JGroups version, new serialization protocol, new infrastructure for database backup/restore, full transparency for database metadata, new command line console, and bug fixes.
-
Clustered JDBC front end C-JDBC 2.0 released (11 messages)
- Posted by: Joseph Ottinger
- Posted on: August 09 2005 09:53 EDT
Threaded Messages (11)
- Does it do backup by Robert Greene on August 09 2005 11:51 EDT
- vsnt is trading at 40 cent a share by artful dodger on August 09 2005 11:58 EDT
- coward by Robert Greene on August 09 2005 01:21 EDT
- Does it do backup by Emmanuel Cecchet on August 10 2005 16:44 EDT
- Does it do backup by Robert Greene on August 10 2005 09:30 EDT
- vsnt is trading at 40 cent a share by artful dodger on August 09 2005 11:58 EDT
- Clustered JDBC front end C-JDBC 2.0 released by Cameron Purdy on August 09 2005 12:15 EDT
- Clustered JDBC front end C-JDBC 2.0 released by Joao Cerdeira on August 09 2005 13:25 EDT
- Benchmarks? by Igor Zavialov on August 09 2005 13:46 EDT
- Not a full benchmark, but... by Jesse Sightler on August 09 2005 22:33 EDT
- Not a full benchmark, but... by Emmanuel Cecchet on August 10 2005 04:42 EDT
- Not a full benchmark, but... by Jesse Sightler on August 09 2005 22:33 EDT
- What if data is out of sync across databases ? by Ronald Pomeroy on August 09 2005 15:36 EDT
-
Does it do backup[ Go to top ]
- Posted by: Robert Greene
- Posted on: August 09 2005 11:51 EDT
- in response to Joseph Ottinger
It is nice to see this capability coming to relational technology. We have had transparently distributed database support for years (14) in the Versant Object Database. It is quite useful for using architecture to achieve extremely high scalability without undue burdon on the developer.
However, there are lots of subtle issues with a truely transparent distributed database that can be treated "as if it were one datasource". One obvious one is consistent backup that guarantees data integrity across the set of distributed databases. Without that capability then the usefulness of the feature is substantially degraded.
The Versant database has this ability to take a logically, physically consistent snapshot of a logical database ( distributed set of databases ) for backup. Do other database vendors provide that capability so that this new driver is really useful? I see in the announcement that there is "new infrastructure for backup/restore". Is this able to provide a logically,physically consistent backup across the distribution?
Thanks,
Robert Greene
Versant Corporation
www.versant.com -
vsnt is trading at 40 cent a share[ Go to top ]
- Posted by: artful dodger
- Posted on: August 09 2005 11:58 EDT
- in response to Robert Greene
VSNT is trading at 40 cent a share, loses money and now has a market cap of about 14 mill...yea I'm going to trust my precious data to an object oriented database company trading at 40 cent a share -
coward[ Go to top ]
- Posted by: Robert Greene
- Posted on: August 09 2005 13:21 EDT
- in response to artful dodger
Ah yes ...the technical commentary of a coward.
FYI - Oracle....does. We are embedded in their supply chain management modules.
Robert Greene
Versant Corporation
www.versant.com -
Does it do backup[ Go to top ]
- Posted by: Emmanuel Cecchet
- Posted on: August 10 2005 16:44 EDT
- in response to Robert Greene
Is this able to provide a logically,physically consistent backup across the distribution?
Yes it is. To do this, we manage a cluster-wide transactional log to be able to do this.
Emmanuel -
Does it do backup[ Go to top ]
- Posted by: Robert Greene
- Posted on: August 10 2005 21:30 EDT
- in response to Emmanuel Cecchet
Cool ...if there is a way to hook into this in phase 1, then I could use it with a specialized EJB3.0 driver to provide transparent distribution to Versant and RDB's combined with consistent backup. This is just what I wanted to know.
I will have a look.
Thanks,
Robert Greene
Versant Corporation
www.versant.com -
Clustered JDBC front end C-JDBC 2.0 released[ Go to top ]
- Posted by: Cameron Purdy
- Posted on: August 09 2005 12:15 EDT
- in response to Joseph Ottinger
Is anyone using it in production, and with what kind of loads?
Peace,
Cameron Purdy
Tangosol Coherence: Clustered Shared Memory for Java -
Clustered JDBC front end C-JDBC 2.0 released[ Go to top ]
- Posted by: Joao Cerdeira
- Posted on: August 09 2005 13:25 EDT
- in response to Cameron Purdy
i'm using in production version 1.0.x
and i have some issues :(
some problems. I hope the 2.0 resolve my problems.
Nice idea but not yet nice product -
Benchmarks?[ Go to top ]
- Posted by: Igor Zavialov
- Posted on: August 09 2005 13:46 EDT
- in response to Joseph Ottinger
Very interesting project.
It'd be interesting to see a benchmark (preferably straight JDBC without any EJB, OR framework, etc.) showing how the performance of a single standalone database compares to, say, a respective 2-node C-JDBC cluster.
--
Igor Zavialov, Factoreal Corp.
Financial Data and Technical Analysis solutions. -
Not a full benchmark, but...[ Go to top ]
- Posted by: Jesse Sightler
- Posted on: August 09 2005 22:33 EDT
- in response to Igor Zavialov
I did a simple estimate of a stripped CJDBC installation (many features turned off for improved performance.
~32% Overhead for C-JDBC -
Not a full benchmark, but...[ Go to top ]
- Posted by: Emmanuel Cecchet
- Posted on: August 10 2005 16:42 EDT
- in response to Jesse Sightler
I did a simple estimate of a stripped CJDBC installation (many features turned off for improved performance.~32% Overhead for C-JDBC
Note that database replication has never been meant to speedup writes since writes are replicated. So, a metric in inserts/seconds is only an indication of the cost of high availability for that kind of solution.
It is like measuring the write speed of a disk mirroring, it will always be slower than the speed of a single disk. Just reads can be distributed.
Emmanuel -
What if data is out of sync across databases ?[ Go to top ]
- Posted by: Ronald Pomeroy
- Posted on: August 09 2005 15:36 EDT
- in response to Joseph Ottinger
Something like this could be perfect for helping me migrate some old Smalltalk apps that read/write to multiple databases.
In one app we have a business constraint that if the data in each database isn't the same (disregarding a couple couple columns) it shouldn't be visible to the user.
We currently accomplish this by comparing returned rows in memory before presenting in the UI.
Can the same be accomplished (more elegantly) with these drivers ?
Thanks,
Ron