• How to Extract the Maximum Value From Logs: Good general advice and things to think about when coming up with a logging strategy. Logs have been very important to me in the systems I’ve been tasked with keeping healthy.
  • Tech Blog: Create Meaningful Logging: Another logging link this morning. Even with practical advice. :)
  • Surprising Scalability of Multitenancy: Have to think about this one more. Multi-tenancy brings system peak usage and the average closer together for better utilization. A system often has many different kinds of workloads: cron, synchronous (user requests), async (background jobs triggered by users or something else in the system), reporting functions, etc. Some are more expensive to process than others. If their arrival varies in time well enough (uncorrelated workloads) there’s a good chance you can share resources. (Cpu fairly readily, memory less so but still there are opportunities here!) Very cool read. :)
  • Honk activitypub implementation notes: Documented choices about what bits of the activitypub spec have been implemented. Part of the repository for a small ap server. Naming is unusual. :)