mysql+跨服务器+写入_MySQL中使用FREDATED引擎实现跨数据库服务器、跨实例访问

跨数据库服务器,跨实例访问是比较常见的一种访问方式,在Oracle中可以通过DB LINK的方式来实现。对于MySQL而言,有一个FEDERATED存储引擎与之相对应。同样也是通过创建一个链接方式的形式来访问远程服务器上的数据。本文简要描述了FEDERATED存储引擎,以及演示了基于FEDERATED存储引擎跨实例访问的示例。

1、FEDERATED存储引擎的描述

FEDERATED存储引擎允许在不使用复制或集群技术的情况下实现远程访问数据库

创建基于FEDERATED存储引擎表的时候,服务器在数据库目录仅创建一个表定义文件,即以表名开头的.frm文件。

FEDERATED存储引擎表无任何数据存储到本地,即没有.myd文件

对于远程服务器上表的操作与本地表操作一样,仅仅是数据位于远程服务器

基本流程如下:

a4dfd89a77b8c68aee6eda8ceab2e109.png

2、安装与启用FEDERATED存储引擎

源码安装MySQL时使用DWITH_FEDERATED_STORAGE_ENGINE来配置

rpm安装方式缺省情况下已安装,只需要启用该功能即可

3、准备远程服务器环境

-- 此演示中远程服务器与本地服务器为同一服务器上的多版本多实例

-- 假定远程服务为:5.6.12(实例3406)

-- 假定本地服务器:5.6.21(实例3306)

-- 基于实例3306创建FEDERATED存储引擎表test.federated_engine以到达访问实例3406数据库tempdb.tb_engine的目的

[root@rhel64a ~]# cat /etc/issue

Red Hat Enterprise Linux Server release 6.4 (Santiago)

--启动3406的实例

[root@rhel64a ~]# /u01/app/mysql/bin/mysqld_multi start 3406

[root@rhel64a ~]# mysql -uroot -pxxx -P3406 --protocol=tcp

root@localhost[(none)]> show variables like 'server_id';

+---------------+-------+

| Variable_name | Value |

+---------------+-------+

| server_id     | 3406  |

+---------------+-------+

--实例3406的版本号

root@localhost[tempdb]> show variables like 'version';

+---------------+------------+

| Variable_name | Value      |

+---------------+------------+

| version       | 5.6.12-log |

+---------------+------------+

--创建数据库

root@localhost[(none)]> create database tempdb;

Query OK, 1 row affected (0.00 sec)

-- Author : Leshami

-- Blog   :http://blog.csdn.net/leshami

root@localhost[(none)]> use tempdb

Database changed

--创建用于访问的表

root@localhost[tempdb]> create table tb_engine as

-> select engine,support,comment from information_schema.engines;

Query OK, 9 rows affected (0.10 sec)

Records: 9  Duplicates: 0  Warnings: 0

--提取表的SQL语句用于创建为FEDERATED存储引擎表

root@localhost[tempdb]> show create table tb_engine \G

*************************** 1. row ***************************

Table: tb_engine

Create Table: CREATE TABLE `tb_engine` (

`engine` varchar(64) NOT NULL DEFAULT '',

`support` varchar(8) NOT NULL DEFAULT '',

`comment` varchar(80) NOT NULL DEFAULT ''

) ENGINE=InnoDB DEFAULT CHARSET=utf8

--创建用于远程访问的账户

root@localhost[tempdb]> grant all privileges on tempdb.* to 'remote_user'@'192.168.1.131' identified by 'xxx';

Query OK, 0 rows affected (0.00 sec)

root@localhost[tempdb]> flush privileges;

Query OK, 0 rows affected (0.00 sec)

4、演示FEDERATED存储引擎跨实例访问

[root@rhel64a ~]# mysql -uroot -pxxx

root@localhost[(none)]> show variables like 'version';

+---------------+--------+

| Variable_name | Value  |

+---------------+--------+

| version       | 5.6.21 |

+---------------+--------+

#查看是否支持FEDERATED引擎

root@localhost[(none)]> select * from information_schema.engines where engine='federated';

+-----------+---------+--------------------------------+--------------+------+------------+

| ENGINE    | SUPPORT | COMMENT                        | TRANSACTIONS | XA   | SAVEPOINTS |

+-----------+---------+--------------------------------+--------------+------+------------+

| FEDERATED | NO      | Federated MySQL storage engine | NULL         | NULL | NULL       |

+-----------+---------+--------------------------------+--------------+------+------------+

root@localhost[(none)]> exit

[root@rhel64a ~]# service mysql stop

Shutting down MySQL..[  OK  ]

#配置启用FEDERATED引擎

[root@rhel64a ~]# vi /etc/my.cnf

[root@rhel64a ~]# tail -7 /etc/my.cnf

[mysqld]

socket = /tmp/mysql3306.sock

port = 3306

pid-file = /var/lib/mysql/my3306.pid

user = mysql

server-id=3306/

federated         #添加该选项

[root@rhel64a ~]# service mysql start

Starting MySQL.[  OK  ]

[root@rhel64a ~]# mysql -uroot -pxxx

root@localhost[(none)]> select * from information_schema.engines where engine='federated';

+-----------+---------+--------------------------------+--------------+------+------------+

| ENGINE    | SUPPORT | COMMENT                        | TRANSACTIONS | XA   | SAVEPOINTS |

+-----------+---------+--------------------------------+--------------+------+------------+

| FEDERATED | YES     | Federated MySQL storage engine | NO           | NO   | NO         |

+-----------+---------+--------------------------------+--------------+------+------------+

root@localhost[(none)]> use test

-- 创建基于FEDERATED引擎的表federated_engine

root@localhost[test]> CREATE TABLE `federated_engine` (

->   `engine` varchar(64) NOT NULL DEFAULT '',

->   `support` varchar(8) NOT NULL DEFAULT '',

->   `comment` varchar(80) NOT NULL DEFAULT ''

-> ) ENGINE=FEDERATED DEFAULT CHARSET=utf8

-> CONNECTION='mysql://remote_user:xxx@192.168.1.131:3406/tempdb/tb_engine';

Query OK, 0 rows affected (0.00 sec)

-- 下面是创建后表格式文件

root@localhost[test]> system ls -hltr /var/lib/mysql/test

total 12K

-rw-rw---- 1 mysql mysql 8.5K Oct 24 08:22 federated_engine.frm

--查询表federated_engine

root@localhost[test]> select * from federated_engine limit 2;

+------------+---------+---------------------------------------+

| engine     | support | comment                               |

+------------+---------+---------------------------------------+

| MRG_MYISAM | YES     | Collection of identical MyISAM tables |

| CSV        | YES     | CSV storage engine                    |

+------------+---------+---------------------------------------+

--更新表federated_engine

root@localhost[test]> update federated_engine set support='NO' where engine='CSV';

Query OK, 1 row affected (0.03 sec)

Rows matched: 1  Changed: 1  Warnings: 0

--查看更新后的结果

root@localhost[test]> select * from federated_engine where engine='CSV';

+--------+---------+--------------------+

| engine | support | comment            |

+--------+---------+--------------------+

| CSV    | NO      | CSV storage engine |

+--------+---------+--------------------+

5、创建FEDERATED引擎表的链接方式

scheme://user_name[:password]@host_name[:port_num]/db_name/tbl_name

scheme: A recognized connection protocol. Only mysql is supported as the scheme value at this point.

user_name: The user name for the connection. This user must have been created on the remote server, and must have suitable privileges to perform the required actions (SELECT, INSERT,UPDATE, and so forth) on the remote table.

password: (Optional) The corresponding password for user_name.

host_name: The host name or IP address of the remote server.

port_num: (Optional) The port number for the remote server. The default is 3306.

db_name: The name of the database holding the remote table.

tbl_name: The name of the remote table. The name of the local and the remote table do not have to match.

链接示例样本:

CONNECTION='mysql://username:password@hostname:port/database/tablename'

CONNECTION='mysql://username@hostname/database/tablename'

CONNECTION='mysql://username:password@hostname/database/tablename'

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/555953.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MYSQL避免全表扫描__如何查看sql查询是否用到索引(mysql)

MYSQL避免全表扫描 1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引 2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描 如:select id f…

字符串数组排序

字符串数组排序 var arr [chifan, 抽yan, he酒, 烫头, Coding2233];/*** 计算字符串字节数*/ function getBytesCount(str) {var bytesCount str.length;for (var i 0; i < bytesCount; i) {var ASCIINum str.charCodeAt(i);ASCIINum > 255 && bytesCount;}…

mysql主键unsigned_mysql – 主键应该总是unsigned?

MySQL支持可选的SERIAL数据类型(假定与PostgreSQL兼容&#xff0c;因为SERIAL不是标准的ANSI SQL)。此数据类型只是创建BIGINT UNSIGNED的简写。去试试吧&#xff1a;CREATE TABLE test.foo (foo_id SERIAL PRIMARY KEY);SHOW CREATE TABLE test.foo;CREATE TABLE test.foo (fo…

@SuppressWarnings使用的正确姿势

SuppressWarnings比较常见&#xff0c;理解和使用起来都很简单。 但是就这这个机会系统的整理一下。 通过源码可以看出&#xff0c;支持在类、属性、方法、参数、构造方法、本地变量上使用。 SuppressWarnings注解的使用有三种&#xff1a; SuppressWarnings(“unchecked”)…

DOM - 找出当前节点的子元素节点和找出当前节点的第 n 层父级元素

一、找出当前节点的子元素节点 思路&#xff1a; 先拿到当前节点的子节点集合循环遍历这些节点&#xff0c;找出元素节点并添加到元素集合中如果传了数字参数&#xff0c;就返回元素集合中对应下标的节点没传参数就返回整个元素集合 Element.prototype.getChildNode functio…

mysql5.7.3安装教程_最新mysql 5.7.23安装配置图文教程

2018年最新MySQL5.7详细安装与配置&#xff0c;总共分为四步&#xff0c;其中环境变量配置不是必须的。1、安装包下载2、安装过程3、环境变量配置4、连接测试一、官网下载MYSQL安装包2.选择合适你电脑系统的版本进行安装。如果有网络&#xff0c;选择在线安装的版本&#xff0c…

MySQL 添加where 1= 1 是否会引起索引失效

背景 在检查数据库的执行效率的时候&#xff0c;发现了一条查询极慢的查询sql。sql的例子如下&#xff1a; EXPLAIN SELECT * FROM user_point_detail_info WHERE 11 AND deleted FALSE AND app_id 2010001 AND point > 10 AND add_time BETWEEN "2021-03-12 17:0…

DOM - 查看当前节点下有无子元素节点

for 循环版 Element.prototype.hasChildren function () {const childNodes this.childNodes,len childNodes.length;for (let i 0; i < len; i) {const item childNodes[i];if (item.nodeType 1) {return true;}}return false; }while 循环版 Element.prototype.ha…

mysql回档命令_MySQL 备份恢复

1&#xff1a;备份常用工具&#xff1a;mysqldump, xtrabackupmysqldump: 原生数据导出工具&#xff0c;以sql的形式导出保存xtrabackup: percona团队提供的备份工具&#xff0c;基于文件系统的备份2&#xff1a;备份全库&#xff1a;mysqldump -h10.6.29.1 -uroot -p --all-da…

MySQL在like查询中是否使用到索引

mysql在使用like查询中&#xff0c;能不能用到索引&#xff1f;在什么地方使用索引呢&#xff1f; 在使用like的时候&#xff0c;如果使用‘%%’&#xff0c;会不会用到索引呢&#xff1f; EXPLAIN SELECT * FROM user WHERE username LIKE %ptd_%;上面的结果是全表扫描&#…

DOM - 查看当前节点的前后兄弟元素节点

查看当前节点的前后兄弟元素节点 Element.prototype.getElementSibling function (n) {let node this,type typeof(n);if (type undefined && type ! number) {return;}while (n) {if (n > 0) { // 控制往前找还是往后找node node.nextElementSibling;n--;} e…

elasticsearch scroll 一页最大数据量_elasticsearch 百亿级数据检索案例与原理

一、前言数据平台已迭代三个版本&#xff0c;从头开始遇到很多常见的难题&#xff0c;终于有片段时间整理一些已完善的文档&#xff0c;在此分享以供所需朋友的实现参考&#xff0c;少走些弯路&#xff0c;在此篇幅中偏重于ES的优化&#xff0c;关于HBase&#xff0c;Hadoop的设…

使用Collections.emptyList()生成的List不支持add方法___Java Collections.emptyList方法的使用及注意事项

使用Collections.emptyList()生成的List不支持add方法 今天使用Collections.emptyList()&#xff0c;返回一个空的List 但是发现它不支持Add功能&#xff0c;调用Add会抛出unsupportedException&#xff0c; 在以后要返回一个空的List&#xff0c;并还需要后续操作时&#xff…

DOM - 找出当前节点下的所有元素节点(不管多少层都找出来)

Element.prototype.getChildNode function () {const resArr [];fn(this);function fn(node) {const childNodes node.childNodes,len childNodes.length;// 找出元素节点(node && node.nodeType 1) && resArr.push(node);for (let i 0; i < len; i) …

mysql批量查询版本号最大的_mysql子查询批量找id最大的

hiho一下123周 后缀数组四&&num;183&semi;重复旋律后缀数组四重复旋律4 时间限制:5000ms 单点时限:1000ms 内存限制:256MB 描述 小Hi平时的一大兴趣爱好就是演奏钢琴.我们知道一个音乐旋律被表示为长度为 N 的数构成的数列.小Hi ...mxGraph实现按住ctrl键盘拖动图形…

解决SVN代码冲突

解决SVN代码冲突 解决冲突有三种选择&#xff1a; 1、放弃自己的更新&#xff0c;使用svn revert(回滚)&#xff0c;然后提交。在这种方式下不需要使用svn resolved(解决) 2、放弃自己的更新&#xff0c;使用别人的更新。使用最新获取的版本覆盖目标文件&#xff0c;执行res…

DOM - 封装 insertAfter 函数

Element.prototype.insertAfter function (target, origin) {const nextElementSibling origin.nextElementSibling;if (nextElementSibling) {this.insertBefore(target, nextElementSibling);} else {this.appendChild(target);}return target;}

mysql事务和非事物_mysql事务型与非事务型表1.8.5.3. 事务和原子操作

1.8.5.3. 事务和原子操作MySQL服务器(3.23至该系列的最高版本&#xff0c;所有4.0版本&#xff0c;以及更高版本)支持采用InnoDB和BDB事务存储引擎的事务。InnoDB提供了全面的ACID兼容性。请参见第15章&#xff1a;存储引擎和表类型。MySQL服务器中的其他非事务性存储引擎(如My…

options请求

<1> 一个Option请求引发的深度解析 在当前项目中&#xff0c;前端通过POST方式访问后端的REST接口时&#xff0c;发现两条请求记录&#xff0c;一条请求的Request Method为Options&#xff0c;另一条请求的Reuest Method为Post。想要解决这个疑惑还得从以下3个概念说起…

DOM - 子元素逆序

Element.prototype.reverseChild function () {let childNodes this.childNodes,len childNodes.length;while (len) {this.appendChild(childNodes[len - 1]); // 利用 appendChild 的"剪切"元素功能len--;} }