作者:洪斌

爱可生南区负责人兼技术服务总监,MySQL  ACE,擅长数据库架构规划、故障诊断、性能优化分析,实践经验丰富,帮助各行业客户解决 MySQL 技术问题,为金融、运营商、互联网等行业客户提供 MySQL 整体解决方案。

本文来源:转载自公众号-玩转MySQL

*爱可生开源社区出品,原创内容未经授权不得随意使用,转载请联系小编并注明来源。

MySQL Shell 现在不只是用来部署 InnoDB cluster 和 Replica set 了,在 8.0.17 之后有了自定义扩展能力,DBA 可以用 javascript 和 python 编写扩展了,把一些常用的 SQL 脚本封装成自己的工具箱,甚至可以围绕它构建 DBA 的 DevOps 作业平台。

为 MySQL Shell 添加扩展并不复杂,现有两种扩展方式,一种是 report,这种主要用来做各种查询,可以使用内建的两个命令调用自定义的 report,另一种是 plugin,可以定义任意功能函数。
  • \show 就是普通一次性输出,已经内建了好多常用指标,参见脑图。
  • \watch 类似 top 方式,持续输出信息,写些简单的监控脚本方便多了。

自定义扩展

将自定义的 js 或 py 脚本放在 ~/.mysqlsh/plugin 和~/.mysqlsh/init.d 目录下,建议是放在 plugin 目录下,目录可按功能类别命名,目录中必须有 init.py 或 init.js 文件用来初始化扩展,代码中可约定顶级目录名作为全局对象,二级目录作为成员对象。
  1. hongbin@MBP ~/.m/plugins> tree

  2. .

  3. └── ext

  4. └── table

  5. └── init.py


  6. 2 directories, 1 file

下面是一段示例代码

  1. # init.py

  2. # -------

  3. # 演示注册report和plugin两种方式

  4. # 定义一个查询函数,获取没有主键或唯一索引表

  5. def report_table_without_pk(session):

  6. query = '''SELECT tables.table_schema , tables.table_name

  7. FROM information_schema.tables

  8. LEFT JOIN (

  9. SELECT table_schema , table_name

  10. FROM information_schema.statistics

  11. GROUP BY table_schema, table_name, index_name HAVING

  12. SUM( case when non_unique = 0 and nullable != 'YES' then 1 else 0 end ) = count(*) ) puks

  13. ON tables.table_schema = puks.table_schema and tables.table_name = puks.table_name

  14. WHERE puks.table_name is null

  15. AND tables.table_type = 'BASE TABLE' AND Engine="InnoDB";'''

  16. result = session.run_sql(query)

  17. report = []

  18. if (result.has_data()):

  19. report = [result.get_column_names()]

  20. for row in result.fetch_all():

  21. report.append(list(row))

  22. # 注册为report,需要返回字典类型

  23. return {"report": report}


  24. # 功能同上,这里为演示以Pluginf方式重新定义函数,两者report和plugin差异主要在于输出方式

  25. def plugin_table_without_pk(session):

  26. query = '''SELECT tables.table_schema , tables.table_name

  27. FROM information_schema.tables

  28. LEFT JOIN (

  29. SELECT table_schema , table_name

  30. FROM information_schema.statistics

  31. GROUP BY table_schema, table_name, index_name HAVING

  32. SUM( case when non_unique = 0 and nullable != 'YES' then 1 else 0 end ) = count(*) ) puks

  33. ON tables.table_schema = puks.table_schema and tables.table_name = puks.table_name

  34. WHERE puks.table_name is null

  35. AND tables.table_type = 'BASE TABLE' AND Engine="InnoDB";'''

  36. result = session.run_sql(query)

  37. shell.dump_rows(result)

  38. return


  39. # 注册一个function,用来给表添加主键字段,变更类操作通常以function

  40. def _add_pk(table, columns, session=None):

  41. query = 'ALTER TABLE %s ADD PRIMARY KEY (%s)' % (table, columns)

  42. if session is None:

  43. session = shell.get_session()

  44. if session is None:

  45. print("No session specified. Either pass a session object to this "

  46. "function or connect the shell to a database")

  47. return

  48. # session = shell.get_session()

  49. result = session.run_sql(query)


  50. # 这里注册上面定义的report函数,report名称,返回格式类型,函数名,描述

  51. shell.register_report("table_without_pk", "list", report_table_without_pk, {

  52. "brief": "Lists the table without primary key."})


  53. # 这里定义全局对象,可以看做一个命名空间,ext是默认社区扩展插件的对象名,或者其他自定义对象名称

  54. if 'ext' in globals():

  55. global_obj = ext

  56. else:

  57. # Otherwise register new global object named 'ext'

  58. global_obj = shell.create_extension_object()

  59. shell.register_global("ext", global_obj,

  60. {"brief": "MySQL Shell extension plugins."})


  61. # 可以按类别在全局对象下添加子对象

  62. try:

  63. plugin_obj = global_obj.table

  64. except IndexError:


  65. plugin_obj = shell.create_extension_object()

  66. shell.add_extension_object_member(global_obj,

  67. "table",

  68. plugin_obj,

  69. {"brief": "Utility object for table operations."})


  70. # 添加功能函数到自定义插件对象中,父级对象名,调用函数名,定义的函数,描述,函数接受的参数名/类型/是否必选/描述

  71. try:

  72. shell.add_extension_object_member(plugin_obj,

  73. "add_pk",

  74. _add_pk,

  75. {"brief":

  76. "Add a primary key to the table",

  77. "parameters": [

  78. {

  79. "name": "table",

  80. "type": "string",

  81. "required": True,

  82. "brief": "table name."

  83. },

  84. {

  85. "name": "columns",

  86. "type": "string",

  87. "required": True,

  88. "brief": "column name."

  89. },

  90. {

  91. "name": "session",

  92. "type": "object",

  93. "class": "Session",

  94. "required": False,# 若不想单独传session参数,可以在函数中获取当前会话对象

  95. "brief": "The session to be used on the operation."

  96. }

  97. ]

  98. })


  99. except Exception as e:

  100. shell.log("ERROR", "Failed to register ext.table.add_pk ({0}).".format(

  101. str(e).rstrip()))


  102. # 添加plugin_table_without_pk

  103. try:

  104. shell.add_extension_object_member(plugin_obj,

  105. "get_without_pk",

  106. plugin_table_without_pk,

  107. {"brief":

  108. "Lists the table without primary key.",

  109. })

  110. except Exception as e:

  111. shell.log("ERROR", "Failed to register ext.table.get_without_pk ({0}).".format(

  112. str(e).rstrip()))

使用方法

登录 mysqlsh 后自动搜索并初始化插件,指定 –log-level 参数时可记录详细调试信息到 ~/.mysqlsh/mysqlsh.log ,如果加载失败,可以查看日志分析原因。

对于 report,使用 \show 或 \watch 命令指定 report 名称输出结果。

对于 plugin,直接调用函数。

这里抛砖引玉简单介绍了一下 MySQL Shell 插件扩展功能,更多有趣的用法等你来发现。

参考:

https://dev.mysql.com/doc/mysql-shell/8.0/en/mysql-shell-plugins-examples.html
https://github.com/lefred/mysqlshell-plugins
分类: 技术分享