demo测试数据

来源:4-2 logstash全量、增量同步解决方案

jackandrose6

2019-11-13 17:46

老师,能提供logstash的mysql.cnf和mysql里的测试数据吗?

写回答 关注

3回答

  • qq_空白_188
    2019-11-28 22:42:40

    我的数据库数据没进来

    _小北

    看你的控制台日志,绝对报错啦

    2019-12-18 10:05:57

    共 1 条回复 >

  • admxj
    2019-11-19 02:01:11

    input{

        jdbc{

            jdbc_driver_library => "/Volumes/Data/logstash-6.3.2/mysql-connector-java-5.1.37.jar"

            jdbc_driver_class => "com.mysql.jdbc.Driver"

            jdbc_connection_string => "jdbc:mysql://127.0.0.1:3306/blog"

            jdbc_user => "root"

            jdbc_password => "123456"

            schedule => "* * * * *"

            clean_run => true

            statement => "select * FROM t_blog WHERE update_time > :sql_last_value AND update_time < NOW() ORDER BY update_time desc"

        }

    }


    output {

        elasticsearch{

            hosts => ["127.0.0.1:9200"]

            index => "blog"

            document_id => "%{id}"

        }

    }


  • admxj
    2019-11-19 02:00:23
    input{    jdbc{        jdbc_driver_library => "/Volumes/Data/logstash-6.3.2/mysql-connector-java-5.1.37.jar"        jdbc_driver_class => "com.mysql.jdbc.Driver"        jdbc_connection_string => "jdbc:mysql://127.0.0.1:3306/blog"        jdbc_user => "root"        jdbc_password => "123456"        schedule => "* * * * *"        clean_run => true        statement => "select * FROM t_blog WHERE update_time > :sql_last_value AND update_time < NOW() ORDER BY update_time desc"    }}output {    elasticsearch{        hosts => ["127.0.0.1:9200"]        index => "blog"        document_id => "%{id}"    }}


Springboot + ElasticSearch 构建博客检索系统

Springboot + ElasticSearch 构建个人博客检索系统

22917 学习 · 112 问题

查看课程

相似问题