Showing entries 40421 to 40430 of 44029
« 10 Newer Entries | 10 Older Entries »
SHOW INNODB STATUS: ADAPTIVE HASH INDEX


-------------------------------------
INSERT BUFFER AND ADAPTIVE HASH INDEX
-------------------------------------
Ibuf for space 0: size 16812, free list len 20200, seg size 37013, is not empty
Ibuf for space 0: size 16812, free list len 20200, seg size 37013,
89630355 inserts, 89285599 merged recs, 5642191 merges
Hash table size 24902177, used cells 16368903, node heap has 39339 buffer(s)
5523.49 hash searches/s, 1663.78 non-hash searches/s


1st 2 lines show segement size, and if their are any records in the innodb_buffer_pool
Next
How many inserts where done to the insert buffer,
Then
How many records where merged
Finally
How many merges it took to merge the records. (BTREE internals)

Adaptive hash index is hash index Innodb builds for …

[Read more]
SHOW INNODB STATUS: FILE IO


--------
FILE I/O
--------
I/O thread 0 state: waiting for i/o request (insert buffer thread)
I/O thread 1 state: waiting for i/o request (log thread)
I/O thread 2 state: waiting for i/o request (read thread)
I/O thread 3 state: waiting for i/o request (write thread)
Pending normal aio reads: 0, aio writes: 0,
ibuf aio reads: 0, log i/o's: 0, sync i/o's: 0
Pending flushes (fsync) log: 0; buffer pool: 1
29333024 OS file reads, 299924198 OS file writes, 226649540 OS fsyncs
5.33 reads/s, 17408 avg bytes/read, 195.60 writes/s, 77.31 fsyncs/s


Innodb support greater then 4 helper threads (the 4 above) in windows and with a small change the the source it can be increased for unix.

Each Helper thread shows the pending status of how many jobs are queued for executing, with just 4 helper threads on one of my most heavy hit dbs, …

[Read more]
MySQL Community toolbar v 0.2

I proudly present the first stable version of MySQL Community toolbar:

What is that?

MySQL Community Toolbar is a toolbar for your Firefox web browser.

You are able to:

* Navigate trough MySQL Forge and MySQL WebSite’s
* Search Internet, MySQL documentation and/or MySQL WebSite for any information, directly from your Firefox browser.

License
MySQL community Toolbar is under the GPL license. You are able to make this toolbar better. Please do it!. This version is not official MySQL one, but you are free to make improvements and bug reportings.

Download
You can install your personal copy of this toolbar by clickng here

You can visit MySQL Forge Wiki

[Read more]
SHOW INNODB STATUS: TRANSACTIONS


------------
TRANSACTIONS
------------
Trx id counter 4 4177811381
Purge done for trx's n:o < 4 4177810974 undo n:o < 0 0
History list length 68
Total number of lock structs in row lock hash table 0
LIST OF TRANSACTIONS FOR EACH SESSION:
MySQL thread id 6, query id 12052143 Has read all relay log; waiting for the slave I/O thread to update it
---TRANSACTION 4 4177811379, ACTIVE 0 sec, process no 1537, OS thread id 418595012843 committing



  • Purge done for trx's n:o - number of transactions to which a purge is done. Means gets rid of old transactions that are not needed anymore. *Look Tuning secion
  • History list length 68 - number of transaction in the undo space
  • Total number of lock structs in row lock hash table - not locked rows but structures which one row may have …
[Read more]
Visiting Amsterdam and Leiden

Last year I visited Utrecht where we installed some MySQL Cluster. This week I had the chance to attend a training (again MySQL Cluster) in Leiden. Tuesday I had a good excuse to visit Amsterdam and next day Leiden.

Both Amsterdam and Leiden have all these canals which were preserved unlike in Brussels where they actually made the river run under the city (stupid).. I did in both cities a tour on the water but Leiden won. I guess it was more romantic and I had lots of colleagues on the boat too.

One can actually get easy lost in Leiden, or I guess everywhere, but I just lost my colleagues whiles looking at some vinyl shops and old turntables (drool). That was the start of some 3 hours of interesting stuff..

Tomorrow I leave The Netherlands again for Germany after spending some weeks with my family in Belgium. I wonder how cluttered my mailbox is going to be.

(pictures will be posted later …

[Read more]
Commoditizing PHP security

We think it's time to commoditize PHP web application security. You may have heard of Chorizo!. We're proud to announce that from now on it's possible to register for a free account on chorizo-scanner.com.

With this free account, it's possible to use the Chorizo! application service as a proxy and scan 1 host. All scan datas are encrypted, your data is only visible to you. There are also some valuable help documents available that explain the whole process from registering up to uploading the signature file onto your host and how to analyze the results. Please note: as Chorizo! is an application service, you can only scan your hosts that are publicly available or their firewall has the chorizo-scanner.com IP configured. For those of you who want to …

[Read more]
Unexplained replication authentication behaviour

I’m playing with the latest 5.1.11 beta in a master/slave replication situation. Given a lack of H/W lying around I’m configuring a mixed H/W setup to leverage an existing office’s after hours CPUs running Windows XP for my slaves. So here is my test setup.

Server

Linux - 192.168.100.170

The following are the relevent my.cnf settings

[mysqld]
port=3307
server-id = 1
log-bin=mysql-bin

Confirming the server. I did some test commands prior to confirm the position.

$ mysql -uroot -p mysql
Your MySQL connection id is 47 to server version: 5.1.11-beta-log
mysql> show master status;
+------------------+----------+--------------+------------------+
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000001 |     1759 |              |                  | …
[Read more]
3 ways to maintain rollup tables in SQL

At both my current and previous employer I've been involved in designing and maintaining aggregate, or "rollup" tables for advertising traffic data. I have learned several methods of propagating changes from the atomic data through to its aggregations. This article discusses these methods, how to implement them, and their pros and cons.

How to contribute to the MySQL Docs

We had a great question from a reader yesterday:

Is there a todo/nice-to-have list anywhere for MySQL documentation? Or perhaps a list of Devs who require documentation support? Or is all documentation a function of the core Documentation team?

read more

A wickedly cool MySQL Web 2.0 mashup project

OK, so today, I was following up on a headline about the free wireless network project called CUWiN. The project looks pretty awesome; check it out to see how a few people are creating a wireless network mesh from commodity (I mean, really commodity hardware - think 486!). I have no idea whether MySQL could be ovf use for the project -- perhaps, not sure... I might follow up on that at a later date once I find out more information about the project.

However, in perusing the CUWiN website, I happened to come across a really cool web page that maps the CUWiN local area network. So, I tracked the mashup project that is used to display this page through the link on the bottom of the page to the …

[Read more]
Showing entries 40421 to 40430 of 44029
« 10 Newer Entries | 10 Older Entries »