elasticsearch,Ruby On Rails,elasticsearch" /> elasticsearch,Ruby On Rails,elasticsearch" />

Ruby on rails ElasticSearch在索引数据之间缺少一些列

Ruby on rails ElasticSearch在索引数据之间缺少一些列,ruby-on-rails,elasticsearch,Ruby On Rails,elasticsearch,你好,我有一个问题,我有一个表用户(id、姓名、地址和电子邮件),我的elasticsearch内存是256mb。当我索引数据时,它在索引过程中丢失了一些列数据。丢失的数据可能是电子邮件或任何其他字段。请告诉我为什么elasticsearh丢失数据 elasticsearch version -> 0.90 indexes :book_info do indexes :isbn, :type => 'string' indexes :i

你好,我有一个问题,我有一个表用户(id、姓名、地址和电子邮件),我的elasticsearch内存是256mb。当我索引数据时,它在索引过程中丢失了一些列数据。丢失的数据可能是电子邮件或任何其他字段。请告诉我为什么elasticsearh丢失数据

elasticsearch version -> 0.90


      indexes :book_info do
        indexes :isbn, :type => 'string'
        indexes :isbn13, :type => 'string'
        indexes :description, :type => 'string'
        indexes :release_date, type: 'date'
        # commenting all the code related to plan type in elastic search
        indexes :plan_type, :type => 'string', index: 'not_analyzed'
        indexes :is_available, :type => 'boolean'
      end
示例数据保存在elasticsearch中,如下所示

book_info: {
isbn: 62010662
isbn13: 9780062010667
description: <p><em>Scambusters!</em> is a working manual senior citizens can use to defend themselves against the most common scams aimed at the elderly. It provides readers with a comprehensive approach to identifying scams in the making, and shows them specific prevention tools and how to use them. </p><p>Inside, you'll find step-by-step instructions, helpful anecdotes, and references to dozens of consumer organizationals and government agencies devoted to thwarting swindlers. Weather buying mutual funds, repairing a car, purchasing drugs from online pharmacies, or taking out loans on your home, <em>Scambusters!</em> will protect seniors when they need it.</p>
release_date: 2010-05-25T00:00:00Z
plan_type: null
is_available: true
}
book\u信息:{
国际标准书号:62010662
isbn13:9780062010667
描述:Scambusters!是一本工作手册,老年人可以使用它来抵御针对老年人的最常见骗局。它为读者提供了一种全面的方法来识别正在制造的骗局,并向他们展示了具体的预防工具以及如何使用它们。

在这本手册中,你可以找到逐步的说明,h有益的趣闻轶事,以及数十个致力于打击骗子的消费者组织和政府机构的参考资料。无论是购买共同基金、修车、从网上药店购买药品,还是从家里贷款,骗子们!都会在老年人需要时保护他们

发布日期:2010-05-25T00:00:00Z 计划类型:空 _是否可用:true }
如果我们想提供帮助,您需要分享更多信息。查看模式、示例数据、文档数量、代码片段、Elasticsearch版本等将非常有帮助。@JohnPetrone先生我更新了我的问题,请立即检查