How to sync a mysql database to external data source

前端 未结 1 1476
时光说笑
时光说笑 2020-12-07 05:55

I have a mysql database table called search that I need to keep up to data with an ElasticSearch index. I have already exported the table from the table to the

相关标签:
1条回答
  • 2020-12-07 06:37

    I would leverage Logstash with a jdbc input plugin and an elasticsearch output plugin. There's a blog article showing a full example of this solution.

    After installing Logstash, you can create a configuration file with the plugins I mentioned above like this:

    input {
        jdbc {
            jdbc_connection_string => "jdbc:mysql://localhost:3306/mydb"
            jdbc_user => "user"
            jdbc_password => "1234"
            jdbc_validate_connection => true
            jdbc_driver_library => "mysql-connector-java-5.1.36-bin.jar"
            jdbc_driver_class => "com.mysql.jdbc.Driver"
            schedule => "5m"
            statement => "SELECT * FROM search WHERE timestamp > :sql_last_value"
        }
    }
    output {
        elasticsearch {
            protocol => http
            index => "searches"
            document_type => "search"
            document_id => "%{uid}"
            host => "ES_NODE_HOST"
        }
    }
    

    You need to make sure to change a few values to match your environment, but this should work out without a problem for what you need to do.

    Every 5 minutes the query will run and will fetch all search records whose timestamp (change that name to match your data) is more recent than the last time the query ran. The selected records will be sinked in the searches index located in your Elasticsearch server on ES_NODE_HOST. Make sure to change the index and type name accordingly, as well as the name of the primary key field (i.e. uid) to match your data as well.

    0 讨论(0)
提交回复
热议问题