登录
首页 >  数据库 >  MySQL

聊聊MySQL Proxy项目之kingshard

来源:SegmentFault

时间:2023-02-18 13:47:49 272浏览 收藏

怎么入门数据库编程?需要学习哪些知识点?这是新手们刚接触编程时常见的问题;下面golang学习网就来给大家整理分享一些知识点,希望能够给初学者一些帮助。本篇文章就来介绍《聊聊MySQL Proxy项目之kingshard》,涉及到MySQL、go,有需要的可以收藏一下

kingshard简介

kingshard(https://github.com/flike/king...)是一个由Go开发高性能MySQL Proxy项目,kingshard在满足基本的读写分离的功能上,致力于简化MySQL分库分表操作;能够让DBA通过kingshard轻松平滑地实现MySQL数据库扩容。

主要功能:

  • 通过自动数据迁移工具开始数据迁移。

  • 数据差异小于某一临界值,阻塞老子表写操作(read-only)

  • 等待新子表数据同步完毕

  • 更改kingshard配置文件中的对应子表的路由规则。

  • 删除老节点上的子表。

  • Exaple

    简单演示一下kingshard的相关操作,感兴趣的同学可以自己试一试。:)

    #启动kingshard kingshard git:(master) ✗ ./bin/kingshard -config=etc/multi.yaml kingshard 2015/07/19 11:13:43 - INFO - server.go:[205] - [server] "NewServer" "Server running" "netProto=tcp|address=127.0.0.1:9696" conn_id=0 #另一个终端连接kingshard mysql -ukingshard -pkingshard -h127.0.0.1 -P9696; Warning: Using a password on the command line interface can be insecure. Welcome to the MySQL monitor.  Commands end with ; or g. Your MySQL connection id is 10001 Server version: kingshard-1.0 Homebrew Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. mysql>use kingshard; Database changed mysql> select/*master*/ * from kingshard_test_conn; +----+----------+------+-------+------+------+ | id | str      | f    | e     | u    | i    | +----+----------+------+-------+------+------+ |  1 | a        | 3.14 | test1 | NULL | NULL | |  5 | ""''abc | NULL | NULL  | NULL | NULL | |  6 | 中国     | NULL | NULL  | NULL | NULL | +----+----------+------+-------+------+------+ 3 rows in set (0.01 sec) mysql> select * from test_shard_hash where id in(6,10); +----+-------+------+-------+------+------+ | id | str   | f    | e     | u    | i    | +----+-------+------+-------+------+------+ | 10 | world |  2.1 | test1 |    1 |    1 | +----+-------+------+-------+------+------+ 1 row in set (0.03 sec) mysql> show tables; +----------------------------+ | Tables_in_kingshard        | +----------------------------+ | kingshard_test_conn        | | kingshard_test_proxy_conn  | | kingshard_test_proxy_stmt  | | kingshard_test_shard_hash  | | kingshard_test_shard_range | | kingshard_test_stmt        | | test_shard_hash_0000       | | test_shard_hash_0001       | | test_shard_hash_0002       | | test_shard_hash_0003       | | test_shard_range_0000      | | test_shard_range_0001      | | test_shard_range_0002      | | test_shard_range_0003      | +----------------------------+ 14 rows in set (0.00 sec)

    反馈

    非常欢迎您发邮件至flikecn#126.com与作者取得联系,或者加入QQ群(147926796)交流。

    github:https://github.com/flike/king...

    欢迎关注后端技术快讯公众号,有关kingshard的最新消息与后端架构设计类的文章,都会在这个公众号分享。

    图片描述

    以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于数据库的相关知识,也可关注golang学习网公众号。

    声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
    相关阅读
    更多>
    最新阅读
    更多>
    课程推荐
    更多>
    评论列表