欢迎来到 连云港市某某国际贸易制造厂
全国咨询热线:020-123456789
联系我们

地址:联系地址联系地址联系地址

电话:020-123456789

传真:020-123456789

邮箱:admin@aa.com

新闻中心
ES 源码分析之数据类型转换
  来源:连云港市某某国际贸易制造厂  更新时间:2024-05-02 15:37:04

ES 源码分析之数据类型转换

公司有的源码小伙伴问我 ,为什么不推荐我们使用 nested 结构呢 ,分析还说性能低。据类那么,型转ES 针对 nested 之类的源码结构 。因为ES 源码我也基本看完了 。分析索性,据类直接写成笔记 。型转比直接在代码里面写注释来的源码更舒心点 。

1问题描述

  • ES 是分析 lucene 不仅仅是集群版的概念,还有涉及到支持丰富的据类数据类型。如 nested 、型转object 等等结构。源码它是分析怎么支持的呢?
  • ES 还支持 _id 、_version 等等字段 。据类这种是怎么存储的呢 ?
  • 听说 ES 的 parent doc 和 nested doc 是分开来存储的 ,那么获取的时候 ,他们是通过哪种关系关联的呢?

2类型转换

2.1初步代码入口

代码具体入口 org.elasticsearch.index.shard.IndexShard#prepareIndex

public static Engine.Index prepareIndex(DocumentMapperForType docMapper, SourceToParse source, long seqNo,n long primaryTerm, long version, VersionType versionType, Engine.Operation.Origin origin,n long autoGeneratedIdTimestamp, boolean isRetry,n long ifSeqNo, long ifPrimaryTerm) { n long startTime = System.nanoTime();nn // 涉及到 nested 等等结构的转换,直接看【2.2 类型具体转换代码】n ParsedDocument doc = docMapper.getDocumentMapper().parse(source);nn // Mapping 是否要处理n if (docMapper.getMapping() != null) { n doc.addDynamicMappingsUpdate(docMapper.getMapping());n }nn // _id 转 uid 。这里是为了数据能保持整齐,方便压缩。可以参考 【哈夫曼编码】。n Term uid = new Term(IdFieldMapper.NAME, Uid.encodeId(doc.id()));nn return new Engine.Index(uid, doc, seqNo, primaryTerm, version, versionType, origin, startTime, autoGeneratedIdTimestamp, isRetry,n ifSeqNo, ifPrimaryTerm);n }n

2.2类型具体转换代码

/**n * 内部转换文档,如果有 nested 结构,需要再次转换一下n * @param mappingn * @param contextn * @param parsern * @throws IOExceptionn */n private static void internalParseDocument(Mapping mapping, MetadataFieldMapper[] metadataFieldsMappers,n ParseContext context, XContentParser parser) throws IOException { n final boolean emptyDoc = isEmptyDoc(mapping, parser);nn /**n * 预处理,为 root document 拆开,添加如下 :比如,_id 、_version 也是一个 document ,具体看下面的 【2.3 支持 _id 之类的字段】n */n for (MetadataFieldMapper metadataMapper : metadataFieldsMappers) { n metadataMapper.preParse(context);n }nn if (mapping.root.isEnabled() == false) { n // entire type is disabledn parser.skipChildren();n } else if (emptyDoc == false) { n // 转换对象或者 nested 结构,这个方法会反复递归调用。主要是 object 结构或者 nested 结构n parseObjectOrNested(context, mapping.root);n }nn // 为各个非 root document 添加 _version 等等字段n for (MetadataFieldMapper metadataMapper : metadataFieldsMappers) { n metadataMapper.postParse(context);n }n }n

2.3前置处理之支持_id之类的字段

代码位置 :org.elasticsearch.index.mapper.MetadataFieldMapper#preParse
下面只贴出 _id 的处理

/**n * _id 也是一个 docn * @param contextn */n @Overriden public void preParse(ParseContext context) { n BytesRef id = Uid.encodeId(context.sourceToParse().id());n context.doc().add(new Field(NAME, id, Defaults.FIELD_TYPE));n }n

这里只是了其中的一个例子:_id ,其他的比如 _version、_seqno、_source 等等处理也类似 。

2.4转换复杂的结构  ,比如nested结构

ES 在转换 nested 结构的时候 ,比较有意思。

2.4.1类型转换整体入口

/**n * 转换 object 或者 nested 结构的 ,这里会出现递归调用,主要是为了解决 object 、nested 结构n * @param contextn * @param mappern * @throws IOExceptionn */n static void parseObjectOrNested(ParseContext context, ObjectMapper mapper) throws IOException { n if (mapper.isEnabled() == false) { n context.parser().skipChildren();n return;n }n XContentParser parser = context.parser();n XContentParser.Token token = parser.currentToken();n if (token == XContentParser.Token.VALUE_NULL) { n // the object is null ("obj1" : null), simply bailn return;n }nn String currentFieldName = parser.currentName();n if (token.isValue()) { n throw new MapperParsingException("object mapping for [" + mapper.name() + "] tried to parse field [" + currentFieldNamen + "] as object, but found a concrete value");n }nn ObjectMapper.Nested nested = mapper.nested();n // 如果是 nested 结构 ,每次都会new 一个空白的 document  ,而且 ,这个方法 #{ innerParseObject} ,是递归实现,把 object 或者 document 变成多个 documentn if (nested.isNested()) { n // 进入下方的 :【2.4.2 nested 转换初步入口】n context = nestedContext(context, mapper);n }nn // if we are at the end of the previous object, advancen if (token == XContentParser.Token.END_OBJECT) { n token = parser.nextToken();n }n if (token == XContentParser.Token.START_OBJECT) { n // if we are just starting an OBJECT, advance, this is the object we are parsing, we need the name firstn token = parser.nextToken();n }nn // 转换对象n innerParseObject(context, mapper, parser, currentFieldName, token);nn // restore the enable path flagn if (nested.isNested()) { n nested(context, nested);n }n }n

2.4.2nested转换初步入口

/**n * 内部转换 nested 结构  ,生成一个空白的 nested 结构n * TODO nested 文档的 _id 既然跟父文档的一样 ,lucene 写入每个 doc ,都是拼接。那么 ,在get 的时候,自然会获取到相同的 _id 多个文档,包含了 nested 结构 。然后,再内部转换为我们 最想要的结果 。n * @param contextn * @param mappern * @returnn */n private static ParseContext nestedContext(ParseContext context, ObjectMapper mapper) { nn // 创建 nested 上下文 ,并且 ,new 一个空白的 document 。为后面的 nested 的字段或者对象之类的 ,全部加上n context = context.createNestedContext(mapper.fullPath());nn ParseContext.Document nestedDoc = context.doc();n ParseContext.Document parentDoc = nestedDoc.getParent();nn // We need to add the uid or id to this nested Lucene document too,n // If we do not do this then when a document gets deleted only the root Lucene document gets deleted andn // not the nested Lucene documents! Besides the fact that we would have zombie Lucene documents, the ordering ofn // documents inside the Lucene index (document blocks) will be incorrect, as nested documents of different rootn // documents are then aligned with other root documents. This will lead tothe nested query, sorting, aggregationsn // and inner hits to fail or yield incorrect results.n IndexableField idField = parentDoc.getField(IdFieldMapper.NAME);n if (idField != null) { n // We just need to store the id as indexed field, so that IndexWriter#deleteDocuments(term) can thenn // delete it when the root document is deleted too.n nestedDoc.add(new Field(IdFieldMapper.NAME, idField.binaryValue(), IdFieldMapper.Defaults.NESTED_FIELD_TYPE));n } else { n throw new IllegalStateException("The root document of a nested document should have an _id field");n }nn // the type of the nested doc starts with __, so we can identify that its a nested one in filtersn // note, we don't prefix it with the type of the doc since it allows us to execute a nested queryn // across types (for example, with similar nested objects)n nestedDoc.add(new Field(TypeFieldMapper.NAME, mapper.nestedTypePathAsString(), TypeFieldMapper.Defaults.NESTED_FIELD_TYPE));n return context;n }n

仔细看看里面的英文。主要的一点是 :nested 结构的 _id 和 parent 的 _id 保持一致 。那么,通过 GET docId 这种操作 ,就可以拿到所有的文档了 。而且 ,删除的时候,特别的方便 。算是 ES 这种的一个方案吧 。

2.4.3数据处理

每个字段的填充入口在 :org.elasticsearch.index.mapper.DocumentParser#innerParseObject
这里是一个递归调用的操作。比较绕 。

2.5后置处理之设置_version等等

下面贴出来 _version 的处理
代码的入口  :org.elasticsearch.index.mapper.VersionFieldMapper#postParse,可以看看具体的实现 。

@Overriden public void postParse(ParseContext context) { n // In the case of nested docs, let's fill nested docs with version=1 so that Lucene doesn't write a Bitset for documentsn // that don't have the field. This is consistent with the default value for efficiency.n Field version = context.version();n assert version != null;n for (Document doc : context.nonRootDocuments()) { n // 为此 doc 添加一个 _version 字段n doc.add(version);n }n }n

这里支持举了 _version 举个例子,其他类似 。

3总结

  • ES 是 lucene 不仅仅是集群版的概念 ,还有涉及到支持丰富的数据类型。如 nested  、object 等等结构 。它是怎么支持的呢?
    答 :ES 针对 nested  、object 直接拍平处理
  • ES 还支持 _id 、_version 等等字段。这种是怎么存储的呢?
    答 :ES 针对 _id 、_version 是保存为独立的文档的。
  • 听说 ES 的 parent doc 和 nested doc 是分开来存储的 ,那么获取的时候 ,他们是通过那种关系关联的呢?
    答:通过 root Doc 的 ID 来做关联的。

4其他

后续请关注 ES 写入流程。让我们看看 ES 是如何处理分布式请求及保证高可用的。


友情链接满级剑神玩家分享 DNF剑魂刷图装备搭配及详解《魔兽世界》猎人怎么加点 猎人加点攻略S13英雄联盟光辉怎么出装 S13光辉出装选择介绍魔兽世界八卦:绝不领便当 浅谈游戏中的复活人物地下城驭剑士用什么武器好(DNF剑宗短宗加点攻略)英雄联盟英雄攻略 LOL101攻略资料站王者荣耀冲分霸主关羽玩法出装全面详解论坛在线时间挂机器_数字未来已来——中国企业数字化学习云论坛智能手表是如何测心率的?红色警戒2单机秘籍(红警2秘籍大全无限金钱)《阴阳师》手游12月6日维护更新公告魔兽世界9.0黑市商人在哪 9.0黑市拍卖行位置介绍魔兽世界9.1:竞技场3V3小心得wed是什么意思网络用语(wed是什么意思)DNF韩服巫女异界套装属性一览 韩服女圣职者前瞻高驰全新跑步越野表APEX 2 Pro/传感器POD 2测评:哪些性能显著提升?【蜗牛助手激活码卡密授权】正版激活码授权-蜗牛助手使用教程-蜗牛助手密友功能 安卓高端稳定微信无限哆开营销软件 独家支持安卓11系统 陌生人朋友圈极速转发/高级转发 朋友圈详情长按图片极速转发/高级转洛克王国风系徽章怎么获得 洛克王国风系徽章怎样得辐射3武器秘籍(《辐射》系列里的中国军官剑)12.17版本更新公告:预热世界赛,秒表系列装备涨价驾考助手软件下载安装官方版app2024免费最新版魔兽世界15周年活动是哪几天-15周年活动亚服上线时间英雄联盟手游ez出装天赋怎么样 lol手游伊泽瑞尔介绍《王者荣耀》新英雄黄忠如何出装 黄忠六神装出装顺序红警2秘籍有哪些 红警2秘籍最新大全一览祖格肩膀附魔在哪换心动小精灵如何更改性别?宠物性别更改大法《乱斗西游》最全装备图鉴大全介绍英女王真自私,儿媳的珠宝不及公主的分毫,寓意不好的给了戴安娜有人能讲解一下魔切流阿狸吗?和散漫同学的H生活地下城驭剑士用什么武器好(DNF剑宗短宗加点攻略)智能手表是如何测心率的?蓝桥杯2019年软件类省赛:真题+解答探索文旅融合创新实践 深圳欢乐谷打造全球首个迷你世界IP潮玩主题区新区集结丨四载相逢,平安共守极品飞车火爆开飙,游戏而已打下DNF:武神和武极难抉择,到底谁更强?其中一位是现版本超一线!lol游戏快捷技巧大全(LOL云顶之弈快捷键大全有哪些 英雄联盟自走棋快捷键简介)高冷的寒冰血脉,冰霜女巫丽桑卓攻略
联系我们

地址:联系地址联系地址联系地址

电话:020-123456789

传真:020-123456789

邮箱:admin@aa.com

0.2797

Copyright © 2024 Powered by 连云港市某某国际贸易制造厂   sitemap