Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Aaron Po
2026-04-23 13:49:37 -04:00
parent 8f5471d96c
commit 4331865281
3 changed files with 468 additions and 436 deletions

View File

@@ -0,0 +1,34 @@
skinparam shadowing false
skinparam backgroundColor #FCFCF7
skinparam defaultFontName "DM Sans"
skinparam defaultFontColor #14180C
skinparam titleFontName "Volkhov"
skinparam titleFontColor #14180C
skinparam ArrowColor #656F33
skinparam NoteBackgroundColor #DBEEDD
skinparam NoteFontColor #14180C
skinparam NoteBorderColor #4A5837
skinparam SwimlaneBorderColor #4A5837
skinparam SwimlaneBorderThickness 1
skinparam activityStartColor #EBECE3
skinparam activityEndColor #4A5837
skinparam activityStopColor #4A5837
skinparam ActivityBackgroundColor #EBECE3
skinparam ActivityBorderColor #4A5837
skinparam ActivityDiamondBackgroundColor #CBD2B5
skinparam ActivityDiamondBorderColor #4A5837
skinparam packageStyle rectangle
skinparam packageBackgroundColor #F1F3EA
skinparam packageBorderColor #4A5837
skinparam packageFontColor #14180C
skinparam classBackgroundColor #EBECE3
skinparam classBorderColor #4A5837
skinparam classFontColor #14180C
skinparam classAttributeFontColor #3F4724
skinparam classStereotypeFontColor #4A5837
skinparam interfaceBackgroundColor #DBEEDD
skinparam interfaceBorderColor #4A5837
skinparam interfaceFontColor #14180C
skinparam enumBackgroundColor #E4E6D8
skinparam enumBorderColor #4A5837
skinparam enumFontColor #14180C

View File

@@ -1,25 +1,7 @@
@startuml biergarten_activity @startuml biergarten_activity
skinparam defaultFontName "DM Sans" !include ../biergarten-weizen-theme.puml
skinparam defaultFontSize 13 skinparam defaultFontSize 13
skinparam titleFontName "Volkhov"
skinparam titleFontSize 20 skinparam titleFontSize 20
skinparam backgroundColor #FCFCF7
skinparam defaultFontColor #14180C
skinparam titleFontColor #14180C
skinparam ArrowColor #656F33
skinparam activityStartColor #EBECE3
skinparam activityEndColor #4A5837
skinparam activityStopColor #4A5837
skinparam ActivityBackgroundColor #EBECE3
skinparam ActivityBorderColor #4A5837
skinparam ActivityDiamondBackgroundColor #CBD2B5
skinparam ActivityDiamondBorderColor #4A5837
skinparam NoteBackgroundColor #DBEEDD
skinparam NoteFontColor #14180C
skinparam NoteBorderColor #4A5837
skinparam SwimlaneBorderColor #4A5837
skinparam SwimlaneBorderThickness 1
skinparam monochrome reverse
title The Biergarten Data Pipeline — Activity Diagram title The Biergarten Data Pipeline — Activity Diagram
@@ -37,8 +19,8 @@ endif
:Initialize SqliteExportService; :Initialize SqliteExportService;
note right note right
Opens SQLite connection. Opens SQLite connection.
Begins a single transaction (Transactions are now managed
covering all five fixture types. per-phase via batching).
end note end note
:Create BoundedChannel<LogEntry> log_ch; :Create BoundedChannel<LogEntry> log_ch;
@@ -126,12 +108,18 @@ fork again
end note end note
fork again fork again
|SQLite Worker| |SQLite Worker|
:BEGIN TRANSACTION;
while (exp_ch has items?) is (yes) while (exp_ch has items?) is (yes)
:Receive GeneratedUser; :Receive GeneratedUser;
:ProcessUser(user); :ProcessUser(user);
:PipelineLogger::Log(Info, UserGeneration,\n city, user_id, "sqlite"); :PipelineLogger::Log(Info, UserGeneration,\n city, user_id, "sqlite");
:Append -> user_pool_; :Append -> user_pool_;
if (Batch size reached?) then (yes)
:COMMIT & BEGIN;
else (no)
endif
endwhile (no) endwhile (no)
:COMMIT (Final);
end fork end fork
|Orchestrator| |Orchestrator|
@@ -145,23 +133,24 @@ end fork
fork fork
|Orchestrator| |Orchestrator|
:Loop: Send Locations -> loc_ch; :Loop: Sample User from user_pool_
and pair with Location;
:Send BreweryTask(Location, User) -> loc_ch;
:Close loc_ch; :Close loc_ch;
fork again fork again
|LLM Worker| |LLM Worker|
while (loc_ch has items?) is (yes) while (loc_ch has items?) is (yes)
:Receive Location; :Receive BreweryTask(Location, User);
:GetLocationContextFromCache(location); :GetLocationContextFromCache(task.location);
note right note right
Guaranteed cache hit from startup. Guaranteed cache hit from startup.
end note end note
:GenerateBrewery(enriched_city, context)\nvia DataGenerator; :GenerateBrewery(enriched_city, context, task.user)\nvia DataGenerator;
note right note right
KV cache stays warm across all KV cache stays warm.
brewery generations -- system prompt Brewery is linked to the sampled owner_user_id.
does not change within this phase.
end note end note
:PipelineLogger::Log(Info,\n BreweryGeneration,\n city, brewery_id, "llm"); :PipelineLogger::Log(Info,\n BreweryGeneration,\n city, brewery_id, "llm");
:Send GeneratedBrewery -> exp_ch; :Send GeneratedBrewery -> exp_ch;
@@ -169,12 +158,18 @@ fork again
:Close exp_ch; :Close exp_ch;
fork again fork again
|SQLite Worker| |SQLite Worker|
:BEGIN TRANSACTION;
while (exp_ch has items?) is (yes) while (exp_ch has items?) is (yes)
:Receive GeneratedBrewery; :Receive GeneratedBrewery;
:ProcessBrewery(brewery); :ProcessBrewery(brewery);
:PipelineLogger::Log(Info,\n BreweryGeneration,\n city, brewery_id, "sqlite"); :PipelineLogger::Log(Info,\n BreweryGeneration,\n city, brewery_id, "sqlite");
:Append -> brewery_pool_; :Append -> brewery_pool_;
if (Batch size reached?) then (yes)
:COMMIT & BEGIN;
else (no)
endif
endwhile (no) endwhile (no)
:COMMIT (Final);
end fork end fork
|Orchestrator| |Orchestrator|
@@ -218,6 +213,7 @@ fork again
:Close exp_ch; :Close exp_ch;
fork again fork again
|SQLite Worker| |SQLite Worker|
:BEGIN TRANSACTION;
while (exp_ch has items?) is (yes) while (exp_ch has items?) is (yes)
:Receive BeersBundle; :Receive BeersBundle;
while (For each beer in bundle?) is (remaining) while (For each beer in bundle?) is (remaining)
@@ -226,7 +222,12 @@ fork again
:Append -> beer_pool_; :Append -> beer_pool_;
endwhile (done) endwhile (done)
:PipelineLogger::Log(Info,\n BeerGeneration,\n city, brewery_id, "sqlite"); :PipelineLogger::Log(Info,\n BeerGeneration,\n city, brewery_id, "sqlite");
if (Batch size reached?) then (yes)
:COMMIT & BEGIN;
else (no)
endif
endwhile (no) endwhile (no)
:COMMIT (Final);
end fork end fork
|Orchestrator| |Orchestrator|
@@ -247,6 +248,7 @@ note right
emerges from persona distribution. emerges from persona distribution.
end note end note
:BEGIN TRANSACTION;
while (For each GeneratedUser in user_pool_?) is (remaining) while (For each GeneratedUser in user_pool_?) is (remaining)
:CheckinsForUser(user, brewery_pool_.size()); :CheckinsForUser(user, brewery_pool_.size());
while (For each checkin index?) is (remaining) while (For each checkin index?) is (remaining)
@@ -256,8 +258,13 @@ while (For each GeneratedUser in user_pool_?) is (remaining)
:ProcessCheckin(checkin); :ProcessCheckin(checkin);
:PipelineLogger::Log(Info, CheckinGeneration,\n nullopt, checkin_id, "sqlite"); :PipelineLogger::Log(Info, CheckinGeneration,\n nullopt, checkin_id, "sqlite");
:Append -> checkin_pool_; :Append -> checkin_pool_;
if (Batch size reached?) then (yes)
:COMMIT & BEGIN;
else (no)
endif
endwhile (done) endwhile (done)
endwhile (done) endwhile (done)
:COMMIT (Final);
' ═══════════════════════════════════════════ ' ═══════════════════════════════════════════
' PHASE 3 — RATING GENERATION ' PHASE 3 — RATING GENERATION
@@ -269,33 +276,41 @@ note right
Rating skew modulated per persona. Rating skew modulated per persona.
end note end note
:BEGIN TRANSACTION;
while (For each GeneratedCheckin in checkin_pool_?) is (remaining) while (For each GeneratedCheckin in checkin_pool_?) is (remaining)
:Match brewery_id, select beer from beer_pool_\n(same brewery_id, biased by persona affinities); :Match brewery_id, select beer from beer_pool_\n(same brewery_id, biased by persona affinities);
if (Beer exists for brewery?) then (yes) if (Beer exists for brewery?) then (yes)
:GenerateRating(user, beer, checkin_id)\nvia DataGenerator; :GenerateRating(user, beer, checkin_id)\nvia DataGenerator;
:ProcessRating(rating); :ProcessRating(rating);
:PipelineLogger::Log(Info, RatingGeneration,\n nullopt, rating_id, "sqlite"); :PipelineLogger::Log(Info, RatingGeneration,\n nullopt, rating_id, "sqlite");
if (Batch size reached?) then (yes)
:COMMIT & BEGIN;
else (no)
endif
else (no) else (no)
:PipelineLogger::Log(Warn, RatingGeneration,\n nullopt, brewery_id, "sqlite"); :PipelineLogger::Log(Warn, RatingGeneration,\n nullopt, brewery_id, "sqlite");
:Skip -- brewery has no beers; :Skip -- brewery has no beers;
endif endif
endwhile (done) endwhile (done)
:COMMIT (Final);
' ═══════════════════════════════════════════ ' ═══════════════════════════════════════════
' TEARDOWN ' TEARDOWN
' ═══════════════════════════════════════════ ' ═══════════════════════════════════════════
|Main| |Orchestrator|
:Finalize SqliteExportService; :Finalize SqliteExportService;
note right note right
COMMIT covers all five fixture types. Safely closes the DB connection.
end note end note
:Close log_ch; :Close log_ch;
|Main|
:spdlog::info "Pipeline complete in X ms";
:Join Log Worker; :Join Log Worker;
note right note right
Drain guarantees no LogEntry is Drain guarantees no LogEntry is
dropped at shutdown. dropped at shutdown.
end note end note
:spdlog::info "Pipeline complete in X ms";
stop stop
@enduml @enduml

View File

@@ -3,16 +3,12 @@
' ========================================== ' ==========================================
' CONFIGURATION & STYLING ' CONFIGURATION & STYLING
' ========================================== ' ==========================================
skinparam classAttributeFontSize 13 !include ../biergarten-weizen-theme.puml
skinparam classAttributeFontSize 9
' --- Typography --- skinparam defaultFontSize 25
skinparam defaultFontName "DM Sans"
skinparam defaultFontSize 20
skinparam titleFontName "Volkhov"
skinparam titleFontSize 30 skinparam titleFontSize 30
package "Domain" { package "Domain: Models" {
package "Domain Models" {
class Location { class Location {
+ city : std::string + city : std::string
@@ -159,10 +155,7 @@ package "Domain" {
GeneratorOptions *-- SamplingOptions GeneratorOptions *-- SamplingOptions
} }
' ========================================== package "Domain: Policy" {
' DOMAIN POLICY
' ==========================================
package "Domain Policy" {
interface ContextStrategy <<interface>> { interface ContextStrategy <<interface>> {
+ QueriesFor(loc : const Location&) : std::vector<std::string> + QueriesFor(loc : const Location&) : std::vector<std::string>
@@ -212,40 +205,8 @@ package "Domain" {
+ TimestampFor(user : const GeneratedUser&,\n index : size_t) : std::string + TimestampFor(user : const GeneratedUser&,\n index : size_t) : std::string
} }
} }
}
' ========================================== package "Infrastructure: Logging" {
' ORCHESTRATION
' ==========================================
class BiergartenPipelineOrchestrator {
- preloader_ : std::unique_ptr<DataPreloader>
- enrichment_service_ : std::unique_ptr<EnrichmentService>
- generator_ : std::unique_ptr<DataGenerator>
- logger_ : std::unique_ptr<Logger>
- exporter_ : std::unique_ptr<ExportService>
- brewery_context_strategy_ : std::unique_ptr<ContextStrategy>
- sampling_strategy_ : std::unique_ptr<SamplingStrategy>
- beer_selection_strategy_ : std::unique_ptr<BeerSelectionStrategy>
- checkin_strategy_ : std::unique_ptr<CheckinDistributionStrategy>
- beer_style_palette_ : std::vector<BeerStyle>
- options_ : ApplicationOptions
--
- user_pool_ : std::vector<GeneratedUser>
- brewery_pool_ : std::vector<GeneratedBrewery>
- beer_pool_ : std::vector<GeneratedBeer>
- checkin_pool_ : std::vector<GeneratedCheckin>
--
+ Run() : bool
- RunUserPhase(locations : const std::vector<Location>&) : void
- RunBreweryAndBeerPhase(locations : const std::vector<Location>&) : void
- RunCheckinPhase() : void
- RunRatingPhase() : void
}
package "Infrastructure" {
package "Logging" {
enum LogLevel { enum LogLevel {
Debug Debug
Info Info
@@ -296,7 +257,7 @@ package "Infrastructure" {
LogWorker ..> LogEntry : consumes LogWorker ..> LogEntry : consumes
} }
package "Pipeline Channel" { package "Infrastructure: Pipeline Channel" {
class "BoundedChannel<T>" as BoundedChannel { class "BoundedChannel<T>" as BoundedChannel {
- queue_ : std::queue<T> - queue_ : std::queue<T>
@@ -312,7 +273,7 @@ package "Infrastructure" {
} }
package "Data Preloading" { package "Infrastructure: Data Preloading" {
interface DataPreloader <<interface>> { interface DataPreloader <<interface>> {
+ LoadLocations(filepath : const std::filesystem::path&) : std::vector<Location> + LoadLocations(filepath : const std::filesystem::path&) : std::vector<Location>
@@ -330,7 +291,7 @@ package "Infrastructure" {
} }
package "Enrichment" { package "Infrastructure: Enrichment" {
interface EnrichmentService <<interface>> { interface EnrichmentService <<interface>> {
+ GetLocationContext(loc : const Location&,\n strategy : const ContextStrategy&) : LocationContext + GetLocationContext(loc : const Location&,\n strategy : const ContextStrategy&) : LocationContext
@@ -355,7 +316,7 @@ package "Infrastructure" {
} }
package "Data Generation" { package "Infrastructure: Data Generation" {
interface DataGenerator <<interface>> { interface DataGenerator <<interface>> {
+ GenerateBrewery(location : const Location&,\n context : const LocationContext&) : BreweryResult + GenerateBrewery(location : const Location&,\n context : const LocationContext&) : BreweryResult
@@ -401,7 +362,7 @@ package "Infrastructure" {
} }
package "Data Export" { package "Infrastructure: Data Export" {
interface ExportService <<interface>> { interface ExportService <<interface>> {
+ Initialize() : void + Initialize() : void
@@ -447,11 +408,33 @@ package "Infrastructure" {
} }
} }
}
' ==========================================
' GLOBAL RELATIONSHIPS
' ========================================== class BiergartenPipelineOrchestrator {
- preloader_ : std::unique_ptr<DataPreloader>
- enrichment_service_ : std::unique_ptr<EnrichmentService>
- generator_ : std::unique_ptr<DataGenerator>
- logger_ : std::unique_ptr<Logger>
- exporter_ : std::unique_ptr<ExportService>
- brewery_context_strategy_ : std::unique_ptr<ContextStrategy>
- sampling_strategy_ : std::unique_ptr<SamplingStrategy>
- beer_selection_strategy_ : std::unique_ptr<BeerSelectionStrategy>
- checkin_strategy_ : std::unique_ptr<CheckinDistributionStrategy>
- beer_style_palette_ : std::vector<BeerStyle>
- options_ : ApplicationOptions
--
- user_pool_ : std::vector<GeneratedUser>
- brewery_pool_ : std::vector<GeneratedBrewery>
- beer_pool_ : std::vector<GeneratedBeer>
- checkin_pool_ : std::vector<GeneratedCheckin>
--
+ Run() : bool
- RunUserPhase(locations : const std::vector<Location>&) : void
- RunBreweryAndBeerPhase(locations : const std::vector<Location>&) : void
- RunCheckinPhase() : void
- RunRatingPhase() : void
}
' --- Orchestration Aggregations (Services & Strategies) --- ' --- Orchestration Aggregations (Services & Strategies) ---
BiergartenPipelineOrchestrator *-- DataPreloader BiergartenPipelineOrchestrator *-- DataPreloader