Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-14123

.rocksdb folder may break workflow which re-create data directory

Details

    Description

      I did see many workflows/scripts which re-create data directory with commands like:

      sudo rm -rf /var/lib/mysql/*
      sudo mysql_install_db
      

      OR :

      sudo rm -rf /var/lib/mysql/*
      cp -R /backup-location/* /var/lib/mysql/
      

      The rm command will not clean up eventual .rocksdb folder, which may cause errors in new instance like:

      2017-10-25 10:12:40 139671395502272 [Warning] RocksDB: Schema mismatch - Table d9.b is registered in RocksDB but does not have a .frm file
      2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Problems validating data dictionary against .frm files, exiting
      2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Failed to initialize DDL manager.
      2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' init function returned error.
      2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' registration as a STORAGE ENGINE failed.
      

      Attachments

        Issue Links

          Activity

            anikitin Andrii Nikitin (Inactive) created issue -

            This folder causes problems on many levels (I've linked a couple of open issues). They must be solved somehow before MyRocks goes GA.

            elenst Elena Stepanova added a comment - This folder causes problems on many levels (I've linked a couple of open issues). They must be solved somehow before MyRocks goes GA.
            elenst Elena Stepanova made changes -
            Field Original Value New Value
            elenst Elena Stepanova made changes -
            anikitin Andrii Nikitin (Inactive) made changes -
            Description I did see many workflows/scripts which re-create data directory with commands like:

            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            sudo mysql_install_db
            {code}
            The rm command will not clean up eventual .rocksdb folder, which may cause errors in new instance like:

            {noformat}
            2017-10-25 10:12:40 139671395502272 [Warning] RocksDB: Schema mismatch - Table d9.b is registered in RocksDB but does not have a .frm file
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Problems validating data dictionary against .frm files, exiting
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Failed to initialize DDL manager.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' init function returned error.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' registration as a STORAGE ENGINE failed.
            {noformat}


             
            I did see many workflows/scripts which re-create data directory with commands like:

            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            sudo mysql_install_db
            {code}

            OR :
            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            cp /backup-location/* /var/lib/mysql/
            {code}

            The rm command will not clean up eventual .rocksdb folder, which may cause errors in new instance like:

            {noformat}
            2017-10-25 10:12:40 139671395502272 [Warning] RocksDB: Schema mismatch - Table d9.b is registered in RocksDB but does not have a .frm file
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Problems validating data dictionary against .frm files, exiting
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Failed to initialize DDL manager.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' init function returned error.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' registration as a STORAGE ENGINE failed.
            {noformat}


             
            anikitin Andrii Nikitin (Inactive) made changes -
            Description I did see many workflows/scripts which re-create data directory with commands like:

            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            sudo mysql_install_db
            {code}

            OR :
            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            cp /backup-location/* /var/lib/mysql/
            {code}

            The rm command will not clean up eventual .rocksdb folder, which may cause errors in new instance like:

            {noformat}
            2017-10-25 10:12:40 139671395502272 [Warning] RocksDB: Schema mismatch - Table d9.b is registered in RocksDB but does not have a .frm file
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Problems validating data dictionary against .frm files, exiting
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Failed to initialize DDL manager.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' init function returned error.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' registration as a STORAGE ENGINE failed.
            {noformat}


             
            I did see many workflows/scripts which re-create data directory with commands like:

            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            sudo mysql_install_db
            {code}

            OR :
            {code:bash}
            sudo rm -rf /var/lib/mysql/*
            cp -R /backup-location/* /var/lib/mysql/
            {code}

            The rm command will not clean up eventual .rocksdb folder, which may cause errors in new instance like:

            {noformat}
            2017-10-25 10:12:40 139671395502272 [Warning] RocksDB: Schema mismatch - Table d9.b is registered in RocksDB but does not have a .frm file
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Problems validating data dictionary against .frm files, exiting
            2017-10-25 10:12:40 139671395502272 [ERROR] RocksDB: Failed to initialize DDL manager.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' init function returned error.
            2017-10-25 10:12:40 139671395502272 [ERROR] Plugin 'ROCKSDB' registration as a STORAGE ENGINE failed.
            {noformat}


             
            anikitin Andrii Nikitin (Inactive) made changes -
            psergei Sergei Petrunia made changes -
            psergei Sergei Petrunia made changes -
            Status Open [ 1 ] In Progress [ 3 ]

            Changing its name is a question of changing the default value of rocksdb_datadir.

            Trying to change to #rocksdb.
            I still get "unknown database" in SHOW DATABASES:

            MariaDB [(none)]> show databases;
            +--------------------+
            | Database           |
            +--------------------+
            | #mysql50##rocksdb  |
            | information_schema |
            

            psergei Sergei Petrunia added a comment - Changing its name is a question of changing the default value of rocksdb_datadir . Trying to change to #rocksdb . I still get "unknown database" in SHOW DATABASES: MariaDB [(none)]> show databases; +--------------------+ | Database | +--------------------+ | #mysql50##rocksdb | | information_schema |

            Renamed the folder to #rocksdb.

            psergei Sergei Petrunia added a comment - Renamed the folder to #rocksdb.
            psergei Sergei Petrunia made changes -
            Fix Version/s 10.2.12 [ 22810 ]
            Fix Version/s 10.2 [ 14601 ]
            Resolution Fixed [ 1 ]
            Status In Progress [ 3 ] Closed [ 6 ]
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 83139 ] MariaDB v4 [ 153022 ]

            People

              psergei Sergei Petrunia
              anikitin Andrii Nikitin (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              3 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Git Integration

                  Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.