|
|
||
Dana Nourie's BlogApril 2008 ArchivesSun Writers Cover the 2008 JavaOne ConferencePosted by dnourie on April 29, 2008 at 02:19 PM | Permalink | Comments (0)Sun writers have begun covering the 2008 JavaOne Conference. Get information on Java University, CommunityOne, the latest technologies, views on technical sessions and Birds-of-a-Feather (BOF) talks, and special interviews with attendees and evangelists.
Be sure to subscribe to the RSS feed so you can read all of the entries as they appear.
Dana Nourie
An Introduction to BLOB Streaming for MySQL ProjectPosted by dnourie on April 17, 2008 at 10:14 AM | Permalink | Comments (0)
Speaker, Paul McCullagh For ordinary types of data, MySQL sends the buffer from the client to the server. Streaming
involves making a connection from the source to the destination
continuously, storing and streaming simultaneously. But BLOBs are not ordinary data. The problem of storing BLOBs in a database is multifaceted. BLOBs create big rows in memory, and sequential scans are not possible. The database can become too big to handle, and then the database won't scale well. In addition, BLOBs slows down replication, and BLOB data must be written to the binary log. So, why put BLOBs in the database? So that BLOB operations are transactional and
have valid references, and so you have the data all in one place, which is good
for testing, Small BLOBs are handled better by databases, and it's convenient to handle all your data the same way. Additionally, with
BLOBs in a database, your backups are more consistent. Lastly,
putting the BLOBs in a database makes replication possible. To overcome these issues, the MySQL Project streams BLOB data
directly in and out of the database.You can store Blobs of any size in the
database, and create a scalable back-end that can handle any throughput and
storage requirement. The object is to provide an open system that can
be used by all engines. MySQL Conference Keynote & WorkbenchPosted by dnourie on April 15, 2008 at 01:51 PM | Permalink | Comments (0)I'm writing the blogs about the MySQL Conference at http://blogs.sun.com/mysqlconf/ because of some technical issues. This morning I added two blogs: The MySQL Workbench: http://blogs.sun.com/mysqlconf/entry/the_mysql_workbench and The World with Free Software: http://blogs.sun.com/mysqlconf/entry/the_world_with_free_software Dana Nourie MySQL ConferencePosted by dnourie on April 14, 2008 at 08:23 PM | Permalink | Comments (0)The MySQL Conference & Expo in Santa Clara, CA starts this week, and I am looking forward to the sessions. Today was tutorial day, but my day officially begins Tuesday morning and will go until Thursday. I started using the MySQL database about nine years ago when I was creating web sites. Most web service providers used MySQL for their customers, and they still do. MySQL was popular then, and it's even more so now. Along with it's popularity, its list of features and robustness has grown over the years. I was excited when I heard the announcement of the acquisition by Sun Microsystems. Immediately, I downloaded MySQL onto my system, and begin working with MySQL in the NetBeans IDE. It was an easy integration, and I am having a great time developing web apps that use this database. This week I am looking forward to the many sessions I'll be attending. It was hard to choose sessions for certain times, as so many of them sound really good. I'll blog about as many of those sessions that I can, and share the juicy details with all of you who are unable to attend, or may be at the conference but in a different session. Tomorrow morning are the keynotes, and then we are off to the technical goodies: The Lost Art of the Self Join --- I'm looking forward to a refresher on on joins, and getting some nice concrete technical advice. Best Practices for Database Administrators -- This sounds like it's going to be nice solid information. Talk = Ruby + MySql.new(bie): An Introduction to Using MySQL with Ruby -- I'm most familiar with using Ruby with NetBeans, so it'll be interested to get the details and skinny on MySQL and Ruby. If you'd like to see more information on the conference itself, check out their web site. MySQL Conference & Expo
~ Dana Nourie, Staff Writer, Sun Microsystems
| ||
|
|