- POST /ingest/postgres/tables — list all tables in a database - POST /ingest/postgres/import — import table → Parquet → catalog → queryable - Auto type mapping: int2/4/8 → Int, float4/8 → Float64, bool → Boolean, text/varchar/jsonb/timestamp → Utf8 (safe default per ADR-010) - Auto PII detection + lineage on import - Empty password support for trust auth - Tested: imported lab_trials (40 rows, 10 cols) and threat_intel (20 rows, 30 cols) from local knowledge_base Postgres database — immediately queryable Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
636 B
TOML
24 lines
636 B
TOML
[package]
|
|
name = "ingestd"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
shared = { path = "../shared" }
|
|
storaged = { path = "../storaged" }
|
|
catalogd = { path = "../catalogd" }
|
|
tokio = { workspace = true }
|
|
axum = { workspace = true, features = ["multipart"] }
|
|
lopdf = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tracing = { workspace = true }
|
|
arrow = { workspace = true }
|
|
parquet = { workspace = true }
|
|
bytes = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
csv = { workspace = true }
|
|
chrono = { workspace = true }
|
|
object_store = { workspace = true }
|
|
tokio-postgres = { workspace = true }
|