Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Derby or MySQL or...?

Tags:

mysql

derby

For what type of requirements would you choose Apache Derby (or Java DB) over MySQL (or vice versa)? I looked around and people just compare the two but no one talks about when to consider each one. I am developing a web-based application using Glassfish + Java/Restlet + MySQL.

I expect around 100-200 users for this system with a load of about 30-50 concurrent users at a given time - mostly.

I was told to look at Derby if I wish to make the web-app downloadable/distributable. But is that the only reason why I would use it? Is it suitable for web-apps? Has anyone used it? What has been your experience and when do you choose one over the other? (Most discussions of the comparison predate MySQL v5 when it didn't have support for stored procedures, triggers etc., But that is no longer the case).

I can understand a standalone DB server model with a web-server sending the requests, but how does this model change with an embedded db? Or does one default to using Derby in the network configuration?

like image 678
PhD Avatar asked Feb 12 '11 01:02

PhD


People also ask

What is the difference between Derby and MySQL?

Derby is fast but C/C++ is faster as compared to Java, thus making MYSQL faster. 9. The operating systems supported by Derby are Windows, macOs, Linux, Unix, BSD and z/OS. The operating systems supported by MySQL are Windows, macOs, Linux, Unix, AmigaOS, BSD, z/OS and Android.

Which one is better SQL or MySQL?

In terms of data security, the SQL server is much more secure than the MySQL server. In SQL, external processes (like third-party apps) cannot access or manipulate the data directly. While in MySQL, one can easily manipulate or modify the database files during run time using binaries.

Is Derby a database?

Apache Derby is a Relational Database Management System which is fully based on (written/implemented in) Java programming language. It is an open source database developed by Apache Software Foundation. Oracle released the equivalent of Apache Derby with the name JavaDB.

What is Apache Derby used for?

Apache Derby (previously distributed as IBM Cloudscape) is a relational database management system (RDBMS) developed by the Apache Software Foundation that can be embedded in Java programs and used for online transaction processing. It has a 3.5 MB disk-space footprint.


2 Answers

Why are Derby and MySQL the only RDMBS you consider? If you say Derby, you should check out HSQLDB, H2, SQLite as well. If you say MySQL, you should check out Postgres as well (which has a lot more features).

This is just to name some free RDBMS. Of course, as Charlie already put it, there are lots of others and lots of reasons to go either way. Check out this (IMO excellent) comparison page on Wikipedia, where you will find benefits and limitations of any RDBMS:

http://en.wikipedia.org/wiki/Comparison_of_relational_database_management_systems

As far as your requirement about your webapp being "downloadable" is concerned, of course you can embed an RDBMS (any of Derby, H2, HSQLDB) in your webapp. But you can also just make your MySQL or Postgres or whatever integration configurable and give your downloaders instructions about how to set up your webapp themselves. After all, when you use a container-configured DataSource for your webapp, this configuration can be done easily.

Now, even if you think it might be easier for you to develop your webapp with an embedded database, you should always think one step ahead. Questions like:

  • Will you be able to connect to that database directly, in order correct data inconsistencies easily? (It will happen to all of us)
  • Will you be able to alter the schema easily?
  • Will you be able to backup your data easily?
  • etc etc... there are more maintenance questions, too

Since your comments suggest that your data is increasing over time, and it should persist, I wouldn't choose an embedded version, but keep the data separate from the application. Note that this doesn't exclude Derby from your application design. It just means you'd have to run Derby as a standalone server.

like image 131
Lukas Eder Avatar answered Dec 02 '22 09:12

Lukas Eder


The requirements that are going to make the difference are the so-called "nonfunctional" requirements: capacity, reliability, throughput (and response time), availability, and security; this along with the software's own issues, like how easily it's available, how hard it will be to maintain software based on it, and so forth.

Oracle is very fast, very robust, very well supported, and very expensive.

MySQL is a good general choice with used widely. It can be configured for high availability and reliability (through mirroring and master-slave), it's well understood by a lot of programmers, and integrates well into a lot of platform software like Grails, Rails, and JBoss.

Derby is good because it's very platform independent and a lot of people read Java easily.

SQLite is fast, lightweight, and more or less native on Macs.

... and so on.

First, figure out what nonfunctional requirements are important, then choose a DBMS.

Update

Okay, following up your comment.

With those numbers, let me ask first why a separate RDBMS at all? That's 1000 rows -- consider simply storing them in-memory, say in a collection of Collections that you serialize.

If you really need a DB, say because you're using Rails, then you're not challenging ANY RDBMS -- it may be hard to choose because you're in a domain where all the choices are perfectly good. If so, then pick the one that's easiest to use and easiest to support, which is probably but not certainly MySQL, just because everyone uses it.

like image 31
Charlie Martin Avatar answered Dec 02 '22 09:12

Charlie Martin