Advertisement
Guest User

Untitled

a guest
Dec 21st, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. in:
  2. type: file
  3. path_prefix: ./data/org_
  4. parser:
  5. charset: UTF-8
  6. newline: CRLF
  7. type: csv
  8. delimiter: ','
  9. quote: '"'
  10. escape: '"'
  11. trim_if_not_quoted: false
  12. skip_header_lines: 1
  13. allow_extra_columns: false
  14. allow_optional_columns: false
  15. columns:
  16. - {name: yyyy/mm/dd, type: timestamp, format: '%Y/%m/%d'}
  17. - {name: user, type: string}
  18. - {name: item, type: string}
  19. - {name: cost, type: long}
  20. out:
  21. type: postgresql
  22. default_timezone: Japan
  23. host: localhost
  24. user: postgres
  25. password: postgres
  26. database: postgres
  27. table: sampledata
  28. options: {loglevel: 2}
  29. mode: insert_direct
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement