Details

    Description

      The purpose of this task is to ensure that DROP DATABASE is crash safe.

      This means that if the server is killed during drop database crashes , the database and binary log will be consistent when the server has done engine and ddl recovery.
      All tables that where already dropped or started to be dropped will be fully dropped and binary logged.
      Before this task there was a change that one could, after a crash, have stray .frm files
      and dropped tables was not binary logged.

      For this particular project, we will ensure that every executed DROP TABLE is atomic and will be logged to the binary log.

      This is the same behaviour that we have with multi-table DROP TABLE.
      Making DROP DATABASE atomic (either everything is dropped or nothing) will be fixed in a future task.

      Description of how the current task should work:

      • Collect list of tables
      • DDL log tables as they are dropped
      • DDL log drop database
      • Delete db.opt
      • Delete data directory
      • Deactive ddl log entry

      This is in line of how things are now (minus ddl logging) except that
      we delete db.opt file last to not loose it if DROP DATABASE fails.

      On recovery we have to ensure that all dropped tables are logged in
      binary log and that they are properly dropped (as with atomic drop
      table).
      No new tables be dropped as part of recovery.

      Recovery of active drop database ddl log entry:

      • Update binary log with dropped tables. If table list is longer than
        max_allowed_packet, then the query will be split into multiple drop queries.
      • If drop database was ddl logged but not in binary log
      • drop the db.opt file and database directory.
      • Log into the binary log

      Attachments

        Issue Links

          Activity

            monty Michael Widenius created issue -
            monty Michael Widenius made changes -
            Field Original Value New Value
            ralf.gebhardt Ralf Gebhardt made changes -
            Priority Major [ 3 ] Critical [ 2 ]
            serg Sergei Golubchik made changes -
            Status Open [ 1 ] In Progress [ 3 ]
            monty Michael Widenius made changes -
            Description The purpose of this task is to ensure that DROP DATABASE is atomic.

            Description of how this should work:

            - Collect list of tables
            - DDL log tables as they are dropped
            - DDL log drop database
            - Delete db.opt
            - Delete data directory
            - Deactive ddl log entry

            This is in line of how things are now (minus ddl logging) except that
            we delete db.opt file last to not loose it if DROP DATABASE fails.

            On recovery we have to ensure that all dropped tables are logged in
            binary log and that they are properly dropped (as with atomic drop
            table).
            No new tables be dropped as part of recovery.

            Recovery of active drop database ddl log entry:
            - Update binary log with dropped tables. If table list is longer than
              max_allowed_packet, then the query will be split into multiple drop queries.
            - If drop database was ddl logged but not in binary log
              - drop the db.opt file and database directory.
              - Log into the binary log
            The purpose of this task is to ensure that DROP DATABASE is atomic.

            For this particular project, we will ensure that every executed DROP TABLE is atomic and will be logged to the binary log.

            However multi-table drop is not atomic. If there is a crash in the middle of a drop database, those
            tables that where already dropped will continue to be dropped. Any table that was in the middle of
            a drop will be properly dropped. Any other tables will stay as they are.
            This is the same behaviour that we have with multi-table DROP TABLE.
            This will be fixed in a future task.

            Description of how the current task should work:

            - Collect list of tables
            - DDL log tables as they are dropped
            - DDL log drop database
            - Delete db.opt
            - Delete data directory
            - Deactive ddl log entry

            This is in line of how things are now (minus ddl logging) except that
            we delete db.opt file last to not loose it if DROP DATABASE fails.

            On recovery we have to ensure that all dropped tables are logged in
            binary log and that they are properly dropped (as with atomic drop
            table).
            No new tables be dropped as part of recovery.

            Recovery of active drop database ddl log entry:
            - Update binary log with dropped tables. If table list is longer than
              max_allowed_packet, then the query will be split into multiple drop queries.
            - If drop database was ddl logged but not in binary log
              - drop the db.opt file and database directory.
              - Log into the binary log
            monty Michael Widenius made changes -
            Description The purpose of this task is to ensure that DROP DATABASE is atomic.

            For this particular project, we will ensure that every executed DROP TABLE is atomic and will be logged to the binary log.

            However multi-table drop is not atomic. If there is a crash in the middle of a drop database, those
            tables that where already dropped will continue to be dropped. Any table that was in the middle of
            a drop will be properly dropped. Any other tables will stay as they are.
            This is the same behaviour that we have with multi-table DROP TABLE.
            This will be fixed in a future task.

            Description of how the current task should work:

            - Collect list of tables
            - DDL log tables as they are dropped
            - DDL log drop database
            - Delete db.opt
            - Delete data directory
            - Deactive ddl log entry

            This is in line of how things are now (minus ddl logging) except that
            we delete db.opt file last to not loose it if DROP DATABASE fails.

            On recovery we have to ensure that all dropped tables are logged in
            binary log and that they are properly dropped (as with atomic drop
            table).
            No new tables be dropped as part of recovery.

            Recovery of active drop database ddl log entry:
            - Update binary log with dropped tables. If table list is longer than
              max_allowed_packet, then the query will be split into multiple drop queries.
            - If drop database was ddl logged but not in binary log
              - drop the db.opt file and database directory.
              - Log into the binary log
            The purpose of this task is to ensure that DROP DATABASE is atomic.

            For this particular project, we will ensure that every executed DROP TABLE is atomic and will be logged to the binary log.

            However multi-table drop is not atomic. If there is a crash in the middle of a drop database, those tables that where already dropped will continue to be dropped. Any table that was in the middle of a drop will be properly dropped. Any other tables will stay as they are.
            This is the same behaviour that we have with multi-table DROP TABLE.
            This will be fixed in a future task where we will either drop everything or nothing.

            Description of how the current task should work:

            - Collect list of tables
            - DDL log tables as they are dropped
            - DDL log drop database
            - Delete db.opt
            - Delete data directory
            - Deactive ddl log entry

            This is in line of how things are now (minus ddl logging) except that
            we delete db.opt file last to not loose it if DROP DATABASE fails.

            On recovery we have to ensure that all dropped tables are logged in
            binary log and that they are properly dropped (as with atomic drop
            table).
            No new tables be dropped as part of recovery.

            Recovery of active drop database ddl log entry:
            - Update binary log with dropped tables. If table list is longer than
              max_allowed_packet, then the query will be split into multiple drop queries.
            - If drop database was ddl logged but not in binary log
              - drop the db.opt file and database directory.
              - Log into the binary log
            monty Michael Widenius made changes -
            Summary Atomic DROP DATABASE Crash-safe DROP DATABASE
            monty Michael Widenius made changes -
            Description The purpose of this task is to ensure that DROP DATABASE is atomic.

            For this particular project, we will ensure that every executed DROP TABLE is atomic and will be logged to the binary log.

            However multi-table drop is not atomic. If there is a crash in the middle of a drop database, those tables that where already dropped will continue to be dropped. Any table that was in the middle of a drop will be properly dropped. Any other tables will stay as they are.
            This is the same behaviour that we have with multi-table DROP TABLE.
            This will be fixed in a future task where we will either drop everything or nothing.

            Description of how the current task should work:

            - Collect list of tables
            - DDL log tables as they are dropped
            - DDL log drop database
            - Delete db.opt
            - Delete data directory
            - Deactive ddl log entry

            This is in line of how things are now (minus ddl logging) except that
            we delete db.opt file last to not loose it if DROP DATABASE fails.

            On recovery we have to ensure that all dropped tables are logged in
            binary log and that they are properly dropped (as with atomic drop
            table).
            No new tables be dropped as part of recovery.

            Recovery of active drop database ddl log entry:
            - Update binary log with dropped tables. If table list is longer than
              max_allowed_packet, then the query will be split into multiple drop queries.
            - If drop database was ddl logged but not in binary log
              - drop the db.opt file and database directory.
              - Log into the binary log
            The purpose of this task is to ensure that DROP DATABASE is crash safe.

            This means that if the server is killed during drop database crashes , the database and binary log will be consistent when the server has done engine and ddl recovery.
            All tables that where already dropped or started to be dropped will be fully dropped and binary logged.
            Before this task there was a change that one could, after a crash, have stray .frm files
            and dropped tables was not binary logged.

            For this particular project, we will ensure that every executed DROP TABLE is atomic and will be logged to the binary log.

            This is the same behaviour that we have with multi-table DROP TABLE.
            Making DROP DATABASE atomic (either everything is dropped or nothing) will be fixed in a future task.

            Description of how the current task should work:

            - Collect list of tables
            - DDL log tables as they are dropped
            - DDL log drop database
            - Delete db.opt
            - Delete data directory
            - Deactive ddl log entry

            This is in line of how things are now (minus ddl logging) except that
            we delete db.opt file last to not loose it if DROP DATABASE fails.

            On recovery we have to ensure that all dropped tables are logged in
            binary log and that they are properly dropped (as with atomic drop
            table).
            No new tables be dropped as part of recovery.

            Recovery of active drop database ddl log entry:
            - Update binary log with dropped tables. If table list is longer than
              max_allowed_packet, then the query will be split into multiple drop queries.
            - If drop database was ddl logged but not in binary log
              - drop the db.opt file and database directory.
              - Log into the binary log

            I feel that handlerton::drop_database is largely redundant after MDEV-25506 and other changes. It would be invoked as a last clean-up step to remove any garbage that could have been left behind in InnoDB.

            However, in a future implementation of atomic or transactional DROP DATABASE, the simplified InnoDB implementation of handlerton::drop_database could come in handy. The operation probably should be two-phase: first check with each storage engine that the operation would succeed, and then commit to performing it.

            marko Marko Mäkelä added a comment - I feel that handlerton::drop_database is largely redundant after MDEV-25506 and other changes. It would be invoked as a last clean-up step to remove any garbage that could have been left behind in InnoDB. However, in a future implementation of atomic or transactional DROP DATABASE , the simplified InnoDB implementation of handlerton::drop_database could come in handy. The operation probably should be two-phase: first check with each storage engine that the operation would succeed, and then commit to performing it.
            marko Marko Mäkelä made changes -
            marko Marko Mäkelä made changes -
            serg Sergei Golubchik made changes -
            Fix Version/s 10.6.1 [ 24437 ]
            Fix Version/s 10.6 [ 24028 ]
            Resolution Fixed [ 1 ]
            Status In Progress [ 3 ] Closed [ 6 ]
            marko Marko Mäkelä made changes -
            serg Sergei Golubchik made changes -
            Workflow MariaDB v3 [ 116878 ] MariaDB v4 [ 134371 ]

            People

              monty Michael Widenius
              monty Michael Widenius
              Votes:
              1 Vote for this issue
              Watchers:
              4 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.