Showing entries 37321 to 37330 of 44802
« 10 Newer Entries | 10 Older Entries »
High Scalability

I think anyone into databases, Linux and so on (i.e. the LAMP stack), will benefit from the High Scalability website. Heck, any web developer will. Its well tagged (say, you’re into mysql or memcached), has a lot of content, and links to other sites that it gets its summaries/information from. Useful resource for all those into scalability (not necessarily high performance).

Incidentally, I see information about bdb (in the forums), but where are all the reports about highly scaling sites running postgresql? It’d be interesting to read, and catalogue, I think

Technorati Tags: …

[Read more]
451 CAOS Links - 2007.08.07

Sun opens new microprocessor design. IBM launches eco-efficient Linux initiative. EnterpriseDB announces professional-grade PostgreSQL distribution. (and more)

Sun Microsystems Enters Commercial Silicon Market With World’s Fastest Commodity Microprocessor, Sun Microsystems (Press Release)

IBM Launches “Big Green Linux” Initiative, IBM (Press Release)

EnterpriseDB Announces First-Ever Professional-Grade PostgreSQL Distribution for Linux, EnterpriseDB (Press Release)

EnterpriseDB Introduces Powerful Business Intelligence and Data …

[Read more]
With Dell move, Red Hat remembers JBoss

It's nice to see Red Hat investing in JBoss. It's good for the company and, I believe, good for JBoss.

In the first formal offering of the JBoss Application Platform with an OEM, Red Hat and Dell today announced that Dell will be shipping its PowerEdge servers with the JBoss Enterprise Application Platform or the Red Hat Application Stack, which includes Red Hat Enterprise Linux, JBoss Enterprise Application Platform and MySQL.

Most interestingly (though not surprisingly), you can get JBoss Enteprise Application Platform preintegrated and bundled with Windows, too.

The Dell/Red Hat offering features three solutions:

...

Splitting queries to improve performance

I often read articles saying to combine statements and send less queries. But you seldom see advise about splitting queries to improve performance. Here is what I came across just the other day:

SELECT IF(`uid_to`=@user, `uid_from`, `uid_to`) AS `uid`, `message`, `date`, `uid_to`=@user AS received
  FROM `beepme_msg`
  WHERE (`uid_from`=@user AND `uid_to`!=@user) OR (`uid_to`=@user AND `uid_from`!=@user)
  ORDER BY `uid_to`, `date`;

The query gets all messages send and received by the user, filtering our message the user send to himself. This looks like a good query since you’ll get all you data in one call. In reality it will mess up your performance, since it can’t use any indexes and will therefor use a table scan. And as we know, tables scans are slow.

The ‘OR’ statement basically messes this up, since only one index can be used per table. We can see what happens a bit better if …

[Read more]
Event: Learn How to Increase Recoverability of MySQL Databases - presented by BakBone on Tuesday, August 21, 2007

Event: Learn How to Increase Recoverability of MySQL Databases - presented by BakBone on Tuesday, August 21, 2007

connector/odbc 3.51.18

we were able to get out this month?s connector/odbc release a little earlier in the month than usual. one reason we made the release earlier was to get a replacement for last month?s 3.51.17 out there, because that release had an unfortunate bug that caused problems when working with many odbc applications, like microsoft access.

we were also able to get under 90 bugs by fixing a number of other bugs, and working through more of the old bugs and figuring out that they were either already solved or otherwise no longer relevant.

the other reason to get this out earlier in the month has to do with a project that should see some more daylight by the end of the month. more on that when the time …

[Read more]
MySQL Proxy and a Global Transaction ID

The idea is as old as Replication is:

How do you know which is the most current slave.

You can use the Master_Binlog_Pos to guess what is most up to date, but which transaction does this binlog position match ?

With the proxy you can add a global transaction ID to your setup, if you let the inject some information into the stream.

The idea is simple and is documented in various places.

Create a MEMORY table which is replicated with a single UNSIGNED BIGINT and increment it at the end of each transaction.

CREATE TABLE trx (
  trx_id BIGINT UNSIGNED NOT NULL
) ENGINE=memory;

INSERT INTO trx VALUES ( 0 );

When ever you commit a transaction UPDATE the trx\_id field:

UPDATE trx SET trx_id = trx_id + 1

Usecases:

  • identify which slave is most current and switch to it in case of master failure …
[Read more]
MySQL Cluster Webinar & Evaluation Guide

Hello,

Please join us on one of our upcoming webinars entitled "Designing, Evaluating and Benchmarking MySQL Cluster"...

North America
August 8 @ 10 AM PDT

EMEA
August 15 @ 3:00 PM CET

For registration details:

http://www.mysql.com/news-and-events/web-seminars/

In this webinar learn the fundamentals of how to design and select the proper components for a successful MySQL Cluster evaluation. We will explore hardware, networking and software requirements. Work through a basic installation, functional testing. Finally, we will close with an examination of the recent benchmark results performed in conjunction with Intel and Dolphin Interconnect Solutions.

In case you missed Johan's post earlier today, we've also put together an evaluation guide for MySQL Cluster which goes into more detail on the topics covered in the webinar. Look …

[Read more]
Evaluating MySQL Cluster

How can you evaluate if MySQL Cluster is a good fit for you or not?
Me myself and Jimmy Guerrero (Snr Product Manager) has written a whitepaper about it.

Of course, answering that question is not easy, but in the whitepaper we present ideas for how to make it easier and to increase your chances of success whether it is evaluating MySQL Cluster for a migration project or designing a new mission critical database application where high performance, scalability, and high availability are key requirements.

Jimmy will also have a Webex on the subject:
Wednesday, August 08, 2007, 10:00 am PDT, 1:00 pm EDT, 18:00 GMT
and you are very welcome to register here


Also, I want to mention my friend Jim Dowlings's work on a few scripts …

[Read more]
OpenSuSE's MySQL subpackage names

From OpenSuSE's MySQL 5.0.41-1 changelog:- renamed subpackages according to library packaging policy:
  mysql-shared -> libmysqlclient15, libmysqlclient_r15
  mysql-devel -> libmysqlclient-devel (pulls in both flavors)
Thanks. It was time.

Showing entries 37321 to 37330 of 44802
« 10 Newer Entries | 10 Older Entries »