표 크기 - MariaDB Columnstore 대 InnoDB
MariaDB의 ColumnStore에서 발견한 모든 분석에서는 InnoDB와 같은 일반 엔진보다 디스크 공간을 적게 사용한다고 주장합니다(예: https://www.percona.com/blog/2017/03/17/column-store-database-benchmarks-mariadb-columnstore-vs-clickhouse-vs-apache-spark/).
하지만 그건 내 테스트에서 찾은 게 아니야
CREATE TABLE `innodb_test` (id int, value1 bigint, value2 bigint, value3 bigint, value4 bigint, value5 bigint) ENGINE=innodb;
CREATE TABLE `columnstore_test` (id int COMMENT 'compression=2', value1 bigint COMMENT 'compression=2', value2 bigint COMMENT 'compression=2', value3 bigint COMMENT 'compression=2', value4 bigint COMMENT 'compression=2',value5 bigint COMMENT 'compression=2') ENGINE=columnstore;
값이 0인 100만 행(5열)을 테이블에 삽입합니다.
INSERT INTO innodb_test
SELECT CONCAT(a1.id,a2.id,a3.id,a4.id,a5.id,a6.id),
0,0,0,0,0
from
(select 0 as id union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) a1,
(select 0 as id union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) a2,
(select 0 as id union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) a3,
(select 0 as id union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) a4,
(select 0 as id union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) a5,
(select 0 as id union all select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all select 6 union all select 7 union all select 8 union all select 9) a6;
INSERT INTO columnstore_test SELECT * FROM innodb_test;
컬럼 스토어 테이블의 크기가 innoDB 테이블보다 큽니다.
call columnstore_info.table_usage(NULL, 'columnstore_test');
+--------------+------------------+-----------------+-----------------+-------------+
| TABLE_SCHEMA | TABLE_NAME | DATA_DISK_USAGE | DICT_DISK_USAGE | TOTAL_USAGE |
+--------------+------------------+-----------------+-----------------+-------------+
| size_comp | columnstore_test | 352.05 MB | 0 Bytes | 0 Bytes |
+--------------+------------------+-----------------+-----------------+-------------+
SELECT table_name, (data_length + index_length) / (1024 * 1024) "Size in MB" FROM information_schema.tables WHERE table_schema = schema() AND table_name = 'innodb_test';
+-------------+------------+
| table_name | Size in MB |
+-------------+------------+
| innodb_test | 71.6094 |
+-------------+------------+
또, 압축하지 않고 테이블을 작성해도, 사이즈는 다음과 같습니다.
CREATE TABLE `columnstore_no_compression` (id int COMMENT 'compression=0', value1 bigint COMMENT 'compression=0', value2 bigint COMMENT 'compression=0', value3 bigint COMMENT 'compression=0', value4 bigint COMMENT 'compression=0',value5 bigint COMMENT 'compression=0') ENGINE=columnstore;
INSERT INTO columnstore_no_compression SELECT * FROM innodb_test;
call columnstore_info.table_usage(NULL, 'columnstore_no_compression');
+--------------+----------------------------+-----------------+-----------------+-------------+
| TABLE_SCHEMA | TABLE_NAME | DATA_DISK_USAGE | DICT_DISK_USAGE | TOTAL_USAGE |
+--------------+----------------------------+-----------------+-----------------+-------------+
| size_comp | columnstore_no_compression | 352.00 MB | 0 Bytes | 0 Bytes |
+--------------+----------------------------+-----------------+-----------------+-------------+
mariadb-columnstore-1.1.2-1 버전을 사용하고 있습니다.
my.ini 파일:
[client]
port = 3306
socket = /usr/local/mariadb/columnstore/mysql/lib/mysql/mysql.sock
[mysqld]
loose-server_audit_syslog_info = columnstore-1
port = 3306
socket = /usr/local/mariadb/columnstore/mysql/lib/mysql/mysql.sock
datadir = /ssd/mariadb/db
skip-external-locking
key_buffer_size = 512M
max_allowed_packet = 1M
table_cache = 512
sort_buffer_size = 4M
read_buffer_size = 4M
read_rnd_buffer_size = 16M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 0
thread_stack = 512K
lower_case_table_names=1
group_concat_max_len=512
sql_mode="ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"
infinidb_compression_type=2
infinidb_stringtable_threshold=20
infinidb_local_query=0
infinidb_diskjoin_smallsidelimit=0
infinidb_diskjoin_largesidelimit=0
infinidb_diskjoin_bucketsize=100
infinidb_um_mem_limit=0
infinidb_use_import_for_batchinsert=1
infinidb_import_for_batchinsert_delimiter=7
basedir = /usr/local/mariadb/columnstore/mysql/
character-sets-dir = /usr/local/mariadb/columnstore/mysql/share/charsets/
lc-messages-dir = /usr/local/mariadb/columnstore/mysql/share/
plugin_dir = /usr/local/mariadb/columnstore/mysql/lib/plugin
binlog_format=ROW
server-id = 1
log-bin=/usr/local/mariadb/columnstore/mysql/db/mysql-bin
relay-log=/usr/local/mariadb/columnstore/mysql/db/relay-bin
relay-log-index = /usr/local/mariadb/columnstore/mysql/db/relay-bin.index
relay-log-info-file = /usr/local/mariadb/columnstore/mysql/db/relay-bin.info
tmpdir = /ssd/tmp/
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
[isamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[myisamchk]
key_buffer_size = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
그게 예상된 행동인가요, 아니면 제가 잘못하고 있는 건가요?
저는 MariaDB Column Store의 소프트웨어 엔지니어입니다.
Column Store는 대용량 데이터 세트에 최적화되어 있으며 열에 디스크 공간을 미리 할당합니다.이 방법의 장점은 디스크 스핀들에서는 단편화될 가능성이 적다는 것입니다.단점은 다음과 같은 소규모 데이터 세트의 경우 사용되지 않는 공간이 많이 할당된다는 것입니다.
첫 번째 열 익스텐트에 256KB를 사전 할당하는 것으로 시작하여 2^23 행(800만 행을 조금 초과)까지 확장합니다.따라서 각 BIGINT 열에 대해 64MB가 사전 할당되고 INT에 대해 32MB가 사전 할당됩니다.압축된 파일의 헤더 블록에 대해 압축된 것과 압축되지 않은 것의 작은 차이입니다.실제 사용법을 보여줄 수 있는 information_schema 테이블이 있습니다(8KB 이내).
https://mariadb.com/kb/en/library/columnstore-information-schema-tables/
따라서 (적어도 몇 GB 범위 내에서) 훨씬 더 큰 데이터 세트를 사용할 계획이 아니라면 데이터가 거의 없을 때 디스크 사용량이 증가합니다.
언급URL : https://stackoverflow.com/questions/48895502/table-size-mariadb-columnstore-vs-innodb
'programing' 카테고리의 다른 글
MySQL 테이블에 행이 있는지 테스트하는 가장 좋은 방법 (0) | 2022.10.11 |
---|---|
Python 객체가 "서브스크립트 가능"인지 아닌지는 무엇을 의미합니까? (0) | 2022.10.11 |
JavaScript에서 바이트 단위의 크기를 KB, MB, GB로 변환하는 올바른 방법 (0) | 2022.10.11 |
Rxandroid SubscribeOn과 ObservateOn의 차이점은 무엇입니까? (0) | 2022.10.11 |
Symfony에서 저장소에 주입하려면 어떻게 해야 합니까? (0) | 2022.10.11 |