From 4675ab65ea5e807e0d457845a0ca84edcf1262c9 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 2 May 2026 18:58:21 +0100 Subject: Ingest log lines in a background thread This prevents halting reading input during data insertion. --- src/ingestor.hpp | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) (limited to 'src/ingestor.hpp') diff --git a/src/ingestor.hpp b/src/ingestor.hpp index d989ecd..64b3357 100644 --- a/src/ingestor.hpp +++ b/src/ingestor.hpp @@ -41,6 +41,19 @@ namespace WebStat { public: using LineBatch = std::vector; using LinesView = std::span; + + struct Job { + using LastRunTime = std::chrono::system_clock::time_point; + using Result = std::function; + using Impl = Result (Ingestor::*)(); + + explicit Job(Impl jobImpl) : impl(jobImpl) { } + + const Impl impl; + LastRunTime lastRun {LastRunTime::clock::now()}; + std::optional> currentRun; + }; + Ingestor(const utsname &, IngestorSettings); Ingestor(const utsname &, DB::ConnectionPoolPtr, IngestorSettings); @@ -55,25 +68,14 @@ namespace WebStat { [[nodiscard]] static ScanResult scanLogLine(std::string_view); void ingestLog(std::FILE *); - void tryIngestQueuedLogLines(); + std::pair &, bool> beginIngestQueuedLogLines(); void ingestLogLines(DB::Connection *, LinesView lines); - std::expected parkQueuedLogLines(); + std::expected parkLogLines(LineBatch &); void runJobsAsNeeded(); - struct Job { - using LastRunTime = std::chrono::system_clock::time_point; - using Result = std::function; - using Impl = Result (Ingestor::*)(); - - explicit Job(Impl jobImpl) : impl(jobImpl) { } - - const Impl impl; - LastRunTime lastRun {LastRunTime::clock::now()}; - std::optional> currentRun; - }; - Job::Result jobReadParkedLines(); Job::Result jobPurgeOldLogs(); + Job::Result jobStoreQueuedLines(); template void storeLogLine(DB::Connection *, const std::tuple &) const; @@ -89,18 +91,21 @@ namespace WebStat { }; protected: + void finishAllJobs(); + static Ingestor * currentIngestor; DB::ConnectionPoolPtr dbpool; mutable Stats stats {}; std::flat_map existingEntities; - LineBatch queuedLines; + LineBatch queuedLines, processingLines; bool terminated = false; Job::LastRunTime lastCheckedJobs {Job::LastRunTime::clock::now()}; Job ingestParkedLines; Job purgeOldLogs; + Job storeQueueLines; private: template static std::vector entities(std::tuple &); @@ -112,7 +117,6 @@ namespace WebStat { void logStats() const; void clearStats(); void finalizeJob(Job &, minutes freq, Job::LastRunTime::clock::time_point now); - void finishAllJobs(); LineBatch jobReadParkedLines(const std::filesystem::path &); LineBatch jobReadParkedLines(FILE *, size_t count); -- cgit v1.3