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

Alter Sequence do not replicate to another nodes with in Galera Cluster

Details

    Description

      Generally ALTER SEQUENCE allows one to change any values for a SEQUENCE created with CREATE SEQUENCE.

      https://mariadb.com/kb/en/library/alter-sequence/

      While within Galera Cluster , ALTER SEQUENCE is only effective on Master node where it got executed , doesn't get replicated to another node of Galera cluster.

      On Node-01 :

       
      MariaDB [test]>  SHOW CREATE SEQUENCE seq;
      +-------+----------------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                                   |
      +-------+----------------------------------------------------------------------------------------------------------------+
      | seq   | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
      +-------+----------------------------------------------------------------------------------------------------------------+
      1 row in set (0.001 sec)
      
      

      On Node-01

       
      MariaDB [test]> ALTER SEQUENCE  seq MAXVALUE = 10000 ;
      Query OK, 0 rows affected (0.001 sec)
       
       
      MariaDB [test]> SHOW CREATE SEQUENCE seq;
      +-------+--------------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                                 |
      +-------+--------------------------------------------------------------------------------------------------------------+
      | seq   | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 10000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
      +-------+--------------------------------------------------------------------------------------------------------------+
      1 row in set (0.000 sec)
      
      

      On Node-02

       
      MariaDB [test]>  SHOW CREATE SEQUENCE seq;
      +-------+----------------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                                   |
      +-------+----------------------------------------------------------------------------------------------------------------+
      | seq   | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
      +-------+----------------------------------------------------------------------------------------------------------------+
      1 row in set (0.001 sec)
      
      

      On Node-03

       
      MariaDB [test]>  SHOW CREATE SEQUENCE seq;
      +-------+----------------------------------------------------------------------------------------------------------------+
      | Table | Create Table                                                                                                   |
      +-------+----------------------------------------------------------------------------------------------------------------+
      | seq   | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
      +-------+----------------------------------------------------------------------------------------------------------------+
      1 row in set (0.000 sec)
      
      

      While DROP SEQUENCE is working fine, gets replicated across the nodes with in Galera Cluster.

      Attachments

        Activity

          pramod.mahto@mariadb.com Pramod Mahto created issue -
          pramod.mahto@mariadb.com Pramod Mahto made changes -
          Field Original Value New Value
          Description Generally ALTER SEQUENCE allows one to change any values for a SEQUENCE created with CREATE SEQUENCE.

          https://mariadb.com/kb/en/library/alter-sequence/

          While within Galera Cluster , ALTER SEQUENCE is only effective on Master node where it got executed , doesn't get replicated to another node of Galera cluster.

          On Node-01 :

          {code}

          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+----------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+----------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+----------------------------------------------------------------------------------------------------------------+
          1 row in set (0.001 sec)


          On Node-01

          {code}

          MariaDB [test]> ALTER SEQUENCE seq MAXVALUE = 10000 ;
          Query OK, 0 rows affected (0.001 sec)


          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+--------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+--------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 10000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+--------------------------------------------------------------------------------------------------------------+
          1 row in set (0.000 sec)


          On Node-02

          {code}

          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+----------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+----------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+----------------------------------------------------------------------------------------------------------------+
          1 row in set (0.001 sec)

          On Node-03

          {code}

          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+----------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+----------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+----------------------------------------------------------------------------------------------------------------+
          1 row in set (0.000 sec)

          While DROP SEQUENCE is working fine gets replicated across the nodes with in Galera Cluster.
          Generally ALTER SEQUENCE allows one to change any values for a SEQUENCE created with CREATE SEQUENCE.

          https://mariadb.com/kb/en/library/alter-sequence/

          While within Galera Cluster , ALTER SEQUENCE is only effective on Master node where it got executed , doesn't get replicated to another node of Galera cluster.

          On Node-01 :

          {code}

          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+----------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+----------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+----------------------------------------------------------------------------------------------------------------+
          1 row in set (0.001 sec)

          {code}

          On Node-01

          {code}

          MariaDB [test]> ALTER SEQUENCE seq MAXVALUE = 10000 ;
          Query OK, 0 rows affected (0.001 sec)


          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+--------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+--------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 10000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+--------------------------------------------------------------------------------------------------------------+
          1 row in set (0.000 sec)

          {code}

          On Node-02

          {code}

          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+----------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+----------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+----------------------------------------------------------------------------------------------------------------+
          1 row in set (0.001 sec)

          {code}

          On Node-03

          {code}

          MariaDB [test]> SHOW CREATE SEQUENCE seq;
          +-------+----------------------------------------------------------------------------------------------------------------+
          | Table | Create Table |
          +-------+----------------------------------------------------------------------------------------------------------------+
          | seq | CREATE SEQUENCE `seq` start with 1 minvalue 1 maxvalue 1000000 increment by 0 cache 1000 nocycle ENGINE=InnoDB |
          +-------+----------------------------------------------------------------------------------------------------------------+
          1 row in set (0.000 sec)

          {code}

          While DROP SEQUENCE is working fine, gets replicated across the nodes with in Galera Cluster.
          elenst Elena Stepanova made changes -
          Fix Version/s 10.3 [ 22126 ]
          Assignee Jan Lindström [ jplindst ]
          jplindst Jan Lindström (Inactive) made changes -
          Assignee Jan Lindström [ jplindst ] Julius Goryavsky [ sysprg ]
          julien.fritsch Julien Fritsch made changes -
          Priority Minor [ 4 ] Major [ 3 ]
          julien.fritsch Julien Fritsch made changes -
          Priority Major [ 3 ] Critical [ 2 ]
          sysprg Julius Goryavsky made changes -
          Status Open [ 1 ] In Progress [ 3 ]
          julien.fritsch Julien Fritsch made changes -
          Assignee Julius Goryavsky [ sysprg ] Stepan Patryshev [ stepan.patryshev ]

          I want more clarity to this issue as sequence object is not InnoDB object, this means that some operations do not replicate on Galera. If we want them to replicate I think we need a new feature development. Actual first DDL i.e. create should replicate already but after that depends.

          jplindst Jan Lindström (Inactive) added a comment - I want more clarity to this issue as sequence object is not InnoDB object, this means that some operations do not replicate on Galera. If we want them to replicate I think we need a new feature development. Actual first DDL i.e. create should replicate already but after that depends.
          julien.fritsch Julien Fritsch made changes -
          Assignee Stepan Patryshev [ stepan.patryshev ] Jan Lindström [ jplindst ]
          julien.fritsch Julien Fritsch made changes -
          Labels need_feedback
          julien.fritsch Julien Fritsch made changes -
          Priority Critical [ 2 ] Major [ 3 ]
          julien.fritsch Julien Fritsch made changes -
          Affects Version/s 10.3.10 [ 23140 ]
          Affects Version/s 10.3.12 [ 23214 ]
          Issue Type Bug [ 1 ] Task [ 3 ]
          ccalender Chris Calender (Inactive) made changes -
          Labels need_feedback
          jplindst Jan Lindström (Inactive) made changes -
          Labels feature_request
          jplindst Jan Lindström (Inactive) made changes -
          Assignee Jan Lindström [ jplindst ] Ralf Gebhardt [ ralf.gebhardt@mariadb.com ]
          jplindst Jan Lindström (Inactive) made changes -
          Assignee Ralf Gebhardt [ ralf.gebhardt@mariadb.com ] Jan Lindström [ jplindst ]
          jplindst Jan Lindström (Inactive) made changes -
          Status In Progress [ 3 ] Stalled [ 10000 ]
          jplindst Jan Lindström (Inactive) made changes -
          Assignee Jan Lindström [ jplindst ] Ralf Gebhardt [ ralf.gebhardt@mariadb.com ]

          jplindst, a sequence object can very well be stored in InnoDB. It is a special kind of table, which does not support locking or undo logging, but only crash safety via the redo log. The persistent state of the sequence is stored in the single row of the special table.

          marko Marko Mäkelä added a comment - jplindst , a sequence object can very well be stored in InnoDB. It is a special kind of table, which does not support locking or undo logging, but only crash safety via the redo log. The persistent state of the sequence is stored in the single row of the special table.
          jplindst Jan Lindström (Inactive) made changes -
          Assignee Ralf Gebhardt [ ralf.gebhardt@mariadb.com ] Jan Lindström [ jplindst ]
          jplindst Jan Lindström (Inactive) made changes -
          Fix Version/s 10.4 [ 22408 ]
          Fix Version/s 10.3 [ 22126 ]
          jplindst Jan Lindström (Inactive) made changes -
          Status Stalled [ 10000 ] In Progress [ 3 ]
          ralf.gebhardt Ralf Gebhardt made changes -
          Issue Type Task [ 3 ] Bug [ 1 ]
          serg Sergei Golubchik made changes -
          Workflow MariaDB v3 [ 96393 ] MariaDB v4 [ 144505 ]
          jplindst Jan Lindström (Inactive) made changes -
          issue.field.resolutiondate 2022-01-10 11:52:16.0 2022-01-10 11:52:16.599
          jplindst Jan Lindström (Inactive) made changes -
          Fix Version/s 10.4.23 [ 26807 ]
          Fix Version/s 10.5.14 [ 26809 ]
          Fix Version/s 10.6.6 [ 26811 ]
          Fix Version/s 10.7.2 [ 26813 ]
          Fix Version/s 10.4 [ 22408 ]
          Resolution Fixed [ 1 ]
          Status In Progress [ 3 ] Closed [ 6 ]
          mariadb-jira-automation Jira Automation (IT) made changes -
          Zendesk Related Tickets 122138 162340

          People

            jplindst Jan Lindström (Inactive)
            pramod.mahto@mariadb.com Pramod Mahto
            Votes:
            0 Vote for this issue
            Watchers:
            10 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.