Showing entries 34783 to 34792 of 44919
« 10 Newer Entries | 10 Older Entries »
Easter Challenge 2008 (MySQL) - continued

Just before the Easter holidays I posted this challenge for a MySQL schema. For lack of submissions to far, I'll leave it open for a little bit longer.

Perhaps you reckon the challenge sucks ;-) In that case please comment and tell why! That'd be good feedback. Otherwise, do take a stab at it. If you did and got stuck, comment about this too. Then others can help and move it forward.

MySQL 6.0 vs 5.1 in TPC-H queries

Last week I played with queries from TPC-H benchmarks, particularly comparing MySQL 6.0.4-alpha with 5.1. MySQL 6.0 is interesting here, as there is a lot of new changes in optimizer, which should affect execution plan of TPC-H queries. In reality only two queries (from 22) have significantly better execution time (about them in next posts), but I want to write about is queries that execute slower in new MySQL 6.0 version.

Query is pretty simple

PLAIN TEXT SQL:

  1. SELECT sum(l_extendedprice * l_discount) AS revenue
  2. FROM lineitem WHERE l_shipdate>= date '1995-01-01'
  3. AND l_shipdate <date '1995-01-01' + interval '1' year
  4. AND l_discount BETWEEN 0.09 - 0.01 AND 0.09 + 0.01
  5. AND l_quantity <24;

with execution plain (in 5.1)

PLAIN TEXT SQL:

[Read more]
OpenSolaris, Security and the NSA (National Security Agency)

We made a very significant announcement last week, of a collaboration with one of the most (if not the most) security sensitive institutions on earth, the United States government's National Security Agency. They've joined the burgeoning OpenSolaris community, to collaborate with Sun and other community members on the future of ultra-secure operating systems.

To put this in context, community engagement has always been one of the most important ways Sun innovates in the marketplace - we partner with those that have extreme demands (whether it's the world's largest supercomputing facility, or the world's most paranoid security professionals (no offense intended), or the world's largest archival storage facilities), and then we leverage that expertise to create products for the mass market. We let extreme customers teach …

[Read more]
OSBC Report: CBS Interactive, open source, and innovation

(Credit: Matt Asay)

I've known Steve Pearson for a year or two, and have always been blown away by how aggressive his company, CBS Interactive, has been with adopting open source. MySQL, Linux, Spring, Lucene, etc. etc. The list of open-source projects that CBS Interactive deploys is long.

Why? Why does CBS Interactive use open source? According to Steve:

  • Speed of development (rapid prototyping);
  • Ease of access (Access to the code as well as documentation);
  • Expandability (Ability to contribute back to the core product);
  • Cost.

Steve went on to describe three projects that it has moved to open source. It turns out that the company's adoption of open source has evolved over time, based on bad experiences with proprietary software (and its vendors). CBS Interactive replaced and revamped its content management system with open source. It runs its David Letterman …

[Read more]
FederatedX Pluggable Storage Engine Version 0.3 Released

The FederateX Pluggable Storage Engine for MySQL, version 0.3 has been released. This release contains a fix for bug #21583 which will allow FederatedX to better handle UTF8 (thanks for patch from Tetsuro Ikeda). I had to also add logic to "real_query" to not attempt using values that are not yet defined until get_share is called (such as table->s) since real_query is now used at "ha_federatedx::create" to check if a foreign data source exists in the first place. I also added a "support_files" directory which will contain useful files such as configuration files for running two servers (testing) and any good information which can be added to help users have an easier time running FederatedX. Another thing I've also started is some sort of test framework for running tests on pluggable storage engines. I always found MySQL's test framework with "mysql-test-run.pl" and miscellaneous …

[Read more]
Letters to the Editor (1)

I recently got this email from a reader on my site and since I haven't posted for a while, I thought it might be a good discussion:


Jay,

I've been reading your site and had a question that you might have good insight for.

I'm working on a high-traffic website that includes forums. All the code is custom PHP, including the forums, simply because the PHP BB software out there doesn't scale as large and as well as I wanted. I've implemented heavy memcached usage, distributed databases, etc. to handle any level of growth we may hit.

read more

Letters to the Editor (1)

I recently got this email from a reader on my site and since I haven't posted for a while, I thought it might be a good discussion:


Jay,

I've been reading your site and had a question that you might have good insight for.

I'm working on a high-traffic website that includes forums. All the code is custom PHP, including the forums, simply because the PHP BB software out there doesn't scale as large and as well as I wanted. I've implemented heavy memcached usage, distributed databases, etc. to handle any level of growth we may hit.

read more

EnterpriseDB raises cash and its open-source profile

Good things come in threes, as EnterpriseDB confirmed today. The company today announced that it has raised a $10 million Series C round, including backing from IBM. With $37.5 million in funding to date, EnterpriseDB isn't hurting for cash.

This, however, has not been EnterpriseDB's primary problem. It's not cash that it has lacked, but open-source cachet. Its story of "Oracle performance and interoperability at a fraction of the cost" is a winner, but it was muted by its lack of a compelling open-source story.

That just changed.

...

MySQL Information Schema applications at the UC2008

Last week I blogged about the upcoming MySQL Users conference, in particular about the Writing MySQL UDFs tutorial that I will be delivering.

I will also be doing the Grand Tour of the Information Schema and its Applications.


I will discuss the elements in the MySQL information schema, and provide tips to write queries against it. Most of the talk …

[Read more]
IBM invests in EnterpriseDB

While this year’s OSBC event has actually started yet, the big news on day one looks set to be EnterpriseDB’s announcement that IBM has joined existing investors in a $10m Series C funding round (EnterpriseDB also announced its new Postgres Plus strategy and the open sourcing of GridSQL).

IBM’s investment in EnterpriseDB is particularly fascinating given how rare it is for the company to make venture capital-style investments and also given the dynamic between IBM, Sun and Oracle. IBM usually chooses to support startups indirectly through its …

[Read more]
Showing entries 34783 to 34792 of 44919
« 10 Newer Entries | 10 Older Entries »