Merge pull request #492 from LnL7/lapin-mass-rebuilder

lapin mass rebuilder
This commit is contained in:
Daiderd Jordan 2020-05-21 23:37:10 +02:00 committed by GitHub
commit 874bfcd028
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 101 additions and 73 deletions

View file

@ -1,20 +1,26 @@
use ofborg::checkout;
use ofborg::config;
use ofborg::easyamqp::{self, ChannelExt, ConsumerExt};
use ofborg::stats;
use ofborg::tasks;
use ofborg::worker;
use std::env; use std::env;
use std::error::Error;
use std::path::Path; use std::path::Path;
use std::process; use std::process;
use amqp::Basic; use async_std::task;
use tracing::{error, info}; use tracing::{error, info};
use ofborg::checkout;
use ofborg::config;
use ofborg::easyamqp::{self, ChannelExt, ConsumerExt};
use ofborg::easylapin;
use ofborg::stats;
use ofborg::tasks;
// FIXME: remove with rust/cargo update // FIXME: remove with rust/cargo update
#[allow(clippy::cognitive_complexity)] #[allow(clippy::cognitive_complexity)]
fn main() { fn main() -> Result<(), Box<dyn Error>> {
ofborg::setup_log();
let arg = env::args().nth(1).expect("usage: mass-rebuilder <config>");
let cfg = config::load(arg.as_ref());
let memory_info = sys_info::mem_info().expect("Unable to get memory information from OS"); let memory_info = sys_info::mem_info().expect("Unable to get memory information from OS");
if memory_info.avail < 8 * 1024 * 1024 { if memory_info.avail < 8 * 1024 * 1024 {
@ -26,68 +32,52 @@ fn main() {
process::exit(1); process::exit(1);
}; };
let cfg = config::load(env::args().nth(1).unwrap().as_ref()); let conn = easylapin::from_config(&cfg.rabbitmq)?;
let mut chan = task::block_on(conn.create_channel())?;
ofborg::setup_log();
info!("Hello, world!");
let mut session = easyamqp::session_from_config(&cfg.rabbitmq).unwrap();
info!("Connected to rabbitmq");
let mut channel = session.open_channel(1).unwrap();
let cloner = checkout::cached_cloner(Path::new(&cfg.checkout.root)); let cloner = checkout::cached_cloner(Path::new(&cfg.checkout.root));
let nix = cfg.nix(); let nix = cfg.nix();
let events = stats::RabbitMQ::new( let events = stats::RabbitMQ::from_lapin(
&format!("{}-{}", cfg.runner.identity.clone(), cfg.nix.system.clone()), &format!("{}-{}", cfg.runner.identity.clone(), cfg.nix.system.clone()),
session.open_channel(3).unwrap(), task::block_on(conn.create_channel())?,
); );
let mrw = tasks::evaluate::EvaluationWorker::new( let queue_name = String::from("mass-rebuild-check-jobs");
cloner, chan.declare_queue(easyamqp::QueueConfig {
&nix, queue: queue_name.clone(),
cfg.github(), passive: false,
cfg.github_app_vendingmachine(), durable: true,
cfg.acl(), exclusive: false,
cfg.runner.identity.clone(), auto_delete: false,
events, no_wait: false,
cfg.tag_paths.clone().unwrap(), })?;
);
channel let handle = chan.consume(
.declare_queue(easyamqp::QueueConfig { tasks::evaluate::EvaluationWorker::new(
queue: "mass-rebuild-check-jobs".to_owned(), cloner,
passive: false, &nix,
durable: true, cfg.github(),
exclusive: false, cfg.github_app_vendingmachine(),
auto_delete: false, cfg.acl(),
cfg.runner.identity.clone(),
events,
cfg.tag_paths.clone().unwrap(),
),
easyamqp::ConsumeConfig {
queue: queue_name.clone(),
consumer_tag: format!("{}-mass-rebuild-checker", cfg.whoami()),
no_local: false,
no_ack: false,
no_wait: false, no_wait: false,
}) exclusive: false,
.unwrap(); },
)?;
channel.basic_prefetch(1).unwrap(); info!("Fetching jobs from {}", queue_name);
let mut channel = channel task::block_on(handle);
.consume(
worker::new(mrw),
easyamqp::ConsumeConfig {
queue: "mass-rebuild-check-jobs".to_owned(),
consumer_tag: format!("{}-mass-rebuild-checker", cfg.whoami()),
no_local: false,
no_ack: false,
no_wait: false,
exclusive: false,
},
)
.unwrap();
channel.start_consuming(); drop(conn); // Close connection.
info!("Finished consuming?");
channel.close(200, "Bye").unwrap();
info!("Closed the channel");
session.close(200, "Good Bye");
info!("Closed the session... EOF"); info!("Closed the session... EOF");
Ok(())
} }

View file

@ -17,7 +17,7 @@ fn main() {
let mut session = easyamqp::session_from_config(&cfg.rabbitmq).unwrap(); let mut session = easyamqp::session_from_config(&cfg.rabbitmq).unwrap();
info!("Connected to rabbitmq"); info!("Connected to rabbitmq");
let events = stats::RabbitMQ::new( let events = stats::RabbitMQ::from_amqp(
&format!("{}-{}", cfg.runner.identity.clone(), cfg.nix.system.clone()), &format!("{}-{}", cfg.runner.identity.clone(), cfg.nix.system.clone()),
session.open_channel(3).unwrap(), session.open_channel(3).unwrap(),
); );

View file

@ -1,5 +1,8 @@
use amqp::protocol::basic::BasicProperties; use amqp::protocol::basic;
use amqp::{Basic, Channel}; use amqp::Basic;
use async_std::task;
use lapin::options::BasicPublishOptions;
use lapin::CloseOnDrop;
include!(concat!(env!("OUT_DIR"), "/events.rs")); include!(concat!(env!("OUT_DIR"), "/events.rs"));
@ -19,13 +22,13 @@ pub struct EventMessage {
pub events: Vec<Event>, pub events: Vec<Event>,
} }
pub struct RabbitMQ { pub struct RabbitMQ<C> {
identity: String, identity: String,
channel: Channel, channel: C,
} }
impl RabbitMQ { impl RabbitMQ<amqp::Channel> {
pub fn new(identity: &str, channel: Channel) -> RabbitMQ { pub fn from_amqp(identity: &str, channel: amqp::Channel) -> Self {
RabbitMQ { RabbitMQ {
identity: identity.to_owned(), identity: identity.to_owned(),
channel, channel,
@ -33,9 +36,9 @@ impl RabbitMQ {
} }
} }
impl SysEvents for RabbitMQ { impl SysEvents for RabbitMQ<amqp::Channel> {
fn notify(&mut self, event: Event) { fn notify(&mut self, event: Event) {
let props = BasicProperties { let props = basic::BasicProperties {
..Default::default() ..Default::default()
}; };
self.channel self.channel
@ -55,3 +58,38 @@ impl SysEvents for RabbitMQ {
.unwrap(); .unwrap();
} }
} }
impl RabbitMQ<CloseOnDrop<lapin::Channel>> {
pub fn from_lapin(identity: &str, channel: CloseOnDrop<lapin::Channel>) -> Self {
RabbitMQ {
identity: identity.to_owned(),
channel,
}
}
}
impl SysEvents for RabbitMQ<CloseOnDrop<lapin::Channel>> {
fn notify(&mut self, event: Event) {
let props = lapin::BasicProperties::default().with_content_type("application/json".into());
task::block_on(async {
let _confirmaton = self
.channel
.basic_publish(
&String::from("stats"),
&"".to_owned(),
BasicPublishOptions::default(),
serde_json::to_string(&EventMessage {
sender: self.identity.clone(),
events: vec![event],
})
.unwrap()
.into_bytes(),
props,
)
.await
.unwrap()
.await
.unwrap();
});
}
}

View file

@ -80,6 +80,9 @@ impl<E: stats::SysEvents + 'static> worker::SimpleWorker for EvaluationWorker<E>
} }
fn consumer(&mut self, job: &evaluationjob::EvaluationJob) -> worker::Actions { fn consumer(&mut self, job: &evaluationjob::EvaluationJob) -> worker::Actions {
let span = debug_span!("job", pr = ?job.pr.number);
let _enter = span.enter();
let mut vending_machine = self let mut vending_machine = self
.github_vend .github_vend
.write() .write()
@ -249,9 +252,6 @@ impl<'a, E: stats::SysEvents + 'static> OneEval<'a, E> {
// FIXME: remove with rust/cargo update // FIXME: remove with rust/cargo update
#[allow(clippy::cognitive_complexity)] #[allow(clippy::cognitive_complexity)]
fn evaluate_job(&mut self) -> Result<worker::Actions, EvalWorkerError> { fn evaluate_job(&mut self) -> Result<worker::Actions, EvalWorkerError> {
let span = debug_span!("job", pr = ?self.job.pr.number);
let _enter = span.enter();
let job = self.job; let job = self.job;
let repo = self let repo = self
.client_app .client_app