Percona XtraBackup: Obtendo um erro sobre "Muitos arquivos abertos", como posso resolver esse problema?

1

Estou tentando fazer backup usando o Percona XtraBackup e recebendo o seguinte erro:

[root@ads-dev1 ~]# innobackupex /root/db

InnoDB Backup Utility v1.5.1-xtrabackup; Copyright 2003, 2009 Innobase Oy
and Percona LLC and/or its affiliates 2009-2013.  All Rights Reserved.

This software is published under
the GNU GENERAL PUBLIC LICENSE Version 2, June 1991.

140722 11:52:16  innobackupex: Starting mysql with options:  --unbuffered --
140722 11:52:16  innobackupex: Connected to database with mysql child process (pid=15930)
140722 11:52:22  innobackupex: Connection to database server closed
IMPORTANT: Please check that the backup run completes successfully.
           At the end of a successful backup run innobackupex
           prints "completed OK!".

innobackupex: Using mysql  Ver 14.12 Distrib 5.0.95, for redhat-linux-gnu (x86_64) using readline 5.1
innobackupex: Using mysql server version Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

innobackupex: Created backup directory /root/db/2014-07-22_11-52-22
140722 11:52:22  innobackupex: Starting mysql with options:  --unbuffered --
140722 11:52:22  innobackupex: Connected to database with mysql child process (pid=15953)
140722 11:52:24  innobackupex: Connection to database server closed

140722 11:52:24  innobackupex: Starting ibbackup with command: xtrabackup_51  --defaults-group="mysqld" --backup --suspend-at-end --target-dir=/root/db/2014-07-22_11-52-22 --tmpdir=/tmp
innobackupex: Waiting for ibbackup (pid=15959) to suspend
innobackupex: Suspend file '/root/db/2014-07-22_11-52-22/xtrabackup_suspended'

xtrabackup_51 version 2.0.8 for MySQL server 5.1.59 unknown-linux-gnu (x86_64) (revision id: 587)
xtrabackup: uses posix_fadvise().
xtrabackup: cd to /var/lib/mysql
xtrabackup: Target instance is assumed as followings.
xtrabackup:   innodb_data_home_dir = ./
xtrabackup:   innodb_data_file_path = ibdata1:10M:autoextend
xtrabackup:   innodb_log_group_home_dir = ./
xtrabackup:   innodb_log_files_in_group = 3
xtrabackup:   innodb_log_file_size = 536870912
xtrabackup: using O_DIRECT
>> log scanned up to (94 3209639289)
140722 11:52:25  InnoDB: Operating system error number 24 in a file operation.
InnoDB: Error number 24 means 'Too many open files'.
InnoDB: Some operating system error numbers are described at
InnoDB: http://dev.mysql.com/doc/refman/5.1/en/operating-system-error-codes.html
InnoDB: Error: could not open single-table tablespace file
InnoDB: ./roei_cc/transport.ibd!
InnoDB: We do not continue the crash recovery, because the table may become
InnoDB: corrupt if we cannot apply the log records in the InnoDB log to it.
InnoDB: To fix the problem and start mysqld:
InnoDB: 1) If there is a permission problem in the file and mysqld cannot
InnoDB: open the file, you should modify the permissions.
InnoDB: 2) If the table is not needed, or you can restore it from a backup,
InnoDB: then you can remove the .ibd file, and InnoDB will do a normal
InnoDB: crash recovery and ignore that table.
InnoDB: 3) If the file system or the disk is broken, and you cannot remove
InnoDB: the .ibd file, you can set innodb_force_recovery > 0 in my.cnf
InnoDB: and force InnoDB to continue crash recovery here.
innobackupex: Error: ibbackup child process has died at /usr/bin/innobackupex line 386.
[root@ads-dev1 ~]# 

Eu verifiquei as permissões nos arquivos, mas não consegui encontrar um problema, eu também tentei executar o comando usando o usuário mysql e recebi o mesmo erro e até mesmo executei o próximo comando:

# ulimit -n 4096 ; innobackupex /root/db

Mas tem o mesmo erro exato, alguma ideia?

    
por Itai Ganot 22.07.2014 / 10:57

2 respostas

1

De fazer uma pequena pesquisa sobre o código de erro 24, isso parece ser um limite nos arquivos numéricos que qualquer usuário pode ter aberto.

Você pode encontrar esses limites executando ulimit -Hn e ulimit -Sn . o -Hn é o limite não passável, definido pelo root.

Referenciando link

Você terá que aumentar o limite de arquivos abertos até que o erro desapareça. Como usuário root, primeiro: ulimit -a para encontrar o número máximo atual de arquivos abertos e, em seguida, defina um novo limite com ulimit -n 2048 / ulimit -n 4094 etc, provavelmente incrementando até a potência de 2 até encontrar o tamanho correto para sua implementação .

    
por 22.07.2014 / 11:33
0

Para este problema, por favor, aumente ulimit. Primeiro marque , ulimit -Sn , ulimit -Hn Em seguida, aumentar o limite usando por ulimit -n 10240 No meu caso, ele está funcionando bem Xtrabackup comando depois de mudar ulimit

    
por 22.09.2017 / 08:51