Elasticsearch jdbc sort by _id

268 Views Asked by At

I want to make my results sortable by _id so I need to add

"_id" : {
    "index" : "not_analyzed",
    "store" : true
}

to my index, correct?
here is my script for jdbc feeder:

#!/bin/bash
#Verzeichnis von JDBC -> wichtig, anpassen!
export JDBC_IMPORTER_HOME=~/Downloads/elasticsearch-jdbc-1.6.0.0

bin=$JDBC_IMPORTER_HOME/bin
lib=$JDBC_IMPORTER_HOME/lib
echo '{
    "type" : "jdbc",
    "jdbc" : {
        "url" : "jdbc:mysql://xxxxxxxxx",
        "user" : "xxxx",
        "password" : "xxxxxxx",
        "index" : "xxxxxxxx",
        "type" : "xxxxxx",
        "sql" : "SELECT xxxxxxxxx"
    }
}' | java \
       -cp "${lib}/*" \
       -Dlog4j.configurationFile=${bin}/log4j2.xml \
       org.xbib.tools.Runner \
       org.xbib.tools.JDBCImporter

I added

"index_settings" : {
        "_id" : {
            "index" : "not_analyzed",
            "store" : true
        }
    }

after

"password" : "xxxxxxx",
"index" : "xxxxxxxx",

but it doesn't work
where do I add this setting?

0

There are 0 best solutions below