Guest User

Untitled

a guest
Apr 14th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. input {
  2. jdbc {
  3. jdbc_driver_library => "/usr/share/mysql-connector-java-5.1.46-bin.jar"
  4. jdbc_driver_class => "com.mysql.jdbc.Driver"
  5. jdbc_connection_string => "jdbc:mysql://mysql:3306/books"
  6. jdbc_user => "root"
  7. jdbc_password=>"1"
  8. schedule => "* * * * *"
  9. statement => "SELECT * FROM book"
  10. }
  11. }
  12.  
  13. statement => "SELECT * FROM book"
  14.  
  15. jdbc {
  16. statement => "SELECT id, mycolumn1, mycolumn2 FROM my_table WHERE id > :sql_last_value"
  17. use_column_value => true
  18. tracking_column => "id"
  19. # ... other configuration bits
  20. }
Add Comment
Please, Sign In to add comment