zoukankan      html  css  js  c++  java
  • Postgres的TOAST技术

    一、介绍 
    首先,Toast是一个名字缩写,全写是The OverSized Attribute Storage Technique,即超尺寸字段存储技术,顾名思义,是说超长字段在Postgres的一个存储方式。Postgres采用的存储默认是每个页面存储固定8Kb大小的数据,并且元组不允许跨页面存储,所以并不能直接存储大字段数据。Toast就是为此应运而生,它会将大字段值压缩或者分散为多个物理行来存储。对于用户来说完全不用关注这一技术实现,完全是透明的。 

    二、TOAST的存储方式 
          Postgres的部分类型数据支持toast,不是全部类型是因为有些字段类型是不会产生大字段数据的,完全没必要用到Toast技术(比如date,time,boolean等)。支持Toast的数据类型应当时变长的(variable-length),变长字段最多可选择32bit的列头(header),Toast占用两个变长的bit位来作为FLAG,故Toast的逻辑尺寸限制是(2^30-1)~1GB,当两个bit都是0是,这个数据类型的值就是非Toast的(untoasted)。当表中字段任何一个有Toast,那这个表都会有这一个相关联的Toast表,OID被存储在pg_class.reltoastrelid里面。超出的的数值将会被分割成chunks,并最多toast_max_chunk_size 个byte(缺省是2Kb),当存储的行数据超过toast_tuple_threshold值(通常是2kB),就会触发toast存储,这时toast将会压缩或者移动字段值直到超出部分比toast_tuple_targer值小(这个值通常也是2KB)。 

    相比较普通表(MAIN TABLE),TOAST有额外的三个字段

    chunk_id   :标识TOAST表的OID字段
    chunk_seq  :chunk的序列号,与chunk_id的组合唯一索引可以加速访问
    chunk_data :存储TOAST表的实际数据

    Toast有识别4种不同可存储toast的策略:

    --plain避免压缩或行外存储
    PLAIN prevents either compression or out-of-line storage; furthermore it disables use of single-byte headers for varlena types. This is the only possible strategy for columns of non-TOAST-able data types
    
    --extended允许压缩和行外存储(默认toast存储)
    EXTENDED allows both compression and out-of-line storage. This is the default for most TOASTable data types. Compression will be attempted first, then out-of-line storage if the row is still too big
    
    --external允许行外但不允许压缩
    EXTERNAL allows out-of-line storage but not compression. Use of EXTERNAL will make substring operations on wide text and bytea columns faster(at the penalty of increased storage space) because these operations are optimized to fetch only the required parts of the out-of-line value when it is not compressed
    
    --main允许压缩但不允许行外存储
    MAIN allows compression but not out-of-line storage. (Actually, out-of-line storage will still be performed for such columns, but only as a last resort when there is no other way to make the row small enough to fit on a page

    上述压缩采用的是LZ compression技术, 
    源码见: postgresql-9.2.3/src/backend/utils/adt/pg_lzcompress.c 

    TOAST可以通过SQL来更改存储方式,示例:

    ALTER TABLE table_name ALTER COLUMN column_name SET STORAGE {PLAIN | EXTENDED | MAIN | EXTERNAL};
    
    new_test=# d+ t_toast02
    Table "public.t_toast02"
    Column | Type | Modifiers | Storage | Stats target | Description 
    --------+-------------------+-----------+----------+--------------+-------------
    id | integer | | plain | | 
    name | character varying | | extended | | 
    t | text | | extended | |
    
    new_test=# alter table t_toast02 alter COLUMN name set storage main;
    ALTER TABLE
    new_test=# d+ t_toast02
    Table "public.t_toast02"
    Column | Type | Modifiers | Storage | Stats target | Description 
    --------+-------------------+-----------+----------+--------------+-------------
    id   | integer |          | plain | | 
    name | character varying | | main | | 
    t | text
    

      

    2.TOAST表计算大小

    new_test=# select oid, relname ,reltoastrelid from pg_class where relname = 't_toast02';
      oid   |  relname  | reltoastrelid 
    --------+-----------+---------------
     128949 | t_toast02 |        128952
    (1 row)
    
    
    new_test=# truncate t_toast02;
    TRUNCATE TABLE
    new_test=# insert into t_toast02 select generate_series(1,2),repeat('Are you OK ',2),repeat('I am fine , Thanks !!!',1000);
    INSERT 0 2
    new_test=# select id, pg_column_size(id),pg_column_size(name),pg_column_size(t) from t_toast02;
     id | pg_column_size | pg_column_size | pg_column_size 
    ----+----------------+----------------+----------------
      1 |              4 |             23 |            286
      2 |              4 |             23 |            286
    (2 rows)
    
    new_test=# select pg_relation_size(128952);
     pg_relation_size 
    ------------------
                    0
    (1 row)
    
    insert into t_toast02 select generate_series(3,4),repeat('Are you OK ',2),repeat('I am fine , Thanks !!!',10000);
    INSERT 0 2
    
    new_test=# select pg_relation_size(128952);
     pg_relation_size 
    ------------------
                 8192
    (1 row)

    四、TOAST的优缺点 
    1.可以存储超长超大字段,避免之前不能直接存储的限制 
    2.物理上与普通表是分离的,检索查询时不检索到该字段会极大地加快速度 
    3.更新普通表时,该表的Toast数据没有被更新时,不用去更新Toast表 

    Toast的劣势: 
    1.对大字段的索引创建是一个问题,有可能会失败,其实通常也不建议在大字段上创建,全文检索倒是一个解决方案。 
    2.大字段的更新会有点慢,其它DB也存在,通病 

    ref https://my.oschina.net/Kenyon/blog/113026

  • 相关阅读:
    进程与线程
    silverlight中的几个冷门标记 {x:Null},d:DesignWidth,d:DesignHeight
    silverlight数据绑定模式TwoWay,OneWay,OneTime的研究
    silverlight 相册雏型
    IIS7的应用程序池
    silverlight如何在运行时用代码动态控制(或创建)动画
    庆祝silverlight 4 beta版发布,上几张养眼MM照片
    [转贴]Silverlight Socket 实现收发信息
    IIS7.5中神秘的ApplicationPoolIdentity
    silverlight中如何将string(字符串)写入Resource(资源)?
  • 原文地址:https://www.cnblogs.com/zhangeamon/p/7550578.html
Copyright © 2011-2022 走看看