Showing entries 33153 to 33162 of 44823
« 10 Newer Entries | 10 Older Entries »
Printing in Workbench

A common misunderstanding seems to be that the only way to increase the available “paper space” for a diagram is by increasing the size of the paper. But there is another way to do that, which is in the Model -> Diagram Size dialog, where you can set the number of pages your diagram has, vertically and horizontally (perhaps it’s not very obvious to first time users, so we’ll be working on making it more easily accessible).

Another recurring issue is that of printing in the community version. Direct printing is …

[Read more]
Italian Webinar - Materiale, Domande e Risposte per il Webinar "Guida alla scalabilita' di MySQL"

La registrazione del webinar e le slide sono presenti qui.
Di seguito riporto la sezione di domande e risposte:
Q from Ivo: Tutte le considerazioni sulla scalabilita' fin qui individuate sono valide anche per la versione community di MySQL?
A: si

Q from Alex: Mysql Proxy per la suddivisione delle richieste lettura scittura è ad oggi stabile ?
A: MySQL Proxy e' ancora in fase alfa e non e' consigliato l'utilizzo in produzione.

Q from Massimo: Qual'e' il metodo migliore per il backup incrementale di un db?
A: E' necessario attivara il binary log ed effettuare le operazioni di FLUSH LOG al momento del backup.

Q from Mauro: Ci possono essere applicativi web che inseriscono dei dati nel DB, e che subito rileggono i dati inseriti. Dato  che la replicazione è …

[Read more]
Open source tour of Europe: Poland


To coincide with EURO 2008, I’m embarking on a virtual European tour, taking a quick look at open source policies and deployment projects in the 16 nations that are competing in the tournament.

According to statistics presented by Roberto Galoppini, 2.4% of visitors to SourceForge are from Poland, a statistic which serves its purpose of being both interesting and pointless at the same time.

Also statistically meaningless in terms of open source adoption, but nonetheless interesting is the …

[Read more]
What do you do?

There's an interesting post from a few weeks back by Guy Kawasaki in an article entitled "How to pickup a VC." While it's a short piece illustrating how boneheaded "attention grabbers" will work against you with VCs, I think it's actually quite a good reminder about effective communications for any IT vendor. I can't count how many times I've sat through a vendor pitch or product presentation and after 20 minutes I'm wondering "Why don't they just tell me what it is that they do?" Instead, I get a lot of discussion about open source freedom, community, business models, licensing... READ MORE

PBXT compiles without change under MySQL 5.1.25!

OK, now I know that the GA version of 5.1 is rapidly approaching. PBXT compiles with the latest release of MySQL without any changes!

This has never been the case before. Just search the PBXT code for MYSQL_VERSION_ID, and you will find things like:

#if MYSQL_VERSION_ID < 50114
XT_RETURN_VOID;
#else
XT_RETURN(0);
#endif

and, even worse:

#if MYSQL_VERSION_ID < 60000
#if MYSQL_VERSION_ID >= 50124
#define USE_CONST_SAVE
#endif
#else
#if MYSQL_VERSION_ID >= 60005
#define USE_CONST_SAVE
#endif
#endif

The lack of changes that affect pluggable storage engines can only mean that the bug fixes required are diminishing in scope.

And I believe this is a far better gauge of whether GA is close than any other …

[Read more]
Weekly Seminar #3 “MySQL Storage Engines”

Hi,

Today’s MySQL Weekly Seminar is third one, which theme was “MySQL Storage Engines”.  It seems that almost 80% of attendees are using InnoDB for their system.  However, there are actually more storage engines available for MySQL.  This time, Kajiyama; MySQL Technical Evangelist presented variable storage engines along with tips and examples for how to use them.

First, the seminar started with the introduction of popular MySQL storage engines such as MyISAM, InnoDB and Falcon.  He described architectures and features for each storage engine and what storage engine is appropriate for each application.

Then, it went deeper into storage engines details.  Each engine has specific features.  And third-party storage engines’ unique functions and next-generation transactional storage …

[Read more]
Speaking on Velocity and Book Signing

I should have written about it a while ago but I never had a change.
I'm speaking at Velocity conference taking place in the Bay Area 23-24 of June.

At the same conference we will have a book signing event for our book High Performance MySQL 2nd Edition which is finally in printing and should start shipping next week.

Entry posted by peter | No comment

Add to: …

[Read more]
Using the 'EXAMPLE' storage engine on MySQL 5.1.24-rc

MySQL 5.1.24-rc ships with a EXAMPLE storage engine which is basically a dummy storage engine and serves as a useful source to start writing your own custom storage engine.

However, it is not available for use, by default. You can verify this as follows:

mysql> show engines;

+------------+---------+-----------------------------------------------------------+--------------+----+------------+ | Engine     | Support | Comment                                                   | Transactions | XA | Savepoints | +------------+---------+-----------------------------------------------------------+--------------+----+------------+ | …

[Read more]
Using the 'EXAMPLE' storage engine on MySQL 5.1.24-rc

MySQL 5.1.24-rc ships with a EXAMPLE storage engine which is basically a dummy storage engine and serves as a useful source to start writing your own custom storage engine.

However, it is not available for use, by default. You can verify this as follows:

mysql> show engines;

+------------+---------+-----------------------------------------------------------+--------------+----+------------+ | Engine     | Support | Comment                                                   | Transactions | XA | Savepoints | +------------+---------+-----------------------------------------------------------+--------------+----+------------+ | …

[Read more]
Tracking MySQL replication lag

I sometimes encounter the issue where a replication slave is behind the master, while happily connected and in state of "waiting for binlog event". Clearly it somehow didn't get the memo that new stuff was available. I know others have seen this too, but for lack of reproducibility it's not yet a bug report.
Mark Barger of ANYwebcam has been kind enough to tweak a script so Nagios can alert on this problem, see the Nagios Scripts page in the Resources/Tools section of the OQ website. See the page itself for further details on monitoring and dealing with the problem.

Tracking MySQL replication status in general is important anyway, as basically a master doesn't "care" whether a slave is connected or not (the system is slave driven) and a slave can quite validly not be connected or replicating at any point in time (stopped to take a backup …

[Read more]
Showing entries 33153 to 33162 of 44823
« 10 Newer Entries | 10 Older Entries »