Advertisement
Guest User

Untitled

a guest
Jul 5th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1.  
  2.  
  3. config.yml.liquid
  4.  
  5. ```
  6. {% include 'query' %}
  7.  
  8. {% include 'conn' %}
  9.  
  10. out: {type: stdout}
  11. ```
  12.  
  13. _conn.yml.liquid
  14.  
  15. ```yaml
  16. in:
  17. type: postgresql
  18. host: 127.0.0.1
  19. user: user
  20. password: password
  21. database: embulk_test
  22. query: *test
  23. ```
  24.  
  25. _query.yml.liquid
  26.  
  27. ```yaml
  28. query: &test "select * from auto_inc_test"
  29. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement