Skip to content

Instantly share code, notes, and snippets.

View PierreZ's full-sized avatar
👨‍💻
Working from home

Pierre Zemb PierreZ

👨‍💻
Working from home
View GitHub Profile
Jun 25 08:54:33.153 DEBG [main] received a watcher event NoticeRemove(
"/etc/beamium/..2020_06_25_08_52_59.743331400/config.yaml",
)
Jun 25 08:54:33.154 INFO reload configuration
Jun 25 08:54:33.165 DEBG set signal to false from main
Jun 25 08:54:33.166 DEBG [main] waiting for handler to join
Jun 25 08:54:33.217 DEBG shutting down cmd::main
Jun 25 08:54:33.217 DEBG shutdown scraper's runtime, scraper: scraper1
Jun 25 08:54:33.218 DEBG shutdown router's runtime
Jun 25 08:54:33.219 DEBG shutdown metrics server's runtime
apiVersion: v1
kind: ConfigMap
metadata:
name: beamium-cm
data:
scrapers.yaml: |
scrapers:
# scraping itself for metrics
self:
url: http://127.0.0.1:9110/metrics
{
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
overriddenJDK = pkgs.jdk8; # Change this to the desired JDK version
MIT License
Copyright (c) 2023 Datadog, Inc.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
@PierreZ
PierreZ / buzzing-churning-crane.md
Last active March 10, 2026 13:49
FoundationDB Internal RPC Analysis: Idempotency, Retries, and Design Patterns

FoundationDB Internal RPC Analysis: Idempotency, Retries, and Design Patterns

Context

Deep analysis of FoundationDB's internal RPC architecture — not the external client API, but the inter-role communication primitives that make FDB's distributed transaction engine work. The goal is to extract design principles around idempotency and retry safety that can inform RPC design in other distributed systems.