mysql cluster表空間建立相關命令

2021-07-04 05:54:38 字數 952 閱讀 8702

1.建立日誌檔案組

create logfile group lg_1 add undofile 'undo_1.log'  initial_size 1024m undo_buffer_size 128m engine ndbcluster;

2.建立表空間

create tablespace ts_1   add datafile 'data_1.dat'   use logfile group lg_1  initial_size 409600m  engine ndbcluster;

3.向表空間裡新增資料檔案

alter tablespace ts_1 add datafile 'data_13.dat' initial_size 107374172400 engine ndbcluster;    

alter tablespace ts_1 add datafile 'data_13.dat' initial_size 10g engine ndbcluster; 

4.刪除順序為:表——資料檔案——表空間——日誌檔案 組

drop table dt_1;

alter tablespace ts_1  drop datafile 'data_1.dat『  engine ndbcluster;

drop tablespace ts_1 engine ndbcluster;

drop logfile group lg_1  engine ndbcluster;

5.檢視表空間的使用情況

select tablespace_name, file_name, extent_size*total_extents/1024/1024 as total_mb, extent_size*free_extents/1024/1024 as free_mb, extra from information_schema.files where file_type="datafile";

mysql cluster 安裝測試

mysql cluster 實際上是在無共享儲存裝置的情況下實現的一種完全分布式資料庫系統,其主要通過ndb cluster 簡稱ndb 儲存引擎來實現。也就是資料庫集群,最開始的版本是將資料放在記憶體,新的版本是只將索引放入記憶體。記憶體和網路影響 mysql cluster 效能。一安裝mysq...

Ubuntu安裝Mysqlcluster集群

可參考 具體的安裝過程,可參考mysqlcluster手冊中的第4章。安裝 1,檢查系統是否已存在mysql組和mysql使用者,若不存在則新建mysql使用者組和mysql使用者 2,解壓到 usr local目錄下並建立mysql的軟鏈結 3,初始化mysql,在執行初始化之前必須先安裝依賴包 ...

Mysql cluster問題列表

mysql cluster問題列表 在安裝和使用 mysql cluster 集群的過程中,遇到了很多問題,現在把那些問題列出來,並復上解決方法,希望大家在以後的使用中能少花時間少走彎路 1 匯入資料的時候遇到如下報錯 error 1005 hy000 at line 25 can t create...