作者:杨涛涛
资深数据库专家,专研 MySQL 十余年。擅长 MySQL、PostgreSQL、MongoDB 等开源数据库相关的备份恢复、SQL 调优、监控运维、高可用架构设计等。目前任职于爱可生,为各大运营商及银行金融企业提供 MySQL 相关技术支持、MySQL 相关课程培训等工作。
本文来源:原创投稿
*爱可生开源社区出品,原创内容未经授权不得随意使用,转载请联系小编并注明来源。
对于第二种方式,之前同事们有内部讨论过OceanBase的设计初衷;有可能是以防租户被误删、或者是给费用到期并且不续租的租户一段缓冲的时间,让他能在数据保留时间到期前备份需要的数据出来。
DROP TENANT [IF EXISTS] tenant_name [PURGE|FORCE];
接下来,我们来简单演示下租户这些操作。
先来创建两个新租户tenant1、tenant2。
mysql:5.6.25:oceanbase>create resource unit mini1 max_cpu 1,max_memory '1G',max_disk_size '1G',max_session_num 1200,max_iops 1000;
Query OK, 0 rows affected (0.015 sec)
create resource pool p3 unit 'mini1',unit_num=1;
Query OK, 0 rows affected (0.038 sec)
create resource pool p4 unit 'mini1',unit_num=1;
Query OK, 0 rows affected (0.062 sec)
create tenant tenant1 resource_pool_list=('p3');
Query OK, 0 rows affected (2.660 sec)
create tenant tenant2 resource_pool_list=('p4');
回收站开启,删除租户tenant1: 查询系统表__all_tenant,租户tenant1已经被删除,但是租户数据存放在sys租户回收站里,可以随时被恢复。
mysql:5.6.25:oceanbase>set recyclebin=on;
Query OK, 0 rows affected (0.000 sec)
drop tenant tenant1;
Query OK, 0 rows affected (0.040 sec)
show recyclebin;
+--------------------------------+---------------+--------+----------------------------+
| OBJECT_NAME | ORIGINAL_NAME | TYPE | CREATETIME |
+--------------------------------+---------------+--------+----------------------------+
| __recycle_$_1_1678073859469312 | tenant1 | TENANT | 2023-03-06 12:07:21.626602 |
+--------------------------------+---------------+--------+----------------------------+
1 row in set (0.012 sec)
select tenant_name from __all_tenant where tenant_name = 'tenant1';
Empty set (0.001 sec)
从回收站恢复租户tenant1: 再次查询系统表__all_tenant ,租户tenant1恢复正常。
mysql:5.6.25:oceanbase>flashback tenant tenant1 to before drop;
Query OK, 0 rows affected (0.044 sec)
show recyclebin;
Empty set (0.003 sec)
select tenant_name from __all_tenant where tenant_name = 'tenant1';
+-------------+
| tenant_name |
+-------------+
| tenant1 |
+-------------+
1 row in set (0.002 sec)
回收站关闭,删除租户tenant1:删除后,依然可以通过系统表__all_tenant查询到租户信息。
mysql:5.6.25:oceanbase>set recyclebin=off;
Query OK, 0 rows affected (0.001 sec)
drop tenant tenant1;
Query OK, 0 rows affected (0.041 sec)
select tenant_name from __all_tenant where tenant_name = 'tenant1';
+-------------+
| tenant_name |
+-------------+
| tenant1 |
+-------------+
1 row in set (0.001 sec)
直到配置项schema_history_expire_time设定的保留时间到期前,租户tenant1 都可以对其内部对象正常操作:比如DQL、DML语句等。
[root@ytt-pc obytt111]# obclient -uroot@tenant1#ob-ytt -P 2883 -cA -h 127.1 -D ytt -e "select * from t1;"
+----+
| id |
+----+
| 1 |
| 2 |
+----+
[root@ytt-pc obytt111]# obclient -uroot@tenant1#ob-ytt -P 2883 -cA -h 127.1 -Dytt -e "insert into t1 values (10)"
但是无法执行DDL语句新建表:创建表t2会报错!
[root@ytt-pc obytt111]# obclient -uroot@tenant1#ob-ytt -P 2883 -cA -h 127.1 -Dytt -e "create table t2 like t1;"
ERROR 4179 (HY000) at line 1: ddl operation during dropping tenant not allowed
DROP TENANT tenant2 PURGE:延迟删除租户,等保留时间到期后,彻底将租户删除,和上面例子类似。
drop tenant tenant2 purge;
Query OK, 0 rows affected (0.055 sec)
select tenant_name from __all_tenant where tenant_name ='tenant2';
+-------------+
| tenant_name |
+-------------+
| tenant2 |
+-------------+
1 row in set (0.002 sec)
执行DROP TENANT tenant2 FORCE: 后续不再需要租户tenant2,可以立即删除。
mysql:5.6.25:oceanbase>drop tenant tenant2 force;
Query OK, 0 rows affected (0.050 sec)
select tenant_name from __all_tenant where tenant_name = 'tenant2';
Empty set (0.002 sec)