Showing entries 38563 to 38572 of 44045
« 10 Newer Entries | 10 Older Entries »
Backup Software and The Long Tail of Open Source

An addition to The Long Tail of “The Long Tail” related blogs

The Long Tail effect of open source has been discussed in several contexts. Some of the interpretations are likely very different from what Chris Anderson intended, but more and more niche needs of a relatively small set of people (which don’t have economies to justify product development by proprietary software companies) are being met by open source software. Witness more than 140,000 projects registered on SourceForge.

Whenever I install Red Hat Linux I am amused by some of the choices available for the language of the operating system - what is different when running a Red Hat box with English(Singapore) vs. English(India)!? It is also heartening to see support for regional languages making computers accessible to even remote villages (which don’t provide economic motivation to proprietary OS providers).

The long tail effect of open source …

[Read more]
How To Review A Bug

Last week I and Monty gave a short talk at the MySQL Lead's Meeting in Stockholm on "How to review a bug".

I converted the talk over to a PDF file for those who are interested:
http://krow.net/images/howtoreviewabug.pdf

Here is the outline:

Bad Ideas
Suggest to run --record for mysql-test-run for anything that breaks.
Disable Tests within a Bug Fix.
Both Fix bugs and clean up code in the same patch.
Ignore new code that you don?t understand during a review.
Discourage developer from writing test to prove that the bug was fixed.
Prefer changes that require huge changes to all tests, they were probably broken.
Never ask from help from the developer who wrote the original code.
Methodology
Read bug report, find out what user?s problem was, and read the description of …

[Read more]
New Falcon Alpha Available

All -

The Falcon team has just posted a new Alpha release of the new Falcon transaction storage engine. The 5.2.3 release contains a number of bug fixes, performance enhancements, and can be downloaded on the 5.2 download page.

In addition, part two of my article series on Falcon has just been posted to the Community Articles page on the MySQL web site. I cover how Falcon performs transaction management, how concurrency is handled, and finish with an interesting example of how fast Falcon can accomplish rollbacks when they’re needed. Be sure to check it out and be looking for part three, which will be coming soon.

Thanks for your continued support and be sure to drop me a line and let me know what you think of Falcon.

OurSQL Episode 8: Basic MySQL Security

Listener feedback:

MySQL will go public. Would you buy stock if you had the money? Why or why not?
Call the comment line at +1 617-674-2369 (US phone number)

Use Odeo to leave a voice mail through your computer:
http://odeo.com/sendmeamessage/Sheeri

Leave a message at the Technocation forums:
http://tinyurl.com/sc6qw

Send an e-mail to podcast@technocation.org

Episode 8 Show Notes:
This episode’s feature is basic MySQL Security. Not only will we discuss what the basic security is, but we’ll discuss the *why*s, not just the how’s.

Direct play this episode at:
http://tinyurl.com/2r9kom

Subscribe to the podcast by clicking: …

[Read more]
Don't Forget The WHERE Clause

We've all done it but possibly not on this scale. Someone may have forgotten a WHERE clause when a bank customer received 75000 bank statements. At 27 pence per letter, that cost about £20000 (US$40000) just for postage. Unfortunately, it wasn't an isolated incident. In the same fortnight, the UK Government managed to fubar a mail merge to 26000 pensioners. In both cases, quality control seems to be evaded or absent.

ID Integrated Data SA --The New Authorized MySQL Education Partner in Western Switzerland

ID Integrated Data SA situated in Petit-Lancy,Geneva, is further demonstrating its confidence in open source solutions by signing a training partnership agreement with MySQL AB, the developer of the popular database software.

Tabjump for TinyMCE

During my work for Journalizer I created a plugin for TinyMCE. What does it do? Well, it solves a problem, but which one? We have list of TinyMCE-controlled textareas and it is so common that you use the tab-key to jump to the next field that we wanted that as well. Unfortunately, this doesn't work in TinyMCE.

Why is that? When using TinyMCE, you declare a HTML form element as "managed" by TinyMCE. What it does is substituting the actual HTML element with an iframe that can be edited like rich text. I.e. you can make things bold and italic and all that just with a click on button and you immediately see the results — nice. But because the actual textarea gets replaced by the iframe, common "tabbing" through your form elements no longer works because …

[Read more]
MySQL: Transactions and Autocommit

Some people believe that the ability to commit or rollback multiple statements as a single unit is a defining characteristic of the concept of transactions. They draw the -false- conclusion that enabling autocommit is the same as disabling transactions. It is easy to demonstrate why this is not true.
Autocommit
With autocommit enabled, every statement is wrapped within its own transaction. Successful execution of a statement is implicitly followed by a COMMIT, and the occurrence of an error aborts the transaction, rolling back any changes.

By default, autocommit is enabled in MySQL. You can check the current setting by executing the following statement:

mysql> select @@autocommit;
+--------------+
| @@autocommit |
+--------------+
| 1 |
+--------------+
1 row in set (0.00 sec)


The @@ prefix …

[Read more]
MySQL spanning different timezones

So what, if you are planning a centralized MySQL server and many clients all around the world?
First of all, check the manual
Then install timezone description tables from here
Then run a small example to see how the server and client timezones can interact.
Here is the standard server setup

mysql> show variables like 'time_zone';
+---------------+--------+
| Variable_name | Value |
+---------------+--------+
| time_zone | SYSTEM |
+---------------+--------+
1 row in set (0.00 sec)


Now add a table for our experiments

mysql> create table time_table (datetime_col datetime);
Query OK, 0 rows affected (0.11 sec)


Let's add some data in …

[Read more]
Content delivery system design mistakes

This week I helped dealing with performance problems (part MySQL related and part related to LAMP in general) of system which does quite a bit of content delivery, serving file downloads and images - something a lot of web sites need to do these days. There were quite a bit of mistakes in design for this one which I though worth to note, adding some issues seen in other systems.

Note this list applies to static content distribution, dynamic content has some of its own issues which need different treatment.

DNS TTL Settings The system was using DNS based load balancing, using something like img23.domain.com to serve some of the images. I'm not big fan of purely DNS based load balancing and HA but it works if configured well. In this case however the problem was zero TTL set in DNS configuration. This obviously adds latency especially for "aggregate" pages which may require images to be pulled from 10 different image …

[Read more]
Showing entries 38563 to 38572 of 44045
« 10 Newer Entries | 10 Older Entries »