flowey_lib_common/cache.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Cache the contents of a particular directory between runs.
//!
//! The contents of the provided `dir` will be saved at the end of a run, using
//! the user-defined `key` string to tag the contents of the cache.
//!
//! Subsequent runs will then use the `key` to restore the contents of the
//! directory.
//!
//! # A note of file sizes
//!
//! This node is backed by the in-box Cache@2 Task on ADO, and the in-box
//! actions/cache@v3 Action on Github Actions.
//!
//! These actions have limits on the size of data they can cache at any given
//! time, and potentially have issues with particularly large artifacts (e.g:
//! gigabytes in size).
//!
//! In cases where you're intending to cache large files, it is recommended to
//! implement caching functionality directly using [`NodeCtx::persistent_dir`],
//! which is guaranteed to be reliable (when running on a system where such
//! persistent storage is available).
//!
//! # Clearing the cache
//!
//! Clearing the cache is done in different ways depending on the backend:
//!
//! - Local: just delete the cache folder on your machine
//! - Github: use the cache tasks's web UI to manage cache entries
//! - ADO: define a pipeline-level variable called `FloweyCacheGeneration`, and set
//! it to an new arbitrary value.
//! - This is because ADO doesn't have a native way to flush the cache
//! outside of updating the cache key in the YAML file itself.
use flowey::node::prelude::*;
use std::collections::BTreeSet;
use std::io::Seek;
use std::io::Write;
/// Status of a cache directory.
#[derive(Debug, Serialize, Deserialize)]
pub enum CacheHit {
/// Complete miss - cache is empty.
Miss,
/// Direct hit - cache is perfectly restored.
Hit,
/// Partial hit - cache was partially restored.
PartialHit,
}
/// How the result of the cache task should be reported.
#[derive(Serialize, Deserialize)]
pub enum CacheResult {
/// Don't care about the details, only care that the task was run.
SideEffect(WriteVar<SideEffect>),
/// Get details on the result of the cache restore.
HitVar(WriteVar<CacheHit>),
}
flowey_request! {
pub struct Request {
/// Friendly label for the directory being cached
pub label: String,
/// Absolute path to the directory that will be cached between runs
pub dir: ReadVar<PathBuf>,
/// The key created when saving a cache and the key used to search for a
/// cache.
pub key: ReadVar<String>,
/// An optional set of alternative restore keys.
///
/// If no cache hit occurs for key, these restore keys are used
/// sequentially in the order provided to find and restore a cache.
pub restore_keys: Option<ReadVar<Vec<String>>>,
/// Variable to write the result of trying to restore the cache.
pub hitvar: CacheResult,
}
}
enum ClaimedCacheResult {
SideEffect,
HitVar(ClaimedWriteVar<CacheHit>),
}
new_flow_node!(struct Node);
impl FlowNode for Node {
type Request = Request;
fn imports(_ctx: &mut ImportCtx<'_>) {}
fn emit(requests: Vec<Self::Request>, ctx: &mut NodeCtx<'_>) -> anyhow::Result<()> {
// -- end of req processing -- //
match ctx.backend() {
FlowBackend::Local => {
if !ctx.supports_persistent_dir() {
ctx.emit_minor_rust_step("Reporting cache misses", |ctx| {
let hitvars = requests
.into_iter()
.map(|v| match v.hitvar {
CacheResult::SideEffect(v) => {
v.claim(ctx);
ClaimedCacheResult::SideEffect
}
CacheResult::HitVar(v) => ClaimedCacheResult::HitVar(v.claim(ctx)),
})
.collect::<Vec<_>>();
|rt| {
for var in hitvars {
match var {
ClaimedCacheResult::SideEffect => {}
ClaimedCacheResult::HitVar(var) => {
rt.write(var, &CacheHit::Miss)
}
}
}
}
});
return Ok(());
};
for Request {
label,
dir,
key,
restore_keys,
hitvar,
} in requests
{
// work around a bug in how post-job nodes affect stage1 day
// culling...
let persistent_dir = ctx.persistent_dir().unwrap();
// regardless if we're reporting the hit back to the user, we'll
// want to record the hit status so we can efficiently skip
// saving to the cache in the post-job step
let (side_effect, (hitvar_reader, hitvar)) = match hitvar {
CacheResult::HitVar(hitvar) => (None, (hitvar.new_reader(), hitvar)),
CacheResult::SideEffect(var) => (Some(var), ctx.new_var()),
};
let (resolve_post_job, require_post_job) = ctx.new_post_job_side_effect();
ctx.emit_rust_step(format!("Restore cache: {label}"), |ctx| {
require_post_job.claim(ctx);
side_effect.claim(ctx);
let persistent_dir = persistent_dir.clone().claim(ctx);
let dir = dir.clone().claim(ctx);
let key = key.clone().claim(ctx);
let restore_keys = restore_keys.claim(ctx);
let hitvar = hitvar.claim(ctx);
|rt| {
let persistent_dir = rt.read(persistent_dir);
let dir = rt.read(dir);
let key = rt.read(key);
let restore_keys = restore_keys.map(|x| rt.read(x));
let set_hitvar = move |val| {
log::info!("cache status: {val:?}");
rt.write(hitvar, &val);
};
// figure out what cache entries are available to us
//
// (reading this entire file into memory seems fine at
// this juncture, given the sort of datasets we're
// working with)
let available_keys: BTreeSet<String> = if let Ok(s) =
fs_err::read_to_string(persistent_dir.join("cache_keys"))
{
s.split('\n').map(|s| s.trim().to_owned()).collect()
} else {
BTreeSet::new()
};
// using the keys the user provided us, check if there's
// a match
let mut existing_cache_dir = None;
for (idx, key) in Some(key)
.into_iter()
.chain(restore_keys.into_iter().flatten())
.enumerate()
{
if available_keys.contains(&key) {
existing_cache_dir = Some((idx == 0, hash_key_to_dir(&key)));
break;
}
}
let Some((direct_hit, existing_cache_dir)) = existing_cache_dir else {
set_hitvar(CacheHit::Miss);
return Ok(());
};
crate::_util::copy_dir_all(
persistent_dir.join(existing_cache_dir),
dir,
)
.context("while restoring cache")?;
set_hitvar(if direct_hit {
CacheHit::Hit
} else {
CacheHit::PartialHit
});
Ok(())
}
});
ctx.emit_rust_step(format!("Saving cache: {label}"), |ctx| {
resolve_post_job.claim(ctx);
let hitvar_reader = hitvar_reader.claim(ctx);
let persistent_dir = persistent_dir.clone().claim(ctx);
let dir = dir.claim(ctx);
let key = key.claim(ctx);
move |rt| {
let persistent_dir = rt.read(persistent_dir);
let dir = rt.read(dir);
let key = rt.read(key);
let hitvar_reader = rt.read(hitvar_reader);
let mut cache_keys_file = fs_err::OpenOptions::new()
.append(true)
.create(true)
.read(true)
.open(persistent_dir.join("cache_keys"))?;
if matches!(hitvar_reader, CacheHit::Hit) {
// no need to update the cache
log::info!("was direct hit - no updates needed");
return Ok(());
}
// otherwise, need to update the cache
crate::_util::copy_dir_all(
dir,
persistent_dir.join(hash_key_to_dir(&key)),
)?;
cache_keys_file.seek(std::io::SeekFrom::End(0))?;
writeln!(cache_keys_file, "{}", key)?;
log::info!("cache saved");
Ok(())
}
});
}
}
FlowBackend::Ado => {
for Request {
label,
dir,
key,
restore_keys,
hitvar,
} in requests
{
let (resolve_post_job, require_post_job) = ctx.new_post_job_side_effect();
let (dir_string, key, restore_keys) = {
let (processed_dir, write_processed_dir) = ctx.new_var();
let (processed_key, write_processed_key) = ctx.new_var();
let (processed_keys, write_processed_keys) = if restore_keys.is_some() {
let (a, b) = ctx.new_var();
(Some(a), Some(b))
} else {
(None, None)
};
ctx.emit_rust_step("Pre-processing cache vars", |ctx| {
require_post_job.claim(ctx);
let write_processed_dir = write_processed_dir.claim(ctx);
let write_processed_key = write_processed_key.claim(ctx);
let write_processed_keys = write_processed_keys.claim(ctx);
let dir = dir.clone().claim(ctx);
let key = key.claim(ctx);
let restore_keys = restore_keys.claim(ctx);
|rt| {
let dir = rt.read(dir);
// while we're here, we'll convert dir into a
// String, so it can be stuffed into an ADO var
rt.write(
write_processed_dir,
&dir.absolute()?.display().to_string(),
);
// Inject `$(FloweyCacheGeneration)` as part of the
// cache key to provide a non-intrusive mechanism to
// cycle the ADO cache when it gets into an
// inconsistent state.
//
// Deny cross-os caching by default (matching Github
// CI works by default).
//
// FUTURE: add toggle to request to allow cross-os
// caching?
let inject_extras = |s| {
format!(r#""$(FloweyCacheGeneration)" | "$(Agent.OS)" | "{s}""#)
};
let key = rt.read(key);
rt.write(write_processed_key, &inject_extras(key));
if let Some(write_processed_keys) = write_processed_keys {
let restore_keys = rt.read(restore_keys.unwrap());
rt.write(
write_processed_keys,
&restore_keys
.into_iter()
.map(inject_extras)
.collect::<Vec<_>>()
.join("\\n"),
);
}
Ok(())
}
});
(processed_dir, processed_key, processed_keys)
};
let (hitvar_str_reader, hitvar_str_writer) =
if matches!(hitvar, CacheResult::HitVar(..)) {
let (r, w) = ctx.new_var();
(Some(r), Some(w))
} else {
(None, None)
};
ctx.emit_ado_step(format!("Restore cache: {label}"), |ctx| {
let dir_string = dir_string.clone().claim(ctx);
let key = key.claim(ctx);
let restore_keys = restore_keys.claim(ctx);
let hitvar_str_writer = hitvar_str_writer.claim(ctx);
|rt| {
let dir_string = rt.get_var(dir_string).as_raw_var_name();
let key = rt.get_var(key).as_raw_var_name();
let restore_keys = if let Some(restore_keys) = restore_keys {
format!(
"restore_keys: $({})",
rt.get_var(restore_keys).as_raw_var_name()
)
} else {
String::new()
};
let hitvar_input = if let Some(hitvar_str_writer) = hitvar_str_writer {
let hitvar_ado = AdoRuntimeVar::dangerous_from_global(
"FLOWEY_CACHE_HITVAR",
false,
);
// note the _lack_ of $() around the var!
let input =
format!("cacheHitVar: {}", hitvar_ado.as_raw_var_name());
rt.set_var(hitvar_str_writer, hitvar_ado);
input
} else {
String::new()
};
format!(
r#"
- task: Cache@2
inputs:
key: '$({key})'
path: $({dir_string})
{restore_keys}
{hitvar_input}
"#
)
}
});
if let Some(hitvar_str_reader) = hitvar_str_reader {
ctx.emit_rust_step("map ADO hitvar to flowey", |ctx| {
let label = label.clone();
let dir = dir.clone().claim(ctx);
let CacheResult::HitVar(hitvar) = hitvar else {
unreachable!()
};
let hitvar = hitvar.claim(ctx);
let hitvar_str_reader = hitvar_str_reader.claim(ctx);
move |rt| {
let dir = rt.read(dir);
let hitvar_str = rt.read(hitvar_str_reader);
let mut var = match hitvar_str.as_str() {
"true" => CacheHit::Hit,
"false" => CacheHit::Miss,
"inexact" => CacheHit::PartialHit,
other => anyhow::bail!("unexpected cacheHitVar value: {other}"),
};
// WORKAROUND: ADO is really cool software, and
// sometimes, when it feels like it, i'll get into
// an inconsistent state where it reports a cache
// hit, but then the cache is actually empty.
if matches!(var, CacheHit::Hit | CacheHit::PartialHit) {
if dir.read_dir()?.next().is_none() {
log::error!("Detected inconsistent ADO cache entry: {label}");
log::error!("Please define/cycle the `FloweyCacheGeneration` pipeline variable");
var = CacheHit::Miss;
}
}
rt.write(hitvar, &var);
Ok(())
}
});
}
ctx.emit_rust_step(format!("validate cache entry: {label}"), |ctx| {
resolve_post_job.claim(ctx);
let dir = dir.clone().claim(ctx);
move |rt| {
let mut dir_contents = rt.read(dir).read_dir()?.peekable();
if dir_contents.peek().is_none() {
log::error!("Detected empty cache folder for entry: {label}");
log::error!("This is a bug - please update the pipeline code");
anyhow::bail!("cache error")
}
for entry in dir_contents {
let entry = entry?;
log::debug!("uploading: {}", entry.path().display());
}
Ok(())
}
});
}
}
FlowBackend::Github => {
for Request {
label,
dir,
key,
restore_keys,
hitvar,
} in requests
{
let (resolve_post_job, require_post_job) = ctx.new_post_job_side_effect();
let (dir_string, key, restore_keys) = {
let (processed_dir, write_processed_dir) = ctx.new_var();
let (processed_key, write_processed_key) = ctx.new_var();
let (processed_keys, write_processed_keys) = if restore_keys.is_some() {
let (a, b) = ctx.new_var();
(Some(a), Some(b))
} else {
(None, None)
};
ctx.emit_rust_step("Pre-processing cache vars", |ctx| {
require_post_job.claim(ctx);
let write_processed_dir = write_processed_dir.claim(ctx);
let write_processed_key = write_processed_key.claim(ctx);
let write_processed_keys = write_processed_keys.claim(ctx);
let dir = dir.clone().claim(ctx);
let key = key.claim(ctx);
let restore_keys = restore_keys.claim(ctx);
|rt| {
let dir = rt.read(dir);
rt.write(
write_processed_dir,
&dir.absolute()?.display().to_string(),
);
let key = rt.read(key);
let key = format!("{key}-{}-{}", rt.arch(), rt.platform());
rt.write(write_processed_key, &key);
if let Some(write_processed_keys) = write_processed_keys {
let restore_keys = rt.read(restore_keys.unwrap());
rt.write(
write_processed_keys,
&format!(
r#""[{}]""#,
restore_keys
.into_iter()
.map(|s| format!(
"'{s}-{}-{}'",
rt.arch(),
rt.platform()
))
.collect::<Vec<_>>()
.join(", ")
),
);
}
Ok(())
}
});
(processed_dir, processed_key, processed_keys)
};
let (hitvar_str_reader, hitvar_str_writer) =
if matches!(hitvar, CacheResult::HitVar(..)) {
let (r, w) = ctx.new_var();
(Some(r), Some(w))
} else {
(None, None)
};
let mut step = ctx
.emit_gh_step(format!("Restore cache: {label}"), "actions/cache@v4")
.with("key", key)
.with("path", dir_string);
if let Some(restore_keys) = restore_keys {
step = step.with("restore-keys", restore_keys);
}
if let Some(hitvar_str_writer) = hitvar_str_writer {
step = step.output("cache-hit", hitvar_str_writer);
}
step.finish(ctx);
if let Some(hitvar_str_reader) = hitvar_str_reader {
ctx.emit_minor_rust_step("map Github cache-hit to flowey", |ctx| {
let CacheResult::HitVar(hitvar) = hitvar else {
unreachable!()
};
let hitvar = hitvar.claim(ctx);
let hitvar_str_reader = hitvar_str_reader.claim(ctx);
// TODO: How do we distinguish between a partial hit and a miss?
move |rt| {
let hitvar_str = rt.read(hitvar_str_reader);
// Github's cache action brilliantly only reports "false" if missing a cache key that exists,
// and leaves it blank if its a miss in other cases.
let var = match hitvar_str.as_str() {
"true" => CacheHit::Hit,
_ => CacheHit::Miss,
};
rt.write(hitvar, &var);
}
});
}
ctx.emit_rust_step(format!("validate cache entry: {label}"), |ctx| {
resolve_post_job.claim(ctx);
let dir = dir.clone().claim(ctx);
move |rt| {
let mut dir_contents = rt.read(dir).read_dir()?.peekable();
if dir_contents.peek().is_none() {
log::error!("Detected empty cache folder for entry: {label}");
log::error!("This is a bug - please update the pipeline code");
anyhow::bail!("cache error")
}
for entry in dir_contents {
let entry = entry?;
log::debug!("uploading: {}", entry.path().display());
}
Ok(())
}
});
}
}
}
Ok(())
}
}
// _technically_, if we want to be _super_ sure we're not gonna have a hash
// collision, we should also do a content-hash of the thing we're about to
// cache... but this should be OK for now, given that we don't expect to have a
// massive number of cache entries.
fn hash_key_to_dir(key: &str) -> String {
let hasher = &mut rustc_hash::FxHasher::default();
std::hash::Hash::hash(&key, hasher);
let hash = std::hash::Hasher::finish(hasher);
format!("{:08x?}", hash)
}