1

我刚刚开始使用elastic search 5.5.2. 我正在使用logstash-jdbc-input插件将数据从mysql数据库推送到elastic search. 这是我正在使用的logstash配置

input {
    jdbc {
        jdbc_connection_string => "jdbc:mysql://localhost:3306/news"
        jdbc_user => "root"
        jdbc_password => "sunilgarg"
        jdbc_validate_connection => true
        jdbc_driver_library => "../jars/mysql-connector-java-5.1.21.jar"
        jdbc_driver_class => "com.mysql.jdbc.Driver"
        statement => "SELECT * from news"
    }
}
output {
    stdout {codec => json_lines}
    elasticsearch {
        "index" => "news"
        "document_type" => "news"
        "hosts" => "localhost:9200"
        "document_id" => "%{id}"
    }
}

现在我可以使用http://localhost:9200/news/_search和以下正文进行搜索

{
   "query":{
      "query_string":{
         "query":"the"
      }
   }
}

现在这是搜索甚至我不想要的停用词,所以我尝试使用这个 POST 请求http://localhost:9200/news和请求正文来分析器

{
  "settings": {
    "analysis": {
      "analyzer": {
        "my_english_analyzer": {
          "type": "standard",
          "max_token_length": 5,
          "stopwords": "_english_"
        }
      }
    }
  }
}

但这显示

No handler found for uri [/news] and method [POST]

我错过了什么吗?或者我以错误的方式得到这个?

如果问得太基本,请忽略。

4

1 回答 1

0

可能您想创建一个带有设置的索引,在这种情况下您想使用

PUT indexname
{
  // settings, mappings...
}
于 2017-10-12T18:33:15.080 回答