-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.rs
More file actions
410 lines (386 loc) · 14 KB
/
Copy pathmain.rs
File metadata and controls
410 lines (386 loc) · 14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
use std::collections::HashMap;
use clap::{Parser, Subcommand};
use puffgres_cli::{CliError, EnvConfig, ProjectConfig, ProjectPaths};
#[derive(Parser)]
#[command(name = "puffgres", version)]
#[command(about = "Replicate Postgres to Turbopuffer")]
struct Cli {
#[command(subcommand)]
command: Command,
}
#[derive(Subcommand)]
enum Command {
/// Initialize a puffgres project
Init,
/// Create a new table config (interactive, or non-interactive with flags)
New {
/// Config name. Also the default for the table and namespace.
#[arg(long)]
name: Option<String>,
/// Postgres table to replicate (defaults to the config name)
#[arg(long)]
table: Option<String>,
/// Destination turbopuffer namespace (defaults to the config name)
#[arg(long)]
namespace: Option<String>,
/// Column to use as the document id (defaults to "id")
#[arg(long)]
id_column: Option<String>,
/// Embedding provider: none, zeroentropy, baseten, cloudflare
#[arg(long)]
provider: Option<String>,
/// Column to embed in the generated transform
#[arg(long)]
embed_column: Option<String>,
/// Build the config from flags without prompting (for scripts and agents)
#[arg(long)]
non_interactive: bool,
},
/// Validate configs against the live database (regenerates schema.ts)
Check {
/// Optional config name to check (defaults to all configs)
#[arg(long)]
name: Option<String>,
},
/// Apply pending config changes
Apply,
/// Start the replication pipeline
Run,
/// Tombstone a config (exclude from CDC, backfill, and DLQ replay).
/// Prompts you to pick one when --name is omitted.
Tombstone {
/// Name of the config to tombstone (defaults to an interactive picker)
#[arg(long)]
name: Option<String>,
},
/// Remove config(s): deletes turbopuffer namespace(s), state, and files
Remove {
/// Name of the config to remove
#[arg(long)]
name: Option<String>,
/// Remove the most recently applied config
#[arg(long)]
last: bool,
/// Remove every applied config (full reset)
#[arg(long)]
all: bool,
/// Skip the confirmation prompt (only meaningful with --all)
#[arg(long)]
force: bool,
},
/// Reset everything: drop the replication slot(s), publication, and state
/// schema, then delete the project directory (leaves turbopuffer untouched)
Reset {
/// Skip the confirmation prompt
#[arg(long)]
force: bool,
},
/// Generate typed schema.ts files for each config
Generate,
/// Launch a light UI to see the contents of turbopuffer namespaces
Debug {
/// Port to serve on
#[arg(long, default_value = "3333")]
port: u16,
/// Replication slot name (defaults to puffgres_debug)
#[arg(long, default_value = "puffgres_debug")]
slot: String,
/// Publication name (defaults to puffgres)
#[arg(long, default_value = "puffgres")]
publication: String,
},
}
#[tokio::main]
async fn main() {
let (result, telemetry) = run().await;
if let Some(t) = telemetry {
t.shutdown();
}
if let Err(e) = result {
eprintln!("Error: {e}");
std::process::exit(1);
}
}
async fn run() -> (
Result<(), CliError>,
Option<puffgres_cli::observability::Telemetry>,
) {
let cli = Cli::parse();
// Tier 1: no env needed
if let Command::Init = cli.command {
return (puffgres_cli::init::run(), None);
}
// Tier 2: ProjectPaths only. We additionally try (best-effort) to resolve
// DATABASE_URL so `new` can auto-detect the id type; failure is fine.
if let Command::New {
ref name,
ref table,
ref namespace,
ref id_column,
ref provider,
ref embed_column,
non_interactive,
} = cli.command
{
let paths = match ProjectPaths::from_current_dir() {
Ok(p) => p,
Err(e) => return (Err(e), None),
};
let database_url = ProjectConfig::load_unvalidated(&paths.project_config)
.ok()
.and_then(|pc| {
let env_paths = pc.resolve_env_paths(&paths.root);
puffgres_cli::env::resolve_database_url(&env_paths).ok()
});
let args = puffgres_cli::new::NewArgs {
name: name.clone(),
table: table.clone(),
namespace: namespace.clone(),
id_column: id_column.clone(),
provider: provider.clone(),
embed_column: embed_column.clone(),
non_interactive,
};
return (
puffgres_cli::new::run(&paths, args, database_url.as_deref()).await,
None,
);
}
puffgres_cli::observability::install_panic_hook();
// All remaining commands need at least ProjectPaths
let paths = match ProjectPaths::from_current_dir() {
Ok(p) => p,
Err(e) => return (Err(e), None),
};
// Tier 3: Generate only needs DATABASE_URL (no state DB).
if let Command::Generate = cli.command {
let project_config = match ProjectConfig::load_unvalidated(&paths.project_config) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
let env_paths = project_config.resolve_env_paths(&paths.root);
let database_url = match puffgres_cli::env::resolve_database_url(&env_paths) {
Ok(u) => u,
Err(e) => return (Err(e), None),
};
return (
puffgres_cli::generate::run_async(&paths, &database_url).await,
None,
);
}
if let Command::Debug {
port,
ref slot,
ref publication,
} = cli.command
{
let project_config = match ProjectConfig::load_unvalidated(&paths.project_config) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
let env_paths = project_config.resolve_env_paths(&paths.root);
let file_vars = match puffgres_cli::env::load_env_files(&env_paths) {
Ok(v) => v,
Err(e) => return (Err(e), None),
};
let api_key = match puffgres_cli::env::resolve_env_var("TURBOPUFFER_API_KEY", &file_vars) {
Some(v) => v,
None => {
return (
Err(puffgres_cli::CliError::MissingEnvVar(
"TURBOPUFFER_API_KEY".into(),
)),
None,
);
}
};
let region = puffgres_cli::env::resolve_env_var("TURBOPUFFER_REGION", &file_vars);
let client = match puff::TurbopufferClient::new(api_key, region) {
Ok(c) => c,
Err(e) => return (Err(CliError::Debug(e.to_string())), None),
};
let database_url = puffgres_cli::env::resolve_env_var("DATABASE_URL", &file_vars);
let replication_config = if let Some(url) = database_url {
match async {
let pg_client = pg::connect::connect(&url)
.await
.map_err(|e| CliError::Debug(format!("Failed to connect to Postgres: {e}")))?;
pg::slot::ensure_slot(&pg_client, slot).await.map_err(|e| {
CliError::Debug(format!("Failed to ensure replication slot: {e}"))
})?;
Ok::<_, CliError>(())
}
.await
{
Ok(()) => {
eprintln!(
"Replication enabled (slot={}, publication={})",
slot, publication
);
Some(replication::ReplicationStreamConfig {
connection_string: url,
slot_name: slot.clone(),
publication_name: publication.clone(),
start_lsn: None,
status_interval: std::time::Duration::from_secs(10),
max_transaction_events: None,
sub_batch_size: None,
watched_columns: HashMap::new(),
})
}
Err(e) => {
eprintln!("Replication disabled: {e}");
None
}
}
} else {
eprintln!("Replication disabled (DATABASE_URL not set)");
None
};
let result = puffgres_debug::run(client, port, replication_config).await;
return (result.map_err(|e| CliError::Debug(e.to_string())), None);
}
// Tier 4: ProjectPaths + database_url + state_schema (no full ProjectConfig validation needed).
// This recovery command only reads environment_files from puffgres.toml so it
// still works when runtime config fields (e.g. batch_size) are invalid.
if let Command::Tombstone { ref name } = cli.command {
let project_config = match ProjectConfig::load_unvalidated(&paths.project_config) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
let env_paths = project_config.resolve_env_paths(&paths.root);
let database_url = match puffgres_cli::env::resolve_database_url(&env_paths) {
Ok(u) => u,
Err(e) => return (Err(e), None),
};
let state_schema = match puffgres_cli::env::resolve_state_schema(&env_paths) {
Ok(s) => s,
Err(e) => return (Err(e), None),
};
return (
puffgres_cli::tombstone::run(&paths, &database_url, &state_schema, name.as_deref())
.await,
None,
);
}
// Reset is a recovery command (like Tombstone): loads env unvalidated so it
// works even when the runtime config or state DB is broken.
if let Command::Reset { force } = cli.command {
let project_config = match ProjectConfig::load_unvalidated(&paths.project_config) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
let env_paths = project_config.resolve_env_paths(&paths.root);
let file_vars = match puffgres_cli::env::load_env_files(&env_paths) {
Ok(v) => v,
Err(e) => return (Err(e), None),
};
let database_url = match puffgres_cli::env::resolve_env_var("DATABASE_URL", &file_vars) {
Some(v) => v,
None => {
return (
Err(puffgres_cli::CliError::MissingEnvVar("DATABASE_URL".into())),
None,
);
}
};
let state_schema = match puffgres_cli::env::resolve_state_schema(&env_paths) {
Ok(s) => s,
Err(e) => return (Err(e), None),
};
return (
puffgres_cli::reset::run(&paths, &database_url, &state_schema, force).await,
None,
);
}
// Tier 5: Check only needs DATABASE_URL + state_schema (no TURBOPUFFER_API_KEY)
if let Command::Check { ref name } = cli.command {
let project_config = match ProjectConfig::load(&paths.project_config) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
let env_paths = project_config.resolve_env_paths(&paths.root);
let file_vars = match puffgres_cli::env::load_env_files(&env_paths) {
Ok(v) => v,
Err(e) => return (Err(e), None),
};
let database_url = match puffgres_cli::env::resolve_env_var("DATABASE_URL", &file_vars) {
Some(v) => v,
None => {
return (
Err(puffgres_cli::CliError::MissingEnvVar("DATABASE_URL".into())),
None,
);
}
};
let state_schema = match puffgres_cli::env::resolve_state_schema(&env_paths) {
Ok(s) => s,
Err(e) => return (Err(e), None),
};
return (
puffgres_cli::check::run_async(
&paths,
&database_url,
&state_schema,
&project_config,
name.as_deref(),
)
.await,
None,
);
}
// Tier 6: full ProjectConfig + EnvConfig (DATABASE_URL, TURBOPUFFER_API_KEY, etc.)
let project_config = match ProjectConfig::load(&paths.project_config) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
let env_paths = project_config.resolve_env_paths(&paths.root);
let env_config = match EnvConfig::load(&env_paths) {
Ok(c) => c,
Err(e) => return (Err(e), None),
};
tracing::info!(
state_schema = %env_config.state_schema,
"state schema resolved"
);
let (telemetry, metrics) = if let Some(endpoint) = &env_config.otel_endpoint {
match puffgres_cli::observability::init(endpoint, env_config.otel_headers.as_deref()) {
Ok((telemetry, metrics)) => (Some(telemetry), Some(metrics)),
Err(e) => return (Err(e), None),
}
} else {
puffgres_cli::observability::init_fmt_only();
(None, None)
};
let result = match cli.command {
Command::Init
| Command::New { .. }
| Command::Tombstone { .. }
| Command::Reset { .. }
| Command::Check { .. }
| Command::Generate
| Command::Debug { .. } => unreachable!(),
Command::Remove {
ref name,
last,
all,
force,
} => {
puffgres_cli::remove::run_async(&paths, &env_config, name.as_deref(), last, all, force)
.await
}
Command::Apply => {
puffgres_cli::apply::run_async(&paths, &env_config, &project_config).await
}
Command::Run => {
puffgres_cli::pipeline::run_async(
&paths,
&env_config,
&project_config,
metrics.as_ref(),
)
.await
}
};
(result, telemetry)
}