【问题标题】:Use mongoosastic for an autocomplete使用 mongoosastic 进行自动完成
【发布时间】:2015-12-04 08:13:54
【问题描述】:

我正在尝试使用 mongoosastic 和 Elastic Search 创建一个自动完成功能,到目前为止,我已经能够使用 sense 创建它,但我无法将它移植到 mongoosastic。

我遵循了 ElasticSearch 文档中的 this 教程,我能够使用“sense”和如下所示的映射来实现我想要的:

PUT storys/story/_mapping
{
    "story" : { 
        "properties": {
            "description": {
                "type": "string"
            },
            "title": {
                "type" : "completion",
                "index_analyzer": "simple",
                "search_analyzer": "simple"
            }
        }  
    }
}

还有这样的查询:

GET storys/_suggest
{
    "story-suggest": {
        "text": "bow",
        "completion": {
            "field": "title"
        }
    }
}

但是,我在将其移植到 mongoosastic 时遇到了麻烦。我尝试了以下方法:

    var StorySchema = new Schema({
        title:{
            type: String, es_type:'completion', es_index_analyzer: 'simple', es_search_analyzer: 'simple', es_payloads: true
        },
        description: { 
            type: String
        }
    });

StorySchema.plugin(mongoosastic);

当从服务器控制器查询时:

Story.search({ 
    query: {
        "match": { title : req.query.q }
    },
    suggest: {
            "my-title-suggestions-1" :{
                text: req.query.q,
                completion: {
                    field: 'title'
                }
            }
        }
});

我了解当我使用“sense”时,我使用的是 _suggest 端点,这就是“story-suggest”查询有效的原因。但是,在使用 mongoosastic 时,我仅限于使用 .search({}) 进行查询,我想这就像 _search 一样。但是,我似乎无法找到一种方法来完成我正在寻求自动完成的 _suggest 行为,并且当我尝试使用建议进行查询时,我不断收到 ElasticSearch 中的解析错误。

有没有办法通过 mongoosastic 或弹性搜索来完成我想要做的事情?

我尝试过使用“sense”来执行此操作,但即使我得到了“自动完成”的建议,我也得到了一堆 SearchParseExceptions:

GET _search
{
    "query": {
       "match": { title : "bow" }
    },
    "suggest": {
        "story-suggest": {
            "text": "bow",
            "completion": {
                "field": "title"
            }
        }
    }
}

【问题讨论】:

    标签: node.js elasticsearch mongoosastic


    【解决方案1】:

    这是一个基本自动完成的完整解决方案:

    1. 将必要的参数添加到您的架构中:

      var TagSchema = new Schema({
          name: {
              type: String,
              unique: true,
              required: true,
              es_type: 'completion',
              es_index_analyzer: 'simple',
              es_search_analyzer: 'simple',
              es_payloads: true
          }
      });
      
    2. 将插件添加到您的架构并创建模型:

      TagSchema.plugin(mongoosastic);
      var Tag = mongoose.model('Tag', TagSchema);
      
    3. 使用create mapping方法向ES注册映射。如果您不执行此步骤,您的索引将在创建和索引第一个文档时使用默认值注册:

      Tag.createMapping(function(err, mapping) {
          if (err) {
              console.log('error creating mapping (you can safely ignore this)');
              console.log(err);
          } else {
              console.log('mapping created!');
              console.log(mapping);
          }
      });
      
    4. *可选 - 索引数据库中的现有文档:

      var stream = Tag.synchronize(),
          count = 0;
      
      stream.on('data', function(err, doc) {
          count++;
      });
      stream.on('close', function() {
          console.log('indexed ' + count + ' documents!');
      });
      stream.on('error', function(err) {
          console.log(err);
      });
      
    5. 使用空查询正文进行搜索并提供两个选项 - 1) 使用 ES suggest 查询,该查询使用我们在架构中创建的“es_completion”字段; 2) size = 0 以便空正文查询不返回任何标签。

      Tag.search(null, {
          suggest: {
              "tag-suggest": {
                  "text": "aTermToAutocomplete",
                  "completion": {
                      "field": "name"
                  }
              }
          },
          "size" : 0
      },
      function(err, results) {
          if (err) {
              return console.log(JSON.stringify(err, null, 4));
          }
          return console.log(JSON.stringify(results, null, 4));
      });
      

    【讨论】:

    • 我现在尝试使用它时出现此错误,“msg”:“[illegal_argument_exception] 请求 [/products/product/_search] 包含无法识别的参数:[suggest] -> 你的意思是 [建议字段]?”,当我更改为建议字段时,我收到另一个看起来很容易修复但不起作用的错误。
    • 当我做同样的事情时,它会将类型作为文本。
    【解决方案2】:

    我找到了办法。使用 mongoosastic 库的最新更新,您可以执行以下操作:

    GET _search
    {
        "query": {
           "match_all": {}
        },
        "suggest": {
            "story-suggest": {
                "text": "bow",
                "completion": {
                    "field": "title"
                }
            }
        }
    }
    

    这是因为新的 mongoosastic 版本支持建议器。请注意您在做什么,特别是在查询部分,因为“match_all”会匹配所有文档并给您不必要的大响应;但是无论您在建议者的“文本”部分中放置什么内容,都会将这些单词返回给自动完成。

    另外请注意,为了使其正常工作,您需要在模型定义中使用 createMapping 方法,如下所示:

    var StorySchema = new Schema({
        title:{
            type: String, es_type:'completion', es_index_analyzer: 'simple', es_search_analyzer: 'simple', es_payloads: true
        },
        description: { 
            type: String
        }
    });
    
    StorySchema.plugin(mongoosastic);
    var Story = mongoose.model('Story', StorySchema);
    
    Story.createMapping({}, function(err, mapping){
        // ...
    });
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2013-08-12
      • 2015-04-10
      • 2013-09-12
      • 2012-06-03
      • 1970-01-01
      • 1970-01-01
      • 2023-03-31
      相关资源
      最近更新 更多