1

私はelasticsearchを学び、それをMySQLデータベースに接続しようとしています. Elasticsearch を単独で使用すると、すべて正常に動作しますが、データベースからデータを取得しようとすると、何らかの理由で動作しないようです。私はelasticsearchとjdbcを使用したリバーの初心者なので、これ以上に定義された問題を説明することはできません。

川を作成するために、次のコマンドを使用しました。

curl -XPUT 'localhost:9200/customertest/customer/_meta' -d '{
    "type" : "jdbc",
    "jdbc" : {
        "url" : "jdbc:mysql://localhost:3306/database",
        "user" : "root",
        "password" : "root",
        "sql" : "select * from customers"
    }
}'

実行時:

curl -XGET 'localhost:9200/customertest/_search?pretty&q=*'

次の答えが得られます。

{
  "took" : 2,
  "timed_out" : false,
  "_shards" : {
    "total" : 5,
    "successful" : 5,
    "failed" : 0
  },
  "hits" : {
    "total" : 1,
    "max_score" : 1.0,
    "hits" : [ {
      "_index" : "customertest",
      "_type" : "customer",
      "_id" : "_meta",
      "_score" : 1.0,
      "_source":{
    "type" : "jdbc",
    "jdbc" : {
        "url" : "jdbc:mysql://localhost:3306/database",
        "user" : "root",
        "password" : "root",
        "sql" : "select * from customers"
    }
}
    } ]
  }
}

何か案が?

4

2 に答える 2

0

私が実行した場合、それは何かをしました:

localhost:9200/jdbc/_search

何も得られませんが、実行した場合:

localhost:9200/_river/customer/_search

私は得る:

{
"took": 1,
"timed_out": false,
"_shards": {
    "total": 1,
    "successful": 1,
    "failed": 0
},
"hits": {
    "total": 2,
    "max_score": 1,
    "hits": [
        {
            "_index": "_river",
            "_type": "customer",
            "_id": "_meta",
            "_score": 1,
            "_source": {
                "type": "jdbc",
                "jdbc": {
                    "url": "jdbc:mysql://localhost:3306/verendus",
                    "user": "root",
                    "password": "root",
                    "sql": "select * from customers"
                }
            }
        },
        {
            "_index": "_river",
            "_type": "customer",
            "_id": "_status",
            "_score": 1,
            "_source": {
                "error": "CreationException[Guice creation errors:\n\n1) Error injecting constructor, java.lang.NoSuchMethodError: org.xbib.elasticsearch.river.jdbc.RiverSource.url(Ljava/lang/String;)Lorg/xbib/elasticsearch/river/jdbc/RiverSource;\n  at org.xbib.elasticsearch.river.jdbc.JDBCRiver.<init>(Unknown Source)\n  while locating org.xbib.elasticsearch.river.jdbc.JDBCRiver\n  while locating org.elasticsearch.river.River\n\n1 error]; nested: NoSuchMethodError[org.xbib.elasticsearch.river.jdbc.RiverSource.url(Ljava/lang/String;)Lorg/xbib/elasticsearch/river/jdbc/RiverSource;]; ",
                "node": {
                    "id": "kMJkU2bvSZuSkbj86u6ziA",
                    "name": "Black Dragon",
                    "transport_address": "inet[/127.0.0.1:9300]"
                }
            }
        }
    ]
}

}

于 2014-12-25T16:10:33.147 に答える