Compare commits

5 Commits

Author SHA1 Message Date
4989a59ddf checkpoint 2025-07-10 18:46:25 -06:00
6fc71c7a78 add speed improvements 2025-03-21 12:14:29 -06:00
96a3ca092a :) 2025-03-21 12:11:05 -06:00
b750d88d48 working filesystem storage 2025-03-21 11:42:43 -06:00
808790a7c3 file patch; 2025-03-21 07:11:51 +00:00
9 changed files with 152 additions and 2354 deletions

2287
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -11,8 +11,8 @@ metrics-exporter-prometheus = { version = "0.16.2", features=["http-listener"]}
# minio = "0.1.0" # minio = "0.1.0"
minio = {git="https://github.com/minio/minio-rs.git", rev = "c28f576"} minio = {git="https://github.com/minio/minio-rs.git", rev = "c28f576"}
reqwest = { version = "0.12", features = ["gzip", "default", "rustls-tls"] } reqwest = { version = "0.12", features = ["gzip", "default", "rustls-tls"] }
rusqlite = { version = "0.34.0", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
surrealdb = "2.2"
tokio = { version="1.41.0", features = ["full"] } tokio = { version="1.41.0", features = ["full"] }
toml = "0.8.20" toml = "0.8.20"
tracing = "0.1" tracing = "0.1"

View File

@@ -3,7 +3,7 @@ surreal_url = "localhost:8000"
surreal_username = "root" surreal_username = "root"
surreal_password = "root" surreal_password = "root"
surreal_ns = "test" surreal_ns = "test"
surreal_db = "v1.18.1" surreal_db = "v1.19.2"
# Crawler config # Crawler config
crawl_filter = "en.wikipedia.com" crawl_filter = "en.wikipedia.com"

View File

@@ -17,6 +17,8 @@ This ment we stored 1000 pages, 142,997 urls, and 1,425,798 links between the tw
3/20/25: Took 5min to crawl 1000 pages 3/20/25: Took 5min to crawl 1000 pages
3/21/25: Took 3min to crawl 1000 pages
# About # About
![Screenshot](/pngs/graphana.png) ![Screenshot](/pngs/graphana.png)

View File

@@ -14,22 +14,6 @@ services:
- --pass - --pass
- root - root
- rocksdb:/mydata/database.db - rocksdb:/mydata/database.db
minio:
image: quay.io/minio/minio
ports:
- 9000:9000
- 9001:9001
environment:
- MINIO_ROOT_USER=root
- MINIO_ROOT_PASSWORD=an8charpassword
- MINIO_PROMETHEUS_AUTH_TYPE=public
volumes:
- minio_storage:/data
command:
- server
- /data
- --console-address
- ":9001"
alloy: alloy:
image: grafana/alloy:latest image: grafana/alloy:latest

View File

@@ -7,15 +7,11 @@ scrape_configs:
static_configs: static_configs:
# change this your machine's ip, localhost won't work # change this your machine's ip, localhost won't work
# because localhost refers to the docker container. # because localhost refers to the docker container.
# - targets: ['172.20.239.48:2500'] - targets: ['172.20.239.48:2500']
- targets: ['192.168.8.209:2500'] #- targets: ['192.168.8.209:2500']
- job_name: loki - job_name: loki
static_configs: static_configs:
- targets: ['loki:3100'] - targets: ['loki:3100']
- job_name: prometheus - job_name: prometheus
static_configs: static_configs:
- targets: ['localhost:9090'] - targets: ['localhost:9090']
- job_name: minio
metrics_path: /minio/v2/metrics/cluster
static_configs:
- targets: ['minio:9000']

View File

@@ -1,21 +1,12 @@
use metrics::counter; use metrics::counter;
use rusqlite::Connection;
use std::fmt::Debug;
use serde::{Deserialize, Serialize}; use serde::{Deserialize, Serialize};
use std::{fmt::Debug, sync::LazyLock, time::Instant};
use surrealdb::{
engine::remote::ws::{Client, Ws},
opt::auth::Root,
sql::Thing,
Surreal,
};
use tokio::sync::Mutex;
use tracing::{error, instrument, trace}; use tracing::{error, instrument, trace};
use url::Url; use url::Url;
use crate::Config; use crate::Config;
static LOCK: LazyLock<Mutex<bool>> = LazyLock::new(|| Mutex::new(true));
const TIME_SPENT_ON_LOCK: &str = "surql_lock_waiting_ms";
const STORE: &str = "surql_store_calls"; const STORE: &str = "surql_store_calls";
#[derive(Serialize, Deserialize, Clone, Eq, PartialEq, Hash)] #[derive(Serialize, Deserialize, Clone, Eq, PartialEq, Hash)]
@@ -53,17 +44,15 @@ impl Website {
// Insert ever item in the vec into surreal, crawled state will be preserved as TRUE // Insert ever item in the vec into surreal, crawled state will be preserved as TRUE
// if already in the database as such or incoming data is TRUE. // if already in the database as such or incoming data is TRUE.
pub async fn store_all(all: Vec<Self>, db: &Surreal<Client>) -> Vec<Thing> { pub async fn store_all(all: Vec<Self>, db: &Connection) {
counter!(STORE).increment(1); counter!(STORE).increment(1);
let mut things = Vec::with_capacity(all.len()); let mut things = Vec::with_capacity(all.len());
// TODO this only allows for one thread to be in the database at a time. rusqlite::ParamsFromIter;
// This is currently required since otherwise we get write errors.
// If the default `crawled` is set to false, we might not need to write any more db.execute("",
// than just the name. `accessed_at` is fun but not needed. params![]
let now = Instant::now(); );
let lock = LOCK.lock().await;
counter!(TIME_SPENT_ON_LOCK).increment(now.elapsed().as_millis() as u64);
match db match db
.query( .query(
@@ -85,7 +74,6 @@ impl Website {
error!("{:?}", err); error!("{:?}", err);
} }
} }
drop(lock);
things things
} }
} }
@@ -102,32 +90,10 @@ pub struct Record {
pub id: Thing, pub id: Thing,
} }
#[instrument(skip_all, name = "SurrealDB")] #[instrument(skip_all, name = "sqlite_connect")]
pub async fn connect(config: &Config) -> surrealdb::Result<Surreal<Client>> { pub async fn connect(config: &Config) -> Result<Connection, rusqlite::Error> {
trace!("Establishing connection to surreal..."); trace!("Establishing connection to sqlite...");
// Connect to the server // Connect to the server
let db = Surreal::new::<Ws>(&config.surreal_url).await?; Connection::open("./squeelite.db")
trace!("Logging in...");
// Signin as a namespace, database, or root user
db.signin(Root {
username: &config.surreal_username,
password: &config.surreal_password,
})
.await?;
// Select a specific namespace / database
db.use_ns(&config.surreal_ns)
.use_db(&config.surreal_db)
.await?;
let setup = include_bytes!("setup.surql");
let file = setup.iter().map(|c| *c as char).collect::<String>();
db.query(file)
.await
.expect("Failed to setup surreal tables.");
Ok(db)
} }

View File

@@ -1,7 +1,7 @@
use std::path::PathBuf; use std::{ffi::OsStr, path::PathBuf};
use tokio::fs; use tokio::fs;
use tracing::{error, instrument, trace}; use tracing::{debug, error, instrument, trace, warn};
use url::Url; use url::Url;
#[instrument(skip(data))] #[instrument(skip(data))]
@@ -10,7 +10,7 @@ pub async fn store(data: &str, url: &Url) {
let url_path = PathBuf::from("./downloaded/".to_string() + url.domain().unwrap_or("UnknownDomain") + url.path()); let url_path = PathBuf::from("./downloaded/".to_string() + url.domain().unwrap_or("UnknownDomain") + url.path());
// if it's a file // if it's a file
let (basepath, filename) = if url_path.extension().is_some() { let (basepath, filename) = if url_path.extension().filter(valid_file_extension).is_some() {
// get everything up till the file // get everything up till the file
let basepath = url_path.ancestors().skip(1).take(1).collect::<PathBuf>(); let basepath = url_path.ancestors().skip(1).take(1).collect::<PathBuf>();
// get the file name // get the file name
@@ -21,6 +21,8 @@ pub async fn store(data: &str, url: &Url) {
(url_path.clone(), "index.html".into()) (url_path.clone(), "index.html".into())
}; };
debug!("Writing at: {:?} {:?}", basepath, filename);
// create the folders // create the folders
if let Err(err) = fs::create_dir_all(&basepath).await { if let Err(err) = fs::create_dir_all(&basepath).await {
error!("Dir creation: {err} {:?}", basepath); error!("Dir creation: {err} {:?}", basepath);
@@ -33,3 +35,36 @@ pub async fn store(data: &str, url: &Url) {
} }
} }
} }
fn valid_file_extension(take: &&OsStr) -> bool {
let los = take.to_string_lossy();
let all = los.split('.');
match all.last() {
Some(s) => {
match s.to_lowercase().as_str() {
"html" => true,
"css" => true,
"js" => true,
"ts" => true,
"otf" => true, // font
"png" => true,
"svg" => true,
"jpg" => true,
"jpeg" => true,
"mp4" => true,
"mp3" => true,
"webp" => true,
"pdf" => true,
"json" => true,
"xml" => true,
_ => {
warn!("Might be forgetting a file extension: {s}");
false
}
}
},
None => false,
}
}

View File

@@ -19,8 +19,7 @@ impl TokenSink for Website {
TagToken(tag) => { TagToken(tag) => {
if tag.kind == StartTag { if tag.kind == StartTag {
match tag.name { match tag.name {
// this should be all the html // this should be all the html elements that have links
// elements that have links
local_name!("a") local_name!("a")
| local_name!("audio") | local_name!("audio")
| local_name!("area") | local_name!("area")
@@ -35,37 +34,9 @@ impl TokenSink for Website {
let attr_name = attr.name.local.to_string(); let attr_name = attr.name.local.to_string();
if attr_name == "src" || attr_name == "href" || attr_name == "data" if attr_name == "src" || attr_name == "href" || attr_name == "data"
{ {
let url: Option<Url> = match Url::parse(&attr.value) { trace!("Found `{}` in html `{}` tag", &attr.value, tag.name);
Ok(ok) => { let url = try_get_url(&self.site, &attr.value);
trace!("Found `{}` in the html on `{}` tag", ok.to_string(), tag.name);
Some(ok)
},
Err(e) => {
if attr.value.starts_with('#') {
trace!("Rejecting # url");
None
} else {
match e {
url::ParseError::RelativeUrlWithoutBase => {
let origin = self.site.origin().ascii_serialization();
let url = origin.clone() + &attr.value;
trace!("Built `{url}` from `{origin} + {}`", &attr.value.to_string());
if let Ok(url) = Url::parse(&url) {
trace!("Saved relative url `{}` AS: `{}`", &attr.value, url);
Some(url)
} else {
error!("Failed to reconstruct a url from relative url: `{}` on site: `{}`", &attr.value, self.site.to_string());
None
}
},
_ => {
error!("MISC error: {:?} {:?}", e, &attr.value);
None
},
}
}
},
};
if let Some(mut parsed) = url { if let Some(mut parsed) = url {
parsed.set_query(None); parsed.set_query(None);
parsed.set_fragment(None); parsed.set_fragment(None);
@@ -119,3 +90,56 @@ pub async fn parse(site: &Website, data: &str) -> Vec<Website> {
other_sites other_sites
} }
#[instrument]
fn try_get_url(parent: &Url, link: &str) -> Option<Url> {
match Url::parse(link) {
Ok(ok) => Some(ok),
Err(e) => {
if link.starts_with('#') {
trace!("Rejecting # url");
None
} else if link.starts_with("//") {
// if a url starts with "//" is assumed that it will adopt
// the same scheme as it's parent
// https://stackoverflow.com/questions/9646407/two-forward-slashes-in-a-url-src-href-attribute
let scheme = parent.scheme();
match Url::parse(&format!("{scheme}://{}", link)) {
Ok(url) => Some(url),
Err(err) => {
error!("Failed parsing realative scheme url: {}", err);
None
}
}
} else {
// # This is some sort of realative url, gonna try patching it up into an absolute
// url
match e {
url::ParseError::RelativeUrlWithoutBase => {
// Is: scheme://host:port
let origin = parent.origin().ascii_serialization();
let url = origin.clone() + link;
trace!("Built `{url}` from `{origin} + {}`", link.to_string());
if let Ok(url) = Url::parse(&url) {
trace!("Saved relative url `{}` AS: `{}`", link, url);
Some(url)
} else {
error!(
"Failed to reconstruct a url from relative url: `{}` on site: `{}`",
link,
parent.to_string()
);
None
}
}
_ => {
error!("MISC error: {:?} {:?}", e, link);
None
}
}
}
}
}
}