rivet-cli 0.2.0-beta.2

CLI tool to export PostgreSQL and MySQL to Parquet/CSV (local, S3, GCS) with tuning, preflight checks, and SQLite-backed state.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
source:
  type: mysql
  url: "mysql://rivet_partial:partial@localhost:3306/rivet"
exports:
  - name: test_mysql_users_ok
    query: "SELECT id, name, email FROM users LIMIT 5"
    format: csv
    destination:
      type: local
      path: ./dev/output/perms

  - name: test_mysql_orders_denied
    query: "SELECT id, user_id, product FROM orders LIMIT 5"
    format: csv
    destination:
      type: local
      path: ./dev/output/perms