cleanup psql fork for push

This commit is contained in:
Sachin Kamath
2025-05-06 21:18:35 +05:30
parent 0ce3077c23
commit 4576331a5f
7 changed files with 57 additions and 8 deletions
Generated
+30
View File
@@ -7061,12 +7061,42 @@ name = "nyxd-scraper"
version = "0.1.0"
dependencies = [
"async-trait",
"base64 0.22.1",
"chrono",
"const_format",
"cosmrs 0.17.0-pre",
"eyre",
"futures",
"humantime 2.1.0",
"serde",
"serde_json",
"sha2 0.10.8",
"sqlx",
"tendermint 0.37.0",
"tendermint-rpc",
"thiserror",
"time",
"tokio",
"tokio-stream",
"tokio-util",
"tracing",
"url",
]
[[package]]
name = "nyxd-scraper-psql"
version = "0.1.0"
dependencies = [
"async-trait",
"base64 0.22.1",
"chrono",
"const_format",
"cosmrs 0.17.0-pre",
"eyre",
"futures",
"humantime 2.1.0",
"serde",
"serde_json",
"sha2 0.10.8",
"sqlx",
"tendermint 0.37.0",
+1
View File
@@ -79,6 +79,7 @@ members = [
"common/nymsphinx/routing",
"common/nymsphinx/types",
"common/nyxd-scraper",
"common/nyxd-scraper-psql",
"common/pemstore",
"common/serde-helpers",
"common/service-provider-requests-common",
+1 -1
View File
@@ -1,5 +1,5 @@
[package]
name = "nyxd-scraper"
name = "nyxd-scraper-psql"
version = "0.1.0"
authors.workspace = true
repository.workspace = true
+7
View File
@@ -0,0 +1,7 @@
FROM postgres:latest
ENV POSTGRES_USER=nym
ENV POSTGRES_PASSWORD=password123
ENV POSTGRES_DB=nyxd_scraper
EXPOSE 5432
Submodule common/nyxd-scraper-psql/callisto deleted from 868bbd5cbb
@@ -0,0 +1,15 @@
version: '3.8'
services:
postgres:
image: postgres:latest
environment:
POSTGRES_USER: nym
POSTGRES_PASSWORD: password123
POSTGRES_DB: nyxd_scraper
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data:
@@ -549,12 +549,9 @@ where
trace!("prune_transactions");
let start = Instant::now();
sqlx::query!(
"DELETE FROM transaction WHERE height < $1",
oldest_to_keep
)
.execute(executor)
.await?;
sqlx::query!("DELETE FROM transaction WHERE height < $1", oldest_to_keep)
.execute(executor)
.await?;
log_db_operation_time("prune_transactions", start);
Ok(())