I cannot figure out how to use this plugin at all.
I am running this curl
:
curl -XPUT 'localhost:9200/_river/faycare_kids/_meta' -d '{
"jdbc":{
"driver" : "org.postgresql.Driver",
"url" : "jdbc:postgresql://localhost:5432/faycare",
"user" : "faycare",
"password" : "password",
"strategy" : "simple",
"poll" : "5s",
"scale" : 0,
"autocommit" : true,
"fetchsize" : 10,
"index" : "faycare",
"type" : "kid",
"max_rows" : 0,
"max_retries" : 3,
"max_retries_wait" : "10s",
"sql" : "SELECT kid.id as _id,kid.first_name,kid.last_name FROM kid;"
}
}'
It returns:
{"ok":true,"_index":"_river","_type":"faycare_kids","_id":"_meta","_version":1}
How do I search/fetch/see my data?
How do I know if anything is indexed?
I tried so many things:
curl -XGET 'localhost:9200/_river/faycare_kids/_search?pretty&q=*'
This gives me info about the _river
curl -XGET 'localhost:9200/faycare/kid/_search?pretty&q=*'
This tells me: "error" : "IndexMissingException[[faycare] missing]"
I am running sudo service elasticsearch start
to run it in the background.
The problem is in the way you setting up your river. You specifying and index and type where the river should bulk indexing records in the wrong place.
The proper way of doing this would be this: