There are two ways InnoDB can organize tablespaces. First is when all data, indexes and system buffers are stored in a single tablespace. This is typicaly one or several ibdata files. A well known innodb_file_per_table option brings the second one. Tables and system areas are split into different files. Usually system tablespace is located in ibdata1 file and every InnoDB table has two files e.g.  actor.frm and actor.ibd.

The annoying thing about .ibd files you can’t easily copy the an .ibd file to another MySQL server. If you try to very often you’ll get an error in the log:

However sometimes you have to connect the .ibd file to an alien ibdata1.

There are several situation when you have to:

1. ibdata1 is erroneously removed

2. ibdata1 is heavily corrupted and innodb_force_recovery doesn’t help

Chris Calender suggests two methods. The first is create/drop the table many times until space_id in InnoDB dictionary and .ibd file match. The second is to edit space_id inside .ibd file with a hex editor.

I would like to elaborate the second method.

But let’s understand first what’s going on and why InnoDB refuses to use suggested .ibd file.

There is an InnoDB dictionary. It consists of several internal tables. For our topic only SYS_TABLES and SYS_INDEXES are relevant. These are usual InnoDB tables, but they’re hidden from a user(you can see them in information_scheme database in Percona Server though).

The structure of these tables is following:

SYS_TABLES:

SYS_INDEXES:

Please note field SPACE. For table actor it is equal to 15:

SPACE is equal to 15 in all actor’s indexes:

In InnoDB world actor.ibd is a tablespace. It has space_id and it is equal to 15 for this particular table at this particular server.

As you can see secondary indexes are stored in actor.ibd as well.

But where is space_id in actor.ibd?

Like any other tablespace actor.ibd costsists of a set of InnoDB pages. A page is 16k long (UNIV_PAGE_SIZE in the source code).

Let’s take a look at the page header:

InnoDB Page Header
NameSizeDescription
FIL_PAGE_SPACE_OR_CHKSUM4/* in < MySQL-4.0.14 space id the
page belongs to (== 0) but in later
versions the ‘new’ checksum of the
page */
FIL_PAGE_OFFSET4ordinal page number from start of space
FIL_PAGE_PREV4offset of previous page in key order
FIL_PAGE_NEXT4offset of next page in key order
FIL_PAGE_LSN8log serial number of page’s latest log record
FIL_PAGE_TYPE2current defined types are: FIL_PAGE_INDEX, FIL_PAGE_UNDO_LOG, FIL_PAGE_INODE, FIL_PAGE_IBUF_FREE_LIST
FIL_PAGE_FILE_FLUSH_LSN8“the file has been flushed to disk at least up to this lsn” (log serial number), valid only on the first page of the file
FIL_PAGE_ARCH_LOG_NO_OR_SPACE_NO4/* starting from 4.1.x this
contains the space id of the page */

So, space_id is 4 bytes written to every InnoDB page. An .ibd file can be huge, while ibdata1 is usually smaller. Thus, it is easier to modify space_id in InnoDB dictionary once than in every InnoDB page.

How let’s connect actor.ibd from sakila database taken from some MySQL server.

0. Create empty InnoDB tablespace.

1. Create the table:

This command will create respective records in SYS_TABLES and SYS_INDEXES.

2. Now let’s modify SPACE in InnoDB dictionary. MySQL must be stopped at this point. There is a tool ibdconnect in Percona InnoDB Recovery Tool. Make sure you’re using the latest version from the trunk.

It reads space_id from an .ibd file and updates the dictionary in ibdata1.

It is possible that space_id from actor.ibd is already used by some other table.
In this case if ibdata was updated MySQL will fail to start with error:

To refrain from such error ibdconnect does check if the space_id is already used.
It will refuse to update ibdata1:

In this case you need to drop table test.t2 and create it again. InnoDB will assign other space_id, thus 12 will be freed.

3. Now SPACE is modified in the dictionary, but checksums are bad. To regenerate them use innochecksum from the same toolset. Run it two times:

4. The third time to be sure ibdata1 has valid checksums:

5. Now you can start MySQL and take a dump from the table. The table is accessible, but due to obvious reason it shold not be used in production.

The tool ibdconnect was tested on MySQL 5.1 on CentOS 5.6 x86_64. However it expected to work on all versions of MySQL/InnoDB.

27 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Chris Calender

Excellent post! That is a great explanation, and most appreciated. :)

yawyway

Hi Aleksandr, I ‘ve just tried your promising tool and imported an .ibd file from 5.1.31 to 5.1.51 under debian.
Each step was OK, but at the end, I obtained an empty table and following messages :

May 16 14:19:30 debian /etc/mysql/debian-start[14967]: Triggering myisam-recover for all MyISAM tables
May 16 14:19:30 debian mysqld: 110516 14:19:30 InnoDB: Error: page 3 log sequence number 20 1214354523
May 16 14:19:30 debian mysqld: InnoDB: is in the future! Current system log sequence number 0 56436.
May 16 14:19:30 debian mysqld: InnoDB: Your database may be corrupt or you may have copied the InnoDB
May 16 14:19:30 debian mysqld: InnoDB: tablespace but not the InnoDB log files. See
May 16 14:19:30 debian mysqld: InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-recovery.html
May 16 14:19:30 debian mysqld: InnoDB: for more information.

Only point I can see is step 0 that I have not completed. What do you mean by “0. Create empty InnoDB tablespace.” ?
Must I import .ibd into an empty database ? In this case ibdconnect does not need to check if the space_id is already used, am I right ?

Many thanks
y

Tim Vaillancourt

Fantastic work! I’ll send you guys a case of beer when this saves my [moderated] in the future.

Cheers,

Tim

Philip Orleans

The tool
innochecksum /usr/mysql/data/ibdata1
page 0 invalid (fails old style checksum)

is not working at all. In your post , you use a certain “-f”, but the tool says “Parameter incorrect.
Can you make sure that this tool works with Percona Server 5.5?

Philip Orleans

Actually I was using the innochecksum that comes with mysql. Once I used yours, I run it several times until there were no more errors. But the database is useless. The data is corrupt and I get these messages, hundreds
111108 3:29:15 InnoDB: Error: page 1023743 log sequence number 30042909687
InnoDB: is in the future! Current system log sequence number 14824393635.
InnoDB: Your database may be corrupt or you may have copied the InnoDB
InnoDB: tablespace but not the InnoDB log files. See
InnoDB: http://dev.mysql.com/doc/refman/5.5/en/forcing-innodb-recovery.html
InnoDB: for more information.
111108 3:29:15 InnoDB: Error: page 1023735 log sequence number 34414181181
InnoDB: is in the future! Current system log sequence number 14824393635.
InnoDB: Your database may be corrupt or you may have copied the InnoDB
InnoDB: tablespace but not the InnoDB log files. See
InnoDB: http://dev.mysql.com/doc/refman/5.5/en/forcing-innodb-recovery.html

The question, is how do we overcome this issue? Is there a way to ingest an *.ibd file or this is a lost cause?

Bevilaqua

Aleksandr,

What changes if I have two files ibdata (ibdata1 and ibdata2) defined by innodb_data_file_path?

Because I’m not getting the data recovered. The table shows up empty.

Thank you!

Hugs!

Aleksandr

Bevilaqua,

The dictionary resides in ibdata1 regardless the number of common table spaces.
If you were able to SELECT from table, then ibdconnect did its job.
You don’t see records on some other reason. Probably it’s better to restore the records with constraints_parser then.

morii
Piskunov Yuriy

Hi. This is a great stuff! Thanx.
But i have a problem with partitionings table. For example. If i try:
./ibdconnect -o /var/lib/mysql/ibdata1 -f /var/lib/mysql/mydb/st_results#P#p_1.ibd -d mydb -t st_results

where st_results#P#p_1.idb is first partition, than i give:
TABLE_ID of mydb.st_results can not be 0
in output.

Is there any ways to connecting partitioning table. Thanx for response! Excuse me for my language experience.

Aleksandr Kuzminsky

Yuri,

I think a partition appears in the dictionary as a normal table, but with name st_results#P#p_1.
ibdconnect scans SYS_TABLES in order to find table st_results. There is no such of course.
Try this way:
./ibdconnect -o /var/lib/mysql/ibdata1 -f “/var/lib/mysql/mydb/st_results#P#p_1.ibd” -d mydb -t “st_results#P#p_1”
If doesn’t work please file a bug here https://bugs.launchpad.net/percona-data-recovery-tool-for-innodb

Alex

Aleksandr,

I’m trying to restore my database (ibdata has been removed…), step-by-step instructions.
After running “innochecksum” and starting the server and trying:
> use database;
> desc bad_table;
>
> ERROR 2006 (HY000): MySQL server has gone away
> No connection. Trying to reconnect…
> Connection id: 3
> Current database: database

> ERROR 2006 (HY000): MySQL server has gone away
> No connection. Trying to reconnect…
> ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/tmp/mysql.sock’ (61)
> ERROR:
> Can’t connect to the server

In error log:
120612 02:43:36 InnoDB: Error: page 0 log sequence number 30042909687
InnoDB: is in the future! Current system log sequence number 14824393635.
InnoDB: Your database may be corrupt or you may have copied the InnoDB
InnoDB: tablespace but not the InnoDB log files. See
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/forcing-innodb-recovery.html
InnoDB: for more information
120613 02:43:36 mysqld_safe mysqld from pid file /work/mysql/mysql.pid ended

I checked several times steps – all right.

Versions:
FreeBSD 9, MySQL: Server version: 5.1.60-log FreeBSD port: mysql-server-5.1.60
InnoDB Plugin is using!

Alex

Uaahhaa!! I did it!
There are more steps for my installation with InnoDB Plugin:
0. InnoDB Plugin must be enabled.
1. Do steps 0 and 1 described in this post.
2. Shutdown MySQL.
3. Edit my.cnf to disable InnoDB Plugin.
4. Do steps 2, 3 and 4.
5. Start on MySQL (with built-in innodb, not plugin)
6. do “ALTER TABLE bad_table ENGINE=MyISAM;”

Done.
Now we can create dump via mysqldump and restore data.

Aleksandr, thank you for your help!!!

Alex

Aleksandr,

Thanks for advice!

Octavian

Hi,

When trying to use innochecksum to fix ibdata1 I get this error:
./innochecksum -f /var/lib/mysql/ibdata1.recovery
page 65 invalid (fails log sequence number check)
page 65: log sequence number: first = 0x80000000; second = 0x1A4

I had to make a copy of ibdata1 using dd because the server crashed and ibdata got corrupted:
dd if=ibdata1 of=ibdata1.recovery conv=noerrors

Any idea what to do to fix ibdata? thanks!

Aleksandr

Octavian,

Check out the last revision from the trunk (a critical bug was fixed recently https://bugs.launchpad.net/percona-data-recovery-tool-for-innodb/+bug/1033677) and run innochecksum with -l option. It existed before, but wasn’t documented:

$ ./innochecksum page-65
page 0 invalid (fails log sequence number check)
page 0: log sequence number: first = 0x80000000; second = 0x000001A4
$ ./innochecksum page-65 -l 0x000001A4
page 0 invalid (fails log sequence number check)
page 0: log sequence number: first = 0x80000000; second = 0x000001A4
New LSN will be 0x1A4
$ ./innochecksum page-65
$

Octavian

Thank you Aleksandr!

I’ve checked out the code and recompiled it. Looks promising so far (I think! 🙂 ):

page 84 invalid (fails log sequence number check)
page 84: log sequence number: first = 0x50209105; second = 0xA33EC800
[root@lightbringer percona-data-recovery-tool-for-innodb]# ./innochecksum /var/lib/mysql/ibdata1.recovery -l 0xA33EC800
page 84 invalid (fails log sequence number check)
page 84: log sequence number: first = 0x50209105; second = 0xA33EC800
New LSN will be 0xA33EC800
page 84 invalid (fails new style checksum)
page 84: new style: calculated = 0x029337C2; recorded = 0x8AB50009

[root@lightbringer percona-data-recovery-tool-for-innodb]# ./innochecksum /var/lib/mysql/ibdata1.recovery -f
page 84 invalid (fails new style checksum)
page 84: new style: calculated = 0x029337C2; recorded = 0x8AB50009
fixing new checksum of page 84
page 84 invalid (fails old style checksum)
page 84: old style: calculated = 0x41D7F596; recorded = 0x57000001
fixing old checksum of page 84
page 85 invalid (fails log sequence number check)
page 85: log sequence number: first = 0x00210003; second = 0x00000000

I’ll let you know if I manage to recover the data.

Thanks again for this tool!

Filip

Thanks a lot for this post! I had an old mysql server, with raid but without a logical backup. I couldn’t restore data until I read your post. BTW I had to start mysql with innodb_force_recovery=5 to be able to dump the data. BTW-2 I read this blog since a while, you guys rock!

Adaly

Hi, I’m sorry for my english.
I use percona-data-recovery and almost all restored.
but there is a table beaten to pieces.

[code]
CREATE TABLE sms_storage_2013_08 (
id int(11) unsigned NOT NULL,
in_sms_id int(11) unsigned DEFAULT NULL,
date datetime DEFAULT NULL,
status int(1) DEFAULT NULL,
text text,
msisdn varchar(10) NOT NULL,
bnum varchar(10) DEFAULT NULL,
service varchar(10) DEFAULT NULL,
type enum(‘in’,’out’) DEFAULT NULL,
subscribe_guid binary(36) DEFAULT NULL,
transaction_id varchar(20) DEFAULT NULL,
delivery_date datetime DEFAULT NULL,
PRIMARY KEY (msisdn,id),
KEY id (id),
KEY msisdn_cguid (subscribe_guid,transaction_id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 CHECKSUM=1 DELAY_KEY_WRITE=1 ROW_FORMAT=DYNAMIC
/*!50100 PARTITION BY KEY (msisdn)
PARTITIONS 10 */;
[/code]

structure restored but connected parts. IDB file did not work
Use this command # ./ibdconnect -o /var/lib/mysql/ibdata1 -f /var/lib/mysql/mts_info_archives/sms_storage_2013_08#P#p0.ibd -d mts_info_archives -t sms_storage_2013_08#P#p0
and
/ibdconnect -o /var/lib/mysql/ibdata1 -f /var/lib/mysql/mts_info_archives/sms_storage_2013_08#P#p0.ibd -d mts_info_archives -t sms_storage_2013_08
and
/ibdconnect -o /var/lib/mysql/ibdata1 -f /var/lib/mysql/mts_info_archives/sms_storage_2013_08.par -d mts_info_archives -t sms_storage_2013_08

but it did not

Irwanto

does any one have ibdconnect.exe for windows
please mail me irwan_forum at yahoo.co.id

Juan Belon

Irwanto: you can compile it with cygwin, i did it and it worked 🙂

Kirill

Hi, in what my be problem?
Next record at offset: C8
Record position: C8
Checking field lengths for a row (SYS_TABLES): OFFSETS: 16 21 25 62 2 0 0 114 111 116
Db/table: dbtovar77/b_sale_lang
Space id: 1634953984 (0x61736B00)
Next record at offset: 74
TABLE_ID of dbbest/.b_agent can not be 0

Kirill

./ibdconnect -o /var/lib/mysql/ibdata1 -f /var/lib/mysql/dbbest/b_agent.ibd -d dbbest -t b_agent

Oleg

Upgrade to 5.6 will simplify the restoration a lot! I highly recommend to upgrade to the latest version and try Chris Calender suggests methods if Percona tools do not help.

Andrei ZeeGiant

Hello,

Does this still hold valid for 5.6/5.7?