Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft: Add options to start and stop group replication #647

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- mysql_replication - add ``startgroupreplication`` and ``stopgroupreplication`` options (https://github.com/ansible-collections/community.mysql/pull/93).
86 changes: 83 additions & 3 deletions plugins/modules/mysql_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
- Balazs Pocze (@banyek)
- Andrew Klychkov (@Andersson007)
- Dennis Urtubia (@dennisurtubia)
- Sebastian Pfahl (@eryx12o45)
options:
mode:
description:
Expand All @@ -32,7 +33,9 @@
C(stopreplica) (STOP REPLICA),
C(resetprimary) (RESET MASTER) - supported since community.mysql 0.1.0,
C(resetreplica) (RESET REPLICA),
C(resetreplicaall) (RESET REPLICA ALL).
C(resetreplicaall) (RESET REPLICA ALL),
C(startgroupreplication) (START GROUP_REPLICATION),
C(stopgroupreplication) (STOP GROUP_REPLICATION).
Andersson007 marked this conversation as resolved.
Show resolved Hide resolved
type: str
choices:
- changeprimary
Expand All @@ -44,6 +47,8 @@
- resetprimary
- resetreplica
- resetreplicaall
- startgroupreplication
- stopgroupreplication
default: getreplica
primary_host:
description:
Expand Down Expand Up @@ -189,7 +194,16 @@
type: bool
default: false
version_added: '0.1.0'

group_replication_user:
description:
- User for group replication.
type: str
version_added: '3.9.0'
Andersson007 marked this conversation as resolved.
Show resolved Hide resolved
group_replication_password:
description:
- Password for group replication user.
type: str
version_added: '3.9.0'
Andersson007 marked this conversation as resolved.
Show resolved Hide resolved
notes:
- Compatible with MariaDB or MySQL.
- If an empty value for the parameter of string type is needed, use an empty string.
Expand Down Expand Up @@ -284,6 +298,16 @@
mode: changeprimary
fail_on_error: true

- name: Start mysql group replication
community.mysql.mysql_replication:
mode: startgroupreplication
group_replication_user: group_repl_user
group_replication_password: group_repl_passwd

- name: Stop mysql group replication
community.mysql.mysql_replication:
mode: stopgroupreplication

'''

RETURN = r'''
Expand Down Expand Up @@ -470,6 +494,38 @@ def changereplication(cursor, chm, channel=''):
cursor.execute(query)


def startgroupreplication(module, cursor, chm, fail_on_error=False, term='GROUP_REPLICATION'):
query = 'START %s %s' % (term, ','.join(chm))

try:
executed_queries.append(query)
cursor.execute(query)
started = True
except mysql_driver.Warning as e:
started = False
except Exception as e:
if fail_on_error:
module.fail_json(msg="START %s failed: %s" % (term, to_native(e)))
started = False
return started


def stopgroupreplication(module, cursor, fail_on_error=False, term='GROUP_REPLICATION'):
query = 'STOP %s' % term

try:
executed_queries.append(query)
cursor.execute(query)
stopped = True
except mysql_driver.Warning as e:
stopped = False
except Exception as e:
if fail_on_error:
module.fail_json(msg="STOP %s failed: %s" % (term, to_native(e)))
stopped = False
return stopped


def main():
argument_spec = mysql_common_argument_spec()
argument_spec.update(
Expand All @@ -482,7 +538,9 @@ def main():
'resetprimary',
'resetreplica',
'resetreplicaall',
'changereplication']),
'changereplication',
'startgroupreplication',
'stopgroupreplication']),
primary_auto_position=dict(type='bool', default=False, aliases=['master_auto_position']),
primary_host=dict(type='str', aliases=['master_host']),
primary_user=dict(type='str', aliases=['master_user']),
Expand All @@ -506,6 +564,8 @@ def main():
connection_name=dict(type='str'),
channel=dict(type='str'),
fail_on_error=dict(type='bool', default=False),
group_replication_user=dict(type='str'),
group_replication_password=dict(type='str', no_log=True),
)
module = AnsibleModule(
argument_spec=argument_spec,
Expand Down Expand Up @@ -545,6 +605,8 @@ def main():
connection_name = module.params["connection_name"]
channel = module.params['channel']
fail_on_error = module.params['fail_on_error']
group_replication_user = module.params['group_replication_user']
group_replication_password = module.params['group_replication_password']

if mysql_driver is None:
module.fail_json(msg=mysql_driver_fail_msg)
Expand Down Expand Up @@ -738,6 +800,24 @@ def main():
module.fail_json(msg='%s. Query == CHANGE REPLICATION SOURCE TO %s' % (to_native(e), chm))
result['changed'] = True
module.exit_json(queries=executed_queries, **result)
elif mode in "startgroupreplication":
Andersson007 marked this conversation as resolved.
Show resolved Hide resolved
chm = []
if group_replication_user is not None:
chm.append(" USER='%s'" % group_replication_user)
if group_replication_password is not None:
chm.append(" PASSWORD='%s'" % group_replication_password)
started = startgroupreplication(module, cursor, chm, fail_on_error)
if started is True:
module.exit_json(msg="Group replication started ", changed=True, queries=executed_queries)
else:
module.exit_json(msg="Group replication already started (Or cannot be started)", changed=False,
ueries=executed_queries)
elif mode in "stopgroupreplication":
Andersson007 marked this conversation as resolved.
Show resolved Hide resolved
stopped = stopgroupreplication(module, cursor, channel, fail_on_error)
if stopped is True:
Andersson007 marked this conversation as resolved.
Show resolved Hide resolved
module.exit_json(msg="Group replication stopped", changed=True, queries=executed_queries)
else:
module.exit_json(msg="Group replication already stopped", changed=False, queries=executed_queries)

warnings.simplefilter("ignore")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -318,5 +318,5 @@
- name: Assert that stopslave returns expected error message
assert:
that:
- result.msg == "value of mode must be one of{{ ":" }} getprimary, getreplica, changeprimary, stopreplica, startreplica, resetprimary, resetreplica, resetreplicaall, changereplication, got{{ ":" }} stopslave"
- result.msg == "value of mode must be one of{{ ":" }} getprimary, getreplica, changeprimary, stopreplica, startreplica, resetprimary, resetreplica, resetreplicaall, changereplication, startgroupreplication, stopgroupreplication, got{{ ":" }} stopslave"
- result is failed
Loading