Coder Social home page Coder Social logo

Comments (5)

philip-galera avatar philip-galera commented on August 22, 2024

This is reproducible both on Fedora and on Ubuntu. Our devel server is able to reproduce the error.

from mysql-wsrep.

philip-galera avatar philip-galera commented on August 22, 2024

Possible fix:

--- ../scripts/wsrep_sst_xtrabackup-v2.sh       2014-12-16 00:32:31.996949073 -0800
+++ ../scripts/wsrep_sst_xtrabackup-v2  2015-01-02 06:01:55.240283301 -0800
@@ -550,7 +550,7 @@
 get_stream
 get_transfer

-if ${INNOBACKUPEX_BIN} /tmp --help  | grep -q -- '--version-check'; then
+if ${INNOBACKUPEX_BIN} /tmp --help  | grep -- '--version-check' >/dev/null ; then
     disver="--no-version-check"
 fi

If the output from grep is not silenced completely, the script fails elsewhere.

from mysql-wsrep.

philip-galera avatar philip-galera commented on August 22, 2024

This is caused by this xtrabackup revision:

http://bazaar.launchpad.net/~percona-core/percona-xtrabackup/2.3/revision/5031

which was an attempt to add stack traces for error conditions.

from mysql-wsrep.

akopytov avatar akopytov commented on August 22, 2024

There's nothing wrong with the referenced revision: the code does what it is supposed to do. The root cause is a fatal signal received by innobackupex, rather than the stray backtrace, which is only a side effect. Which can be fixed by either making innobackupex ignore certain fatal signals with --help, or suppressing error output from "innobackupex --help". How about adding "2>/dev/null"?

from mysql-wsrep.

philip-galera avatar philip-galera commented on August 22, 2024

Yes, you are right, as you can see above, adding >/dev/null seems to fix the problem.

from mysql-wsrep.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.