repo stringlengths 6 65 | file_url stringlengths 81 311 | file_path stringlengths 6 227 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:31:58 2026-01-04 20:25:31 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
ohah/hwpjs | https://github.com/ohah/hwpjs/blob/19df26a209c6e780b4c3b03d2ab628209e1ae311/packages/hwpjs/crates/lib/src/generated.rs | packages/hwpjs/crates/lib/src/generated.rs | // Auto generated by Craby. DO NOT EDIT.
// Hash: 1761b519b16719d6
#[rustfmt::skip]
use craby::prelude::*;
use crate::ffi::bridging::*;
pub trait HwpjsSpec {
fn new(ctx: Context) -> Self;
fn id(&self) -> usize;
fn file_header(&mut self, data: ArrayBuffer) -> String;
fn to_json(&mut self, data: ArrayBu... | rust | MIT | 19df26a209c6e780b4c3b03d2ab628209e1ae311 | 2026-01-04T20:24:59.575438Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_mc/src/lib.rs | fantoch_mc/src/lib.rs | use fantoch::command::Command;
use fantoch::config::Config;
use fantoch::executor::Executor;
use fantoch::id::ProcessId;
use fantoch::protocol::{Action, Protocol};
use fantoch::time::RunTime;
use fantoch::util;
use fantoch::{HashMap, HashSet};
use stateright::actor::{Actor, Id};
use std::marker::PhantomData;
const SHA... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/config.rs | fantoch/src/config.rs | use crate::id::ProcessId;
use serde::{Deserialize, Serialize};
use std::time::Duration;
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub struct Config {
/// number of processes
n: usize,
/// number of tolerated faults
f: usize,
/// number of shards
shard_count: usize,
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/kvs.rs | fantoch/src/kvs.rs | use crate::executor::ExecutionOrderMonitor;
use crate::id::Rifl;
use crate::HashMap;
use serde::{Deserialize, Serialize};
// Definition of `Key` and `Value` types.
pub type Key = String;
pub type Value = String;
#[derive(
Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize,
)]
pub enum KVOp {
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/lib.rs | fantoch/src/lib.rs | #![deny(rust_2018_idioms)]
// This module contains the definition of `Region` and `Planet`.
pub mod planet;
// This module contains the definition of all identifiers and generators of
// identifiers.
pub mod id;
// This module contains the definition of `Client`.
pub mod client;
// This module contains the implemen... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/command.rs | fantoch/src/command.rs | use crate::executor::ExecutorResult;
use crate::id::{Rifl, ShardId};
use crate::kvs::{KVOp, KVOpResult, KVStore, Key};
use crate::HashMap;
use serde::{Deserialize, Serialize};
use std::fmt::{self, Debug};
use std::iter::FromIterator;
use std::sync::Arc;
pub const DEFAULT_SHARD_ID: ShardId = 0;
#[derive(Clone, Partial... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/id.rs | fantoch/src/id.rs | use serde::{Deserialize, Serialize};
use std::fmt;
use std::sync::atomic::{AtomicU64, Ordering};
use std::sync::Arc;
// process ids
pub type ProcessId = u8;
pub type Dot = Id<ProcessId>;
pub type DotGen = IdGen<ProcessId>;
pub type AtomicDotGen = AtomicIdGen<ProcessId>;
// client ids
// for info on RIFL see: http://s... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/time.rs | fantoch/src/time.rs | use std::time::{Duration, SystemTime, UNIX_EPOCH};
pub trait SysTime: Send + 'static + Sync /* TODO why is Sync needed here */ {
fn millis(&self) -> u64;
fn micros(&self) -> u64;
}
// TODO find a better name
pub struct RunTime;
impl RunTime {
fn duration_since_unix_epoch(&self) -> Duration {
let ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/util.rs | fantoch/src/util.rs | use crate::id::{Dot, ProcessId, ShardId};
use crate::kvs::Key;
use crate::planet::{Planet, Region};
use crate::HashMap;
use std::hash::{Hash, Hasher};
// warn and info logs are always enabled!
// - debug is enabled if `max_level_debug` or `max_level_trace`
// - trace is enabled if `max_level_trace`
#[macro_export]
ma... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/shared.rs | fantoch/src/shared.rs | use dashmap::iter::Iter;
use dashmap::mapref::one::Ref;
use dashmap::DashMap;
use std::collections::hash_map::RandomState;
use std::collections::BTreeSet;
use std::hash::Hash;
// TODO: - try https://docs.rs/lever/0.1.1/lever/table/lotable/struct.LOTable.html
// as an alternative to dashmap.
// - flurry is ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/planet/region.rs | fantoch/src/planet/region.rs | use serde::{Deserialize, Deserializer, Serialize, Serializer};
use std::fmt;
#[derive(Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
pub struct Region {
name: String,
}
impl Region {
/// Create a new `Region`.
pub fn new<S: Into<String>>(name: S) -> Self {
Region { name: name.into() }
}
pu... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/planet/dat.rs | fantoch/src/planet/dat.rs | use crate::planet::Region;
use crate::HashMap;
use std::str::FromStr;
use std::io::{BufRead, BufReader};
// TODO
// when we create Dat, we should compute region and latencies in that same
// method; also, we should only assume a structure in the filename (region.dat)
// and not in the folder structure (as we're doing... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/planet/mod.rs | fantoch/src/planet/mod.rs | // This module contains the definition of `Dat`.
mod dat;
// This module contains the definition of `Region`.
pub mod region;
// Re-exports.
pub use region::Region;
use crate::planet::dat::Dat;
use crate::HashMap;
use serde::{Deserialize, Serialize};
use std::fmt::{self, Write};
// directory that contains all dat f... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/sim/simulation.rs | fantoch/src/sim/simulation.rs | use crate::client::Client;
use crate::command::{Command, CommandResult};
use crate::executor::AggregatePending;
use crate::id::{ClientId, ProcessId};
use crate::protocol::{Action, Protocol};
use crate::time::SimTime;
use crate::HashMap;
use std::cell::Cell;
pub struct Simulation<P: Protocol> {
time: SimTime,
p... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/sim/schedule.rs | fantoch/src/sim/schedule.rs | use crate::time::{SimTime, SysTime};
use std::cmp::{Ordering, Reverse};
use std::collections::BinaryHeap;
use std::time::Duration;
pub struct Schedule<A> {
queue: BinaryHeap<Reverse<QueueEntry<A>>>,
}
#[derive(PartialEq, Eq)]
struct QueueEntry<A> {
schedule_time: u64,
action: A,
}
impl<A: Eq> Ord for Que... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/sim/runner.rs | fantoch/src/sim/runner.rs | use crate::client::{Client, Workload};
use crate::command::{Command, CommandResult, DEFAULT_SHARD_ID};
use crate::config::Config;
use crate::executor::{ExecutionOrderMonitor, Executor, ExecutorMetrics};
use crate::id::{ClientId, ProcessId, ShardId};
use crate::metrics::Histogram;
use crate::planet::{Planet, Region};
us... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/sim/mod.rs | fantoch/src/sim/mod.rs | // This module contains the definition of `Simulation`.
pub mod simulation;
// This module contains the definition of `Schedule`.
pub mod schedule;
// This module contains the definition of `Runner`.
pub mod runner;
// Re-exports.
pub use runner::Runner;
pub use schedule::Schedule;
pub use simulation::Simulation;
| rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/metrics/mod.rs | fantoch/src/metrics/mod.rs | // This module contains the definition of `F64`.
pub mod float;
// This module contains the definition of `Histogram`.
mod histogram;
// Re-exports.
pub use float::F64;
pub use histogram::{Histogram, Stats};
use crate::HashMap;
use serde::{Deserialize, Serialize};
use std::fmt;
use std::hash::Hash;
#[derive(Clone, ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/metrics/float.rs | fantoch/src/metrics/float.rs | use serde::{Deserialize, Serialize};
use std::cmp::Ordering;
use std::fmt;
#[derive(PartialOrd, Deserialize, Serialize, Clone, Copy)]
pub struct F64(f64);
impl F64 {
pub fn new(x: f64) -> Self {
Self(x)
}
pub fn zero() -> Self {
Self::new(0.0)
}
pub fn nan() -> Self {
Sel... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/metrics/histogram.rs | fantoch/src/metrics/histogram.rs | use crate::metrics::F64;
use serde::{Deserialize, Serialize};
use std::cmp::Ordering;
use std::collections::BTreeMap;
use std::fmt;
pub enum Stats {
Mean,
COV, // coefficient of variation
MDTM, // mean distance to mean
}
// TODO maybe use https://docs.rs/hdrhistogram/7.0.0/hdrhistogram/
#[derive(Default,... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/executor/mod.rs | fantoch/src/executor/mod.rs | // This module contains the definition of `Pending`.
mod aggregate;
// This module contains the implementation of a basic executor that executes
// operations as soon as it receives them.
mod basic;
// This module contains the definition of `ExecutionOrderMonitor`.
mod monitor;
// Re-exports.
pub use aggregate::Aggr... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/executor/monitor.rs | fantoch/src/executor/monitor.rs | use crate::id::Rifl;
use crate::kvs::Key;
use crate::HashMap;
/// This structure can be used to monitor the order in which commands are
/// executed, per key, and then check that all processes have the same order
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ExecutionOrderMonitor {
order_per_key: HashMap<Key, ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/executor/basic.rs | fantoch/src/executor/basic.rs | use crate::config::Config;
use crate::executor::{
ExecutionOrderMonitor, Executor, ExecutorMetrics, ExecutorResult,
MessageKey,
};
use crate::id::{ProcessId, Rifl, ShardId};
use crate::kvs::{KVOp, KVStore, Key};
use crate::time::SysTime;
use serde::{Deserialize, Serialize};
use std::sync::Arc;
#[derive(Clone)]... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/executor/aggregate.rs | fantoch/src/executor/aggregate.rs | use crate::command::{Command, CommandResult, CommandResultBuilder};
use crate::executor::ExecutorResult;
use crate::id::{ProcessId, Rifl, ShardId};
use crate::trace;
use crate::HashMap;
/// Structure that tracks the progress of pending commands.
pub struct AggregatePending {
process_id: ProcessId,
shard_id: Sh... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/prelude.rs | fantoch/src/run/prelude.rs | use super::chan::{ChannelReceiver, ChannelSender};
use super::pool;
use crate::command::{Command, CommandResult};
use crate::executor::{Executor, ExecutorMetrics, ExecutorResult};
use crate::id::{ClientId, Dot, ProcessId, ShardId};
use crate::load_balance::*;
use crate::protocol::{
CommittedAndExecuted, MessageInde... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/chan.rs | fantoch/src/run/chan.rs | use crate::warn;
use color_eyre::Report;
use std::fmt::Debug;
use tokio::sync::mpsc::error::TrySendError;
use tokio::sync::mpsc::{self, Receiver, Sender};
#[derive(Debug)]
pub struct ChannelSender<M> {
name: Option<String>,
sender: Sender<M>,
}
#[derive(Debug)]
pub struct ChannelReceiver<M> {
receiver: Re... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/mod.rs | fantoch/src/run/mod.rs | // The architecture of this runner was thought in a way that allows all
/// protocols that implement the `Protocol` trait to achieve their maximum
/// throughput. Below we detail all key decisions.
///
/// We assume:
/// - C clients
/// - E executors
/// - P protocol processes
///
/// 1. When a client connects for the ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/pool.rs | fantoch/src/run/pool.rs | use crate::run::chan::{self, ChannelReceiver, ChannelSender};
use color_eyre::Report;
use std::fmt::Debug;
pub trait PoolIndex {
fn index(&self) -> Option<(usize, usize)>;
}
#[derive(Clone)]
pub struct ToPool<M> {
pool: Vec<ChannelSender<M>>,
}
impl<M> ToPool<M>
where
M: Clone + Debug + 'static,
{
//... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/rw/connection.rs | fantoch/src/run/rw/connection.rs | use super::Rw;
use std::net::IpAddr;
use std::ops::{Deref, DerefMut};
use tokio::net::TcpStream;
use tokio::time::Duration;
#[derive(Debug)]
pub struct Connection {
ip_addr: Option<IpAddr>,
delay: Option<Duration>,
rw: Rw<TcpStream>,
}
impl Connection {
pub fn new(
stream: TcpStream,
t... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/rw/mod.rs | fantoch/src/run/rw/mod.rs | // This module contains the definition of `Connection`.
mod connection;
// Re-exports.
pub use connection::Connection;
use crate::warn;
use bytes::{Bytes, BytesMut};
use color_eyre::eyre::{Report, WrapErr};
use futures::sink::{Sink, SinkExt};
use futures::stream::StreamExt;
use serde::de::DeserializeOwned;
use serde:... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/util.rs | fantoch/src/run/task/util.rs | use crate::id::ClientId;
use color_eyre::Report;
use serde::Serialize;
use tokio::time::{Duration, Instant};
pub fn deadline(delay: Duration) -> Instant {
Instant::now()
.checked_add(delay)
.expect("deadline should exist")
}
pub fn ids_repr(client_ids: &Vec<ClientId>) -> String {
client_ids
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/mod.rs | fantoch/src/run/task/mod.rs | mod util;
// This module contains server's side logic.
pub mod server;
// This module contains client's side logic.
pub mod client;
use crate::run::chan::{self, ChannelReceiver, ChannelSender};
use crate::run::rw::Connection;
use crate::{info, trace, warn};
use color_eyre::Report;
use std::fmt::Debug;
use std::futur... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/execution_logger.rs | fantoch/src/run/task/server/execution_logger.rs | use crate::protocol::Protocol;
use crate::run::prelude::*;
use crate::run::rw::Rw;
use crate::{info, trace, warn};
use tokio::fs::File;
use tokio::time::{self, Duration};
const EXECUTION_LOGGER_FLUSH_INTERVAL: Duration = Duration::from_secs(1); // flush every second
const EXECUTION_LOGGER_BUFFER_SIZE: usize = 8 * 1024... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/process.rs | fantoch/src/run/task/server/process.rs | use super::execution_logger;
use crate::command::Command;
use crate::id::{Dot, ProcessId, ShardId};
use crate::protocol::{Action, CommittedAndExecuted, Protocol};
use crate::run::prelude::*;
use crate::run::task;
use crate::time::RunTime;
use crate::HashMap;
use crate::{trace, warn};
use rand::Rng;
use std::fmt::Debug;... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/delay.rs | fantoch/src/run/task/server/delay.rs | use crate::run::chan::{ChannelReceiver, ChannelSender};
use crate::run::task;
use crate::warn;
use std::collections::VecDeque;
use tokio::time::{self, Duration, Instant};
pub async fn delay_task<M>(
mut from: ChannelReceiver<M>,
mut to: ChannelSender<M>,
delay: Duration,
) where
M: std::fmt::Debug + 's... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/client.rs | fantoch/src/run/task/server/client.rs | use crate::command::Command;
use crate::executor::{AggregatePending, ExecutorResult};
use crate::id::{AtomicDotGen, ClientId, ProcessId, ShardId};
use crate::run::chan;
use crate::run::prelude::*;
use crate::run::rw::Connection;
use crate::run::task;
use crate::{info, trace, warn};
use tokio::net::TcpListener;
pub fn ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/ping.rs | fantoch/src/run/task/server/ping.rs | use crate::id::{ProcessId, ShardId};
use crate::metrics::Histogram;
use crate::run::prelude::*;
use crate::run::task::chan::ChannelSender;
use crate::HashMap;
use crate::{info, trace, warn};
use std::net::IpAddr;
use tokio::time::{self, Duration};
const PING_SHOW_INTERVAL: u64 = 5000; // millis
const ITERATIONS_PER_PI... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/executor.rs | fantoch/src/run/task/server/executor.rs | use crate::config::Config;
use crate::executor::Executor;
use crate::id::{ClientId, ProcessId, ShardId};
use crate::protocol::Protocol;
use crate::run::prelude::*;
use crate::run::task;
use crate::time::RunTime;
use crate::HashMap;
use crate::{debug, trace, warn};
use std::sync::Arc;
use tokio::time;
/// Starts execut... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/mod.rs | fantoch/src/run/task/server/mod.rs | // This module contains executor's implementation.
pub mod executor;
// This module contains execution logger's implementation.
mod execution_logger;
// This module contains process's implementation.
pub mod process;
// This module contains client's implementation.
pub mod client;
// This module contains periodic's... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/periodic.rs | fantoch/src/run/task/server/periodic.rs | use crate::protocol::Protocol;
use crate::run::prelude::*;
use crate::{trace, warn};
use tokio::time::{self, Duration, Instant, Interval};
// TODO: check async-timer for <1ms intervals
// https://github.com/DoumanAsh/async-timer/
pub async fn periodic_task<P, R>(
events: Vec<(P::PeriodicEvent, Duration)>,
per... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/server/metrics_logger.rs | fantoch/src/run/task/server/metrics_logger.rs | use crate::executor::ExecutorMetrics;
use crate::protocol::ProtocolMetrics;
use crate::run::prelude::*;
use crate::run::task;
use crate::HashMap;
use crate::{info, trace, warn};
use serde::{Deserialize, Serialize};
use tokio::time::{self, Duration};
pub const METRICS_INTERVAL: Duration = Duration::from_secs(5); // not... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/client/pending.rs | fantoch/src/run/task/client/pending.rs | use crate::command::{Command, CommandResult};
use crate::hash_map::{Entry, HashMap};
use crate::id::Rifl;
use crate::trace;
struct Expected {
shard_count: usize,
total_key_count: usize,
}
pub struct ShardsPending {
pending: HashMap<Rifl, (Expected, Vec<CommandResult>)>,
rifl_to_batch_rifls: HashMap<Ri... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/client/batcher.rs | fantoch/src/run/task/client/batcher.rs | use super::batch::Batch;
use crate::command::Command;
use crate::id::ShardId;
use crate::run::chan::{ChannelReceiver, ChannelSender};
use crate::run::task;
use crate::warn;
use color_eyre::eyre::{eyre, Report};
use tokio::time::{self, Duration};
struct BatchingConfig {
batch_max_size: usize,
batch_max_delay: D... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/client/batch.rs | fantoch/src/run/task/client/batch.rs | use crate::command::Command;
use crate::id::{Rifl, ShardId};
use crate::HashMap;
use std::iter::FromIterator;
use tokio::time::Instant;
#[derive(Debug)]
pub struct Batch {
cmd: Command,
rifls: Vec<Rifl>,
deadline: Instant,
// mapping from shard id to the number of times it was selected as the
// ta... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/client/mod.rs | fantoch/src/run/task/client/mod.rs | // Implementation of the read-write task;
mod rw;
// Implementation of `ShardsPending`.
mod pending;
// Definition of `Batch`.
mod batch;
// Implementation of a batcher.
mod batcher;
// Implementation of an unbatcher.
mod unbatcher;
use crate::client::{Client, ClientData, Workload};
use crate::command::{Command, C... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/client/unbatcher.rs | fantoch/src/run/task/client/unbatcher.rs | use super::batch::Batch;
use super::pending::ShardsPending;
use crate::command::CommandResult;
use crate::id::{Rifl, ShardId};
use crate::run::chan::{ChannelReceiver, ChannelSender};
use crate::run::prelude::ClientToServer;
use crate::warn;
use crate::HashMap;
use color_eyre::eyre::{eyre, Report};
pub async fn unbatch... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/run/task/client/rw.rs | fantoch/src/run/task/client/rw.rs | use crate::command::CommandResult;
use crate::hash_map::HashMap;
use crate::id::{ClientId, ProcessId};
use crate::run::chan::{self, ChannelReceiver, ChannelSender};
use crate::run::prelude::*;
use crate::run::rw::Connection;
use crate::run::task;
use crate::{trace, warn};
pub fn start_client_rw_tasks(
client_ids: ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/client/pending.rs | fantoch/src/client/pending.rs | use crate::id::Rifl;
use crate::time::SysTime;
use crate::HashMap;
use std::time::Duration;
#[derive(Default)]
pub struct Pending {
/// mapping from Rifl to command start time (in micros)
pending: HashMap<Rifl, u64>,
}
impl Pending {
/// Create a new `Pending`
pub fn new() -> Self {
Default::d... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/client/workload.rs | fantoch/src/client/workload.rs | use crate::client::key_gen::{KeyGen, KeyGenState};
use crate::command::Command;
use crate::id::{RiflGen, ShardId};
use crate::kvs::{KVOp, Key, Value};
use crate::trace;
use crate::HashMap;
use rand::distributions::Alphanumeric;
use rand::Rng;
use serde::{Deserialize, Serialize};
use std::iter;
#[derive(Debug, Clone, C... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/client/mod.rs | fantoch/src/client/mod.rs | // This module contains the definition of `Workload`
pub mod workload;
// This module contains the definition of `KeyGenerator` and
// `KeyGeneratorState`.
pub mod key_gen;
// This module contains the definition of `Pending`
pub mod pending;
// This module contains the definition of `ClientData`
pub mod data;
// Re... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/client/key_gen.rs | fantoch/src/client/key_gen.rs | use crate::id::ClientId;
use crate::kvs::Key;
use rand::distributions::Distribution;
use rand::Rng;
use serde::{Deserialize, Serialize};
use zipf::ZipfDistribution;
pub const CONFLICT_COLOR: &str = "CONFLICT";
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
pub enum KeyGen {
ConflictPool {
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/client/data.rs | fantoch/src/client/data.rs | use crate::HashMap;
use serde::{Deserialize, Serialize};
use std::time::Duration;
#[derive(Debug, Default, Clone, PartialEq, Deserialize, Serialize)]
pub struct ClientData {
// raw values: we have "100%" precision as all values are stored
// - mapping from operation end time to all latencies registered at that... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/base.rs | fantoch/src/protocol/base.rs | use crate::command::Command;
use crate::config::Config;
use crate::id::{Dot, DotGen, ProcessId, ShardId};
use crate::protocol::{ProtocolMetrics, ProtocolMetricsKind};
use crate::trace;
use crate::{HashMap, HashSet};
use std::iter::FromIterator;
// a `BaseProcess` has all functionalities shared by Atlas, Tempo, ...
#[d... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/mod.rs | fantoch/src/protocol/mod.rs | // This module contains the implementation of data structured used to hold info
// about commands.
mod info;
// This module contains the definition of `BaseProcess`.
mod base;
// This module contains the definition of a basic replication protocol that
// waits for f + 1 acks before committing a command. It's for sure... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/basic.rs | fantoch/src/protocol/basic.rs | use crate::command::Command;
use crate::config::Config;
use crate::executor::{BasicExecutionInfo, BasicExecutor, Executor};
use crate::id::{Dot, ProcessId, ShardId};
use crate::protocol::{
Action, BaseProcess, Info, MessageIndex, Protocol, ProtocolMetrics,
SequentialCommandsInfo, VClockGCTrack,
};
use crate::si... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/gc/clock.rs | fantoch/src/protocol/gc/clock.rs | use crate::id::{Dot, ProcessId, ShardId};
use crate::trace;
use crate::util;
use crate::HashMap;
use threshold::{AEClock, AboveExSet, Clock, EventSet, MaxSet, VClock};
pub type VClockGCTrack = ClockGCTrack<MaxSet>;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct ClockGCTrack<E: EventSet> {
process_id: ProcessId... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/gc/mod.rs | fantoch/src/protocol/gc/mod.rs | mod basic;
mod clock;
// Re-exports.
pub use basic::BasicGCTrack;
pub use clock::{ClockGCTrack, VClockGCTrack};
| rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/gc/basic.rs | fantoch/src/protocol/gc/basic.rs | use crate::id::Dot;
use crate::HashMap;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct BasicGCTrack {
n: usize,
dot_to_count: HashMap<Dot, usize>,
}
impl BasicGCTrack {
pub fn new(n: usize) -> Self {
Self {
n,
dot_to_count: HashMap::new(),
}
}
/// Record... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/info/sequential.rs | fantoch/src/protocol/info/sequential.rs | use super::Info;
use crate::id::{Dot, ProcessId, ShardId};
use crate::util;
use crate::HashMap;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct SequentialCommandsInfo<I> {
process_id: ProcessId,
shard_id: ShardId,
n: usize,
f: usize,
fast_quorum_size: usize,
write_quorum_size: usize,
dot_... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/info/locked.rs | fantoch/src/protocol/info/locked.rs | use super::Info;
use crate::id::{Dot, ProcessId, ShardId};
use crate::shared::{SharedMap, SharedMapRef};
use parking_lot::Mutex;
use std::sync::Arc;
#[derive(Debug, Clone)]
pub struct LockedCommandsInfo<I: Info> {
process_id: ProcessId,
shard_id: ShardId,
n: usize,
f: usize,
fast_quorum_size: usize... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch/src/protocol/info/mod.rs | fantoch/src/protocol/info/mod.rs | // This module contains the implementation of `SequentialCommandsInfo`.
mod sequential;
// This module contains the implementation of `LockedCommandsInfo`.
mod locked;
// Re-exports.
pub use locked::LockedCommandsInfo;
pub use sequential::SequentialCommandsInfo;
use crate::id::{ProcessId, ShardId};
pub trait Info {... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/config.rs | fantoch_exp/src/config.rs | #[cfg(feature = "exp")]
use crate::args;
use crate::{FantochFeature, Protocol, RunMode, Testbed};
use fantoch::client::Workload;
use fantoch::config::Config;
use fantoch::id::{ProcessId, ShardId};
use fantoch::planet::{Planet, Region};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fmt;
us... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/lib.rs | fantoch_exp/src/lib.rs | #![deny(rust_2018_idioms)]
#[cfg(feature = "exp")]
pub mod bench;
#[cfg(feature = "exp")]
pub mod machine;
#[cfg(feature = "exp")]
pub mod progress;
#[cfg(feature = "exp")]
pub mod testbed;
#[cfg(feature = "exp")]
pub mod util;
pub mod config;
// Re-exports.
pub use config::{ExperimentConfig, PlacementFlat, ProcessT... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/bench.rs | fantoch_exp/src/bench.rs | use crate::config::{
self, ClientConfig, ExperimentConfig, ProcessType, ProtocolConfig,
RegionIndex,
};
use crate::machine::{Machine, Machines};
use crate::progress::TracingProgressBar;
use crate::{FantochFeature, Protocol, RunMode, SerializationFormat, Testbed};
use color_eyre::eyre::{self, WrapErr};
use color... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | true |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/util.rs | fantoch_exp/src/util.rs | #[macro_export]
macro_rules! args {
($($element:expr),*) => {{
#[allow(unused_mut)]
let mut vs = Vec::new();
$(vs.push($element.to_string());)*
vs
}};
($($element:expr,)*) => {{
$crate::args![$($element),*]
}};
}
| rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/progress.rs | fantoch_exp/src/progress.rs | #[derive(Clone)]
pub struct TracingProgressBar {
progress: indicatif::ProgressBar,
}
impl TracingProgressBar {
pub fn init(len: u64) -> Self {
// create progress bar style
let style = indicatif::ProgressStyle::default_bar().template(
"[{elapsed_precise}] {wide_bar:.green} {pos:>2}/{... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/machine.rs | fantoch_exp/src/machine.rs | use crate::args;
use crate::config::{Placement, RegionIndex};
use crate::{FantochFeature, ProcessType, RunMode, Testbed};
use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch::id::{ProcessId, ShardId};
use fantoch::planet::Region;
use std::collections::HashMap;
use std::future::Future;
use std::path::Path... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/bin/ping.rs | fantoch_exp/src/bin/ping.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch_exp::args;
use fantoch_exp::machine::Machine;
use rusoto_core::Region;
use std::time::Duration;
use tokio::fs::File;
use tokio::io::AsyncWriteExt;
use tracing::instrument;
use tracing_futures::Instrument;
use tsunami::providers::aws::LaunchMode;
use tsu... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/bin/main.rs | fantoch_exp/src/bin/main.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch::client::{KeyGen, Workload};
use fantoch::config::Config;
use fantoch::planet::Planet;
use fantoch_exp::bench::ExperimentTimeouts;
use fantoch_exp::machine::Machines;
use fantoch_exp::progress::TracingProgressBar;
use fantoch_exp::{FantochFeature, Proto... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | true |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/testbed/aws.rs | fantoch_exp/src/testbed/aws.rs | use super::Nickname;
use crate::machine::{Machine, Machines};
use crate::{FantochFeature, RunMode, Testbed};
use color_eyre::Report;
use std::collections::HashMap;
use std::time::Duration;
use tsunami::Tsunami;
pub async fn setup(
launcher: &mut tsunami::providers::aws::Launcher<
rusoto_credential::Default... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/testbed/local.rs | fantoch_exp/src/testbed/local.rs | use super::Nickname;
use crate::machine::{Machine, Machines};
use crate::{FantochFeature, RunMode, Testbed};
use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use std::collections::HashMap;
pub async fn setup<'a>(
regions: Vec<rusoto_core::Region>,
shard_count: usize,
branch: String,
run_mode: Run... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/testbed/mod.rs | fantoch_exp/src/testbed/mod.rs | pub mod aws;
pub mod baremetal;
pub mod local;
use crate::config::Placement;
use fantoch::id::{ProcessId, ShardId};
use fantoch::planet::Region;
use std::collections::HashMap;
const NICKNAME_SEP: &str = "_";
const SERVER_TAG: &str = "server";
const CLIENT_TAG: &str = "client";
pub struct Nickname {
pub region: R... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_exp/src/testbed/baremetal.rs | fantoch_exp/src/testbed/baremetal.rs | use super::Nickname;
use crate::machine::{Machine, Machines};
use crate::{FantochFeature, RunMode, Testbed};
use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use std::collections::HashMap;
const MACHINES: &str = "exp_files/machines";
const PRIVATE_KEY: &str = "~/.ssh/id_rsa";
pub fn create_launchers(
region... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/lib.rs | fantoch_plot/src/lib.rs | #![deny(rust_2018_idioms)]
mod db;
mod fmt;
#[cfg(feature = "pyo3")]
pub mod plot;
// Re-exports.
pub use db::{ExperimentData, LatencyPrecision, ResultsDB, Search};
pub use fmt::PlotFmt;
#[cfg(feature = "pyo3")]
use color_eyre::eyre::WrapErr;
#[cfg(feature = "pyo3")]
use color_eyre::Report;
#[cfg(feature = "pyo3")]
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | true |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/fmt.rs | fantoch_plot/src/fmt.rs | use fantoch::planet::Region;
use fantoch_exp::Protocol;
pub struct PlotFmt;
impl PlotFmt {
pub fn region_name(region: Region) -> &'static str {
match region.name().as_str() {
"ap-southeast-1" => "Singapore",
"ca-central-1" => "Canada",
"eu-west-1" => "Ireland",
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/axes.rs | fantoch_plot/src/plot/axes.rs | use crate::plot::axis::Axis;
use crate::plot::spines::Spines;
use crate::pytry;
use color_eyre::Report;
use pyo3::prelude::*;
use pyo3::types::{PyDict, PyFloat, PyTuple};
pub struct Axes<'a> {
ax: &'a PyAny,
pub xaxis: Axis<'a>,
pub yaxis: Axis<'a>,
pub spines: Spines<'a>,
}
impl<'a> Axes<'a> {
pu... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/pyplot.rs | fantoch_plot/src/plot/pyplot.rs | use crate::plot::axes::Axes;
use crate::plot::figure::Figure;
use crate::plot::table::Table;
use crate::pytry;
use color_eyre::Report;
use pyo3::prelude::*;
use pyo3::types::{PyDict, PyTuple};
use pyo3::PyNativeType;
pub struct PyPlot<'p> {
plt: &'p PyModule,
}
impl<'p> PyPlot<'p> {
pub fn new(py: Python<'p>)... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/table.rs | fantoch_plot/src/plot/table.rs | use crate::pytry;
use color_eyre::Report;
use pyo3::prelude::*;
// https://matplotlib.org/api/table_api.html#matplotlib.table.Table
pub struct Table<'a> {
table: &'a PyAny,
}
impl<'a> Table<'a> {
pub fn new(table: &'a PyAny) -> Self {
Self { table }
}
pub fn auto_set_font_size(&self, auto: bo... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/mod.rs | fantoch_plot/src/plot/mod.rs | pub mod axes;
pub mod axis;
pub mod figure;
pub mod pyplot;
pub mod spines;
pub mod table;
use color_eyre::Report;
use pyo3::prelude::*;
use pyo3::types::PyDict;
use pyo3::PyNativeType;
#[macro_export]
macro_rules! pytry {
($py:expr, $e:expr) => {{
match $e {
Ok(v) => v,
Err(e) => ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/axis.rs | fantoch_plot/src/plot/axis.rs | use crate::pytry;
use color_eyre::Report;
use pyo3::prelude::*;
// https://matplotlib.org/api/axis_api.html?highlight=axis#matplotlib.axis.Axis
pub struct Axis<'a> {
axis: &'a PyAny,
}
impl<'a> Axis<'a> {
pub fn new(axis: &'a PyAny) -> Self {
Self { axis }
}
pub fn set_visible(&self, visible:... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/figure.rs | fantoch_plot/src/plot/figure.rs | use crate::plot::axes::Axes;
use crate::pytry;
use color_eyre::Report;
use pyo3::prelude::*;
use pyo3::types::PyDict;
pub struct Figure<'a> {
fig: &'a PyAny,
}
impl<'a> Figure<'a> {
pub fn new(fig: &'a PyAny) -> Self {
Self { fig }
}
pub fn fig(&self) -> &PyAny {
self.fig
}
p... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/plot/spines.rs | fantoch_plot/src/plot/spines.rs | use crate::pytry;
use color_eyre::Report;
use pyo3::prelude::*;
use pyo3::types::PyDict;
use pyo3::PyNativeType;
pub struct Spines<'a> {
spines: &'a PyDict,
}
impl<'a> Spines<'a> {
pub fn new(spines: &'a PyDict) -> Self {
Self { spines }
}
// TODO provide instead methods `Spines::values` and ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/db/compress.rs | fantoch_plot/src/db/compress.rs | use crate::db::Dstat;
use fantoch::metrics::Histogram;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::fmt;
#[derive(Clone, Copy)]
pub enum LatencyPrecision {
Micros,
Millis,
}
impl LatencyPrecision {
pub fn name(&self) -> String {
match self {
Self::Micros... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/db/exp_data.rs | fantoch_plot/src/db/exp_data.rs | use crate::db::{Dstat, DstatCompress, MicrosHistogramCompress};
use fantoch::client::ClientData;
use fantoch::executor::ExecutorMetrics;
use fantoch::id::ProcessId;
use fantoch::metrics::Histogram;
use fantoch::planet::Region;
use fantoch::protocol::ProtocolMetrics;
use fantoch::run::task::server::metrics_logger::Proce... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/db/results_db.rs | fantoch_plot/src/db/results_db.rs | use crate::db::dstat::Dstat;
use crate::db::exp_data::ExperimentData;
use crate::Search;
use color_eyre::eyre::{self, WrapErr};
use color_eyre::Report;
use fantoch::client::ClientData;
use fantoch::planet::Region;
use fantoch::run::task::server::metrics_logger::ProcessMetrics;
use fantoch_exp::{ExperimentConfig, Proces... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/db/mod.rs | fantoch_plot/src/db/mod.rs | mod compress;
mod dstat;
mod exp_data;
mod results_db;
// Re-exports.
pub use compress::{DstatCompress, LatencyPrecision, MicrosHistogramCompress};
pub use dstat::Dstat;
pub use exp_data::ExperimentData;
pub use results_db::ResultsDB;
use fantoch::client::KeyGen;
use fantoch_exp::Protocol;
#[derive(Debug, Clone, Cop... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/db/dstat.rs | fantoch_plot/src/db/dstat.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use csv::ReaderBuilder;
use fantoch::metrics::Histogram;
use serde::{Deserialize, Deserializer};
use std::fs::File;
use std::io::{BufRead, BufReader};
#[derive(Default, Clone)]
pub struct Dstat {
pub cpu_usr: Histogram,
pub cpu_sys: Histogram,
pub cpu_... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/bin/migrate.rs | fantoch_plot/src/bin/migrate.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch::client::{KeyGen, Workload};
use fantoch::config::Config;
use fantoch::id::ProcessId;
use fantoch::planet::Planet;
use fantoch_exp::{
ExperimentConfig, FantochFeature, PlacementFlat, Protocol, RunMode,
SerializationFormat, Testbed,
};
use fantoc... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/bin/data_to_json.rs | fantoch_plot/src/bin/data_to_json.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch_plot::ResultsDB;
fn main() -> Result<(), Report> {
processed_data_to_json()?;
Ok(())
}
#[allow(dead_code)]
fn processed_data_to_json() -> Result<(), Report> {
let results_dir = "../results_fairness_and_tail_latency";
let output_dir = "... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/bin/main.rs | fantoch_plot/src/bin/main.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch::client::KeyGen;
use fantoch::planet::{Planet, Region};
use fantoch_exp::Protocol;
use fantoch_plot::{
ErrorBar, ExperimentData, HeatmapMetric, LatencyMetric, LatencyPrecision,
MetricsType, PlotFmt, ResultsDB, Search, Style, ThroughputYAxis,
};
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | true |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_plot/src/bin/plot_sim_output.rs | fantoch_plot/src/bin/plot_sim_output.rs | use color_eyre::eyre::WrapErr;
use color_eyre::Report;
use fantoch_plot::plot::pyplot::PyPlot;
use pyo3::prelude::*;
use std::collections::{BTreeMap, HashMap};
use std::fmt;
// file with the output of simulation
const SIM_OUTPUT: &str = "sim.out";
// folder where all plots will be stored
const PLOT_DIR: Option<&str> ... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_bote/src/lib.rs | fantoch_bote/src/lib.rs | #![deny(rust_2018_idioms)]
// This module contains the definition of `Protocol`, `ClientPlacement` and
// `ProtocolStats`.
pub mod protocol;
// This module contains the definition of `Search`.
pub mod search;
// Re-exports.
pub use search::{FTMetric, RankingParams, Search, SearchInput};
use fantoch::metrics::{Histo... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_bote/src/search.rs | fantoch_bote/src/search.rs | use crate::protocol::Protocol::{Atlas, EPaxos, FPaxos};
use crate::protocol::{ClientPlacement, ProtocolStats};
use crate::Bote;
use fantoch::elapsed;
use fantoch::metrics::{Histogram, Stats, F64};
use fantoch::planet::{Planet, Region};
use permutator::Combination;
use rayon::prelude::*;
use serde::{Deserialize, Seriali... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_bote/src/protocol.rs | fantoch_bote/src/protocol.rs | use fantoch::metrics::Histogram;
use serde::{Deserialize, Serialize};
use std::collections::BTreeMap;
pub enum Protocol {
FPaxos,
EPaxos,
Atlas,
}
impl Protocol {
pub fn short_name(&self) -> &str {
match self {
Protocol::FPaxos => "f",
Protocol::EPaxos => "e",
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_bote/src/main.rs | fantoch_bote/src/main.rs | use fantoch::planet::{Planet, Region};
use fantoch_bote::{FTMetric, RankingParams, Search, SearchInput};
fn main() {
distance_table();
search();
}
fn distance_table() {
let planet = Planet::new();
let regions = vec![
Region::new("asia-southeast1"),
Region::new("europe-west4"),
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_ps/src/lib.rs | fantoch_ps/src/lib.rs | #![deny(rust_2018_idioms)]
// This module contains the implementation of several `Executor`'s.
pub mod executor;
// This module contains the implementation of several `Protocol`'s.
pub mod protocol;
// This module contains some utilitary functions.
pub mod util;
| rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_ps/src/util.rs | fantoch_ps/src/util.rs | #[cfg(test)]
pub use tests::{gen_cmd, vclock};
#[cfg(test)]
mod tests {
use fantoch::command::Command;
use fantoch::id::ProcessId;
use fantoch::id::Rifl;
use fantoch::kvs::KVOp;
use rand::Rng;
use threshold::{Clock, EventSet, MaxSet, VClock};
#[cfg(test)]
/// Returns a new `VClock` set... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_ps/src/bin/simulation.rs | fantoch_ps/src/bin/simulation.rs | use fantoch::client::{KeyGen, Workload};
use fantoch::config::Config;
use fantoch::executor::{ExecutorMetrics, ExecutorMetricsKind};
use fantoch::id::ProcessId;
use fantoch::metrics::Histogram;
use fantoch::planet::{Planet, Region};
use fantoch::protocol::{Protocol, ProtocolMetrics, ProtocolMetricsKind};
use fantoch::s... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_ps/src/bin/graph_executor_replay.rs | fantoch_ps/src/bin/graph_executor_replay.rs | mod common;
use clap::{Arg, Command};
use fantoch::config::Config;
use fantoch::executor::Executor;
use fantoch::run::rw::Rw;
use fantoch::time::RunTime;
use fantoch_ps::executor::GraphExecutor;
use tokio::fs::File;
const BUFFER_SIZE: usize = 8 * 1024; // 8KB
#[tokio::main]
async fn main() {
let process_id = 1;
... | rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
vitorenesduarte/fantoch | https://github.com/vitorenesduarte/fantoch/blob/aea6e324fdce7802976cbafa88a516ed40609ce9/fantoch_ps/src/bin/atlas_locked.rs | fantoch_ps/src/bin/atlas_locked.rs | mod common;
use color_eyre::Report;
use fantoch_ps::protocol::AtlasLocked;
// TODO can we generate all the protocol binaries with a macro?
fn main() -> Result<(), Report> {
common::protocol::run::<AtlasLocked>()
}
| rust | Apache-2.0 | aea6e324fdce7802976cbafa88a516ed40609ce9 | 2026-01-04T20:24:46.253513Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.