Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve support for multiple organizations #272

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 72 additions & 11 deletions clowarden-server/src/jobs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ use clowarden_core::{
multierror::MultiError,
services::{BaseRefConfigStatus, ChangesApplied, ChangesSummary, DynServiceHandler, ServiceName},
};
use futures::future::{self, JoinAll};
use octorust::types::{ChecksCreateRequestConclusion, JobStatus, PullRequestData};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::{collections::HashMap, sync::Arc};
use tokio::{
sync::{broadcast, mpsc},
task::JoinHandle,
Expand Down Expand Up @@ -47,6 +48,16 @@ pub(crate) enum Job {
Validate(ValidateInput),
}

impl Job {
/// Get the name of the organization this job is related to.
pub(crate) fn org_name(&self) -> &str {
match self {
Job::Reconcile(input) => &input.org.name,
Job::Validate(input) => &input.org.name,
}
}
}

/// Information required to process a reconcile job.
#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
pub(crate) struct ReconcileInput {
Expand Down Expand Up @@ -118,20 +129,68 @@ impl Handler {
gh: DynGH,
ghc: core::github::DynGH,
services: HashMap<ServiceName, DynServiceHandler>,
) -> Self {
Self {
) -> Arc<Self> {
Arc::new(Self {
db,
gh,
ghc,
services,
}
})
}

/// Spawn a new task to process jobs received on the jobs channel. The task
/// will stop when notified on the stop channel provided.
/// Spawn some tasks to process jobs received on the jobs channel. We will
/// create one worker per organization, plus an additional task to route
/// jobs to the corresponding organization worker. All tasks will stop when
/// notified on the stop channel provided.
pub(crate) fn start(
self,
self: Arc<Self>,
mut jobs_rx: mpsc::UnboundedReceiver<Job>,
stop_tx: &broadcast::Sender<()>,
orgs: Vec<Organization>,
) -> JoinAll<JoinHandle<()>> {
let mut handles = Vec::with_capacity(orgs.len() + 1);
let mut orgs_jobs_tx_channels = HashMap::new();

// Create a worker for each organization
for org in orgs {
let (org_jobs_tx, org_jobs_rx) = mpsc::unbounded_channel();
orgs_jobs_tx_channels.insert(org.name, org_jobs_tx);
let org_worker = self.clone().organization_worker(org_jobs_rx, stop_tx.subscribe());
handles.push(org_worker);
}

// Create a worker to route jobs to the corresponding org worker
let mut stop_rx = stop_tx.subscribe();
let jobs_router = tokio::spawn(async move {
loop {
tokio::select! {
biased;

// Pick next job from the queue and send it to the corresponding org worker
Some(job) = jobs_rx.recv() => {
if let Some(org_jobs_tx) = orgs_jobs_tx_channels.get(job.org_name()) {
_ = org_jobs_tx.send(job);
}
}

// Exit if the handler has been asked to stop
_ = stop_rx.recv() => {
break
}
}
}
});
handles.push(jobs_router);

future::join_all(handles)
}

/// Spawn a worker that will take care of processing jobs for a given
/// organization. The worker will stop when notified on the stop channel
/// provided.
fn organization_worker(
self: Arc<Self>,
mut org_jobs_rx: mpsc::UnboundedReceiver<Job>,
mut stop_rx: broadcast::Receiver<()>,
) -> JoinHandle<()> {
tokio::spawn(async move {
Expand All @@ -140,7 +199,7 @@ impl Handler {
biased;

// Pick next job from the queue and process it
Some(job) = jobs_rx.recv() => {
Some(job) = org_jobs_rx.recv() => {
match job {
Job::Reconcile(input) => _ = self.handle_reconcile_job(input).await,
Job::Validate(input) => _ = self.handle_validate_job(input).await,
Expand Down Expand Up @@ -296,8 +355,8 @@ pub(crate) fn scheduler(
jobs_tx: mpsc::UnboundedSender<Job>,
mut stop_rx: broadcast::Receiver<()>,
orgs: Vec<Organization>,
) -> JoinHandle<()> {
tokio::spawn(async move {
) -> JoinAll<JoinHandle<()>> {
let scheduler = tokio::spawn(async move {
let reconcile_frequency = time::Duration::from_secs(RECONCILE_FREQUENCY);
let mut reconcile = time::interval(reconcile_frequency);
reconcile.set_missed_tick_behavior(MissedTickBehavior::Skip);
Expand All @@ -322,5 +381,7 @@ pub(crate) fn scheduler(
},
}
}
})
});

future::join_all(vec![scheduler])
}
2 changes: 1 addition & 1 deletion clowarden-server/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async fn main() -> Result<()> {
let (jobs_tx, jobs_rx) = mpsc::unbounded_channel();
let jobs_handler = jobs::Handler::new(db.clone(), gh.clone(), ghc.clone(), services);
let jobs_workers_done = future::join_all([
jobs_handler.start(jobs_rx, stop_tx.subscribe()),
jobs_handler.start(jobs_rx, &stop_tx, cfg.get("organizations")?),
jobs::scheduler(jobs_tx.clone(), stop_tx.subscribe(), cfg.get("organizations")?),
]);

Expand Down