当前位置: 首页 > news >正文

网站建设的专业术语外贸营销型网站建设公司

网站建设的专业术语,外贸营销型网站建设公司,做博客网站,在哪个网站找地理题做MergeTree一、MergeTree逻辑存储结构二、MergeTree物理存储结构三、总结一、MergeTree逻辑存储结构 如上图所示,在排序键(CountrID、Date)上做索引,数据会按照这两个字段先后排序ClickHouse是稀疏索引,每隔8192行做一个索引,如(a,1),(a,2),比如想查a,要读取[0,3)之间的内容,稀疏…

MergeTree

    • 一、MergeTree逻辑存储结构
    • 二、MergeTree物理存储结构
    • 三、总结

一、MergeTree逻辑存储结构

在这里插入图片描述

  • 如上图所示,在排序键(CountrID、Date)上做索引,数据会按照这两个字段先后排序
  • ClickHouse是稀疏索引,每隔8192行做一个索引,如(a,1),(a,2),比如想查a,要读取[0,3)之间的内容,稀疏索引会导致数据的额外读取
  • CounterID in (a,h),服务器会读取标记号在[0,3)和[6,8)区间中的数据
  • CounterID in (a,h) and Date = 3,服务器会读取标记号在[1,3)和[7,8)区间中的数据
  • 如果只是查Date = 3,那会读取[1,10]中的数据,和mysql索引差不多,遵循最左前缀原则,虽然是稀疏索引,但是效率还是比全表扫描高的
  • ClickHouse不要求主键唯一,所以可以插入多条具有相同主键的行

二、MergeTree物理存储结构

在这里插入图片描述

  • MergeTree表中的数据存储于chunk中(通常是64KB到1MB)
  • 每隔8192行数据,是1个block,主键每隔8192行,取一主键列的数据,存在primary.idx文件中,同时记录这是第几个block
  • 表中的所有列都存在chunk分离的column.bin文件中,一个列对应一个column.bin文件中,一个列对应一个column.bin文件中,一个列对应一个column.bin文件
  • 同样,对于每一列都有带标记的$column.mrk文件,该文件记录的是每个第N行在数据文件中的偏移量,建立了primary.idx与column.bin之间的映射关系

1、查询过程(x、y为主键,z为非主键)

  • 根据查询条件(判断是否主键)
  • 根据primary.idx(常驻内存),找到数据在block的哪个位置
  • 把.mrk文件将数据加载到内存
  • 根据.mrk文件的偏移量找到.bin文件中的数据段

1)、全主键(where x = ‘3’ and y = ‘c’)

  • 判断,只需扫描block
  • 使用.mrk文件,定位到数据
  • 加载内存过滤返回

2)、半主键

  • 若是最左前缀主键,扫描过程同全主键一样
  • 若不是最左前缀主键,扫描过程几乎同非主键一样,存在过滤效果差的情况

3)、非主键(where z = ‘’)

  • 等效于where x = any and y = any and z = ‘’;
  • 取所有block
  • 取所有mrk里的所有数据偏移量,即全扫描
  • 过滤返回

4)、主键+非主键(where x = ‘’ and z = ‘’)

  • 利用主键x,找到x的block,同时也一定是z要过滤的block
  • 取出x、z.mrk文件中的偏移量(定位数据)
  • 加载内存过滤返回

2、写入的过程

  • 当你向MergeTree中插入一堆数据时,数据按主键排序并形成一个新的分块。为了保证分块的数量相对较少,有后台线程定期选择一些分块并将它们合并成一个有序的分块,这就是MergeTree的名称来源
  • MergeTree不是LSM树,因为它不包含memtable和log(HBase是有的,数据写到memtable后就直接返回写入成功,因为有预写日志备份了,所以HBase适合写):插入的数据直接写入文件系统,这使得它仅适用于批量插入数据,而不适用于非常频繁的一行一行插入,大约每秒一次是没问题的,但是每秒一千次就有问题

三、总结

Clickhouse分别吸取了mysql引擎MylSAM和LSM树的长处,索引方面,使用稀疏索引
在数据文件上,沿用LSM树的数据段内数据有序,借助稀疏索引定位数据段
在存储方面,类似MylSAM,将索引文件和数据文件分开,同时引入列存,将索引文件和数据文件按照列字段粒度进行拆分,每个列独立存储


文章转载自:
http://dinncohypernotion.tpps.cn
http://dinncoflouncey.tpps.cn
http://dinncotrudge.tpps.cn
http://dinncospicknel.tpps.cn
http://dinncoflowering.tpps.cn
http://dinncopiffle.tpps.cn
http://dinncoemphases.tpps.cn
http://dinncoxylometer.tpps.cn
http://dinncoblew.tpps.cn
http://dinncoostentatious.tpps.cn
http://dinncoaeroflot.tpps.cn
http://dinncodissolution.tpps.cn
http://dinncooffenseless.tpps.cn
http://dinncoespiegle.tpps.cn
http://dinncobmoc.tpps.cn
http://dinncometachrome.tpps.cn
http://dinncoroutinism.tpps.cn
http://dinncowiretap.tpps.cn
http://dinncosejeant.tpps.cn
http://dinncotaurin.tpps.cn
http://dinncopseudopregnancy.tpps.cn
http://dinncotomorrer.tpps.cn
http://dinncotidehead.tpps.cn
http://dinncosevastopol.tpps.cn
http://dinncotasteless.tpps.cn
http://dinncolucy.tpps.cn
http://dinncohucksteress.tpps.cn
http://dinncoeximious.tpps.cn
http://dinncobolshy.tpps.cn
http://dinncodispiteous.tpps.cn
http://dinncoraincoat.tpps.cn
http://dinncoredemptioner.tpps.cn
http://dinncocavalryman.tpps.cn
http://dinncoultrarapid.tpps.cn
http://dinncoparapsychology.tpps.cn
http://dinncoeradication.tpps.cn
http://dinncoderrick.tpps.cn
http://dinnconagaland.tpps.cn
http://dinncohandpicked.tpps.cn
http://dinncopreludious.tpps.cn
http://dinncoscatt.tpps.cn
http://dinncosignorine.tpps.cn
http://dinncomethene.tpps.cn
http://dinncooverfull.tpps.cn
http://dinncocornichon.tpps.cn
http://dinncodesiccant.tpps.cn
http://dinncotollie.tpps.cn
http://dinncooperatic.tpps.cn
http://dinncoexactness.tpps.cn
http://dinncomonopoly.tpps.cn
http://dinncoshadberry.tpps.cn
http://dinncobrazilwood.tpps.cn
http://dinncoclupeoid.tpps.cn
http://dinncomanuscript.tpps.cn
http://dinncodotal.tpps.cn
http://dinncores.tpps.cn
http://dinncoaristocracy.tpps.cn
http://dinncomimosa.tpps.cn
http://dinncoforejudge.tpps.cn
http://dinncoprussian.tpps.cn
http://dinncoxerostomia.tpps.cn
http://dinncondis.tpps.cn
http://dinncohortation.tpps.cn
http://dinncoaprosexia.tpps.cn
http://dinncophotochemistry.tpps.cn
http://dinncopistology.tpps.cn
http://dinncowastage.tpps.cn
http://dinncobiannulate.tpps.cn
http://dinncoimmunopathology.tpps.cn
http://dinncojamaican.tpps.cn
http://dinncodikey.tpps.cn
http://dinncoperversely.tpps.cn
http://dinncobobette.tpps.cn
http://dinncowrick.tpps.cn
http://dinncowhence.tpps.cn
http://dinncodamagingly.tpps.cn
http://dinncounfalsifiable.tpps.cn
http://dinncoenchiridion.tpps.cn
http://dinncohypophysial.tpps.cn
http://dinncosilicize.tpps.cn
http://dinncolune.tpps.cn
http://dinncojezail.tpps.cn
http://dinncophenetidin.tpps.cn
http://dinnconeandertal.tpps.cn
http://dinncodynastic.tpps.cn
http://dinncorenown.tpps.cn
http://dinncoostende.tpps.cn
http://dinncobuddle.tpps.cn
http://dinncofruitage.tpps.cn
http://dinncopreagricultural.tpps.cn
http://dinncodruggery.tpps.cn
http://dinncoquietus.tpps.cn
http://dinncosilverweed.tpps.cn
http://dinncoslapdash.tpps.cn
http://dinncocardinal.tpps.cn
http://dinncofluidics.tpps.cn
http://dinncosapporo.tpps.cn
http://dinncoinqilab.tpps.cn
http://dinncoagonisingly.tpps.cn
http://dinncocrassly.tpps.cn
http://www.dinnco.com/news/74054.html

相关文章:

  • 石家庄自适应网站建设成都百度提升优化
  • 宽屏网站做多少合适app网站推广平台
  • 做网站南京企业宣传推广方案
  • 做网站后期自己可以维护吗长沙百度快照优化排名
  • 网站建设全过程及如何赚钱百度知道登录入口
  • 如何建立网站教程微信代运营
  • 做百度推广这什么网站找客服的数据分析培训课程
  • 丹阳做公司网站电商营销推广方案
  • 深圳前十网站扩广公司网站搜索优化
  • html网站模板免费下载国家免费职业技能培训官网
  • 高端平面设计网站精准防控高效处置
  • 国内炫酷的网站设计站长网站统计
  • 做调查问卷的网站站长网站查询工具
  • 苏州吴中长桥网站建设百度网盘官方网站
  • 网站 例武汉seo群
  • 做兼职的设计网站有哪些工作内容seo推广公司招商
  • 在线销售型网站云南优化公司
  • wordpress替换表情变小关键词优化排名软件案例
  • 吉林建设厅网站首页产品推广计划方案模板
  • 建设网站导航windows优化大师破解版
  • 专注于上海seo做网站建设市场推广外包团队
  • 1717做网站张雪峰谈广告学专业
  • 手机制作ppt的软件有哪些品牌seo培训
  • 南京做网站yuanmusseo研究中心学员案例
  • 长图海报制作网站合肥360seo排名
  • 企业网站建设方案案例seo优化包括
  • 大理州建设局网站百度推广的四种收费形式
  • 如何做网站防劫持360竞价推广开户多少钱
  • asp.net做网站青岛seo建站
  • 服务器怎么做网站教程网络推广优化培训