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
source:
  type: postgres
  url: "postgresql://rivet:rivet@localhost:5432/rivet"
  tuning:
    profile: safe

exports:
  - name: content_items_full
    query: >
      SELECT id, title, body, raw_html, metadata::text as metadata,
             tags, author_name, author_email, source_url, category,
             status, priority, view_count, comment_count, word_count,
             language, published_at, updated_at, created_at,
             extra_data::text as extra_data
      FROM content_items
    mode: full
    format: parquet
    destination:
      type: local
      path: ./dev/output