Thinking about system composition

One of my guiding principles for Biff is to focus on current needs rather than worrying too much about accommodating future situations which may or may not ever be that relevant for myself or other Biff users. Especially since another Biff principle is that your project should be able to smoothly grow beyond Biff as your needs evolve. I think of Biff like those sticks that you tie saplings to—eventually the saplings grow into trees, and you don't need the sticks anymore.

While the individual components of Biff can all be replaced straightforwardly—even the database isn't that hard to swap out—the way those components are all wired together is more baked in. So it's worth some extra effort there to try to get things right.

Biff's method of system composition is quite minimalist. There is currently a biff/start-system function, but in the next release I'm thinking about deprecating it and moving all the component-wiring code directly into your project. So when you create a new app, the main namespace would start out looking something like the following.

You organize your application code into plugins (currently called "feature maps"—another thing I'm going to change in a future release):

(def plugin
  {:routes [["/app" {:get my-app}]
            ...]
   :tasks [...]
   ...})

;; Everything past this point is in e.g. the com.example
;; namespace, your app's main namespace.

(def plugins
  [app/plugin
   home/plugin
   worker/plugin
   ...])

Your plugins are packaged in a "system map" together with a few other bits and bobs—but the plugins are the most important thing here:

(def initial-system
  {:biff/plugins #'plugins
   :biff/stop '()
   ...})

Anything that's stateful or depends on the environment goes in a component. A component is a function that takes the system map as a parameter and returns a modified version. Shutdown functions are stored under the :biff/stop key. Many of the components take code from your plugins (like your HTTP routes) and connect them to the relevant stateful resources (like a Jetty webserver).

(def components
  [biff/use-config
   biff/use-secrets
   biff/use-xt
   biff/use-queues
   biff/use-tx-listener
   biff/use-jetty
   biff/use-chime
   biff/use-beholder])

Components also pass the system map to their children, e.g. the use-jetty component merges the system map with the request map. (Or at least, it will—currently this is done by a separate middleware.)

The start function takes your initial system map and threads it through your component functions, kind of like a Ring request getting passed through a series of middleware.

(defonce system (atom {}))

(defn start []
  (let [sys (reduce (fn [system component]
                      (component system))
                    initial-system
                    components)]
    (reset! system sys)
    ...))

If you modify something that happens during system startup, you can restart the system by calling (refresh) from your repl.

(defn refresh []
  (let [{:biff/keys [stop]} @system]
    (doseq [f stop]
      (log/info "stopping:" (str f))
      (f))
    (clojure.tools.namespace.repl/refresh :after `start)))

(Calling refresh in Biff is relatively rare; I've tried to e.g. use late binding so that as much as possible application code changes don't require system restarts.)

I like this approach because it has so little surface area. You can read the whole implementation (I mean, it's basically just the reduce function) and understand how it works. And it still allows me to define components in the Biff library so you don't have to write them all yourself.

It's also good enough, at least for the use-case which Biff prioritizes: solo developers. Having been using Biff for my own apps over the past few years, I'm pretty confident in predicting that this organizational approach will work fine for just about any app written by a single developer. (In my current 7-month-old app, I've added only a single component, which uses Subetha to receive emails. If you're curious, it has 23 plugins.)

However: I'd also like Biff to be suitable at least for small teams, even if that use-case takes a backseat to solo developers. And I don't really know how well this approach will work if you've got a team of people cranking out code all the time.

As I understand it, a few of the fundamental differences between this and Integrant/Component are:

  1. With Biff, you define the component start order manually, and dependencies are implicit. With Integrant, you define the dependencies, and the start order is inferred.
  2. With Integrant, components only receive the result of other components that they explicitly depend on. In Biff, components receive the whole system map, which includes anything that was added by any of the previous components.

I think #1 is fine: if you get to the point where you have so many components that the dependency relationships are confusing, you can switch to Integrant. I think it shouldn't be too difficult to go through your components and write out the dependencies explicitly.

But in regards to #2, I worry that the Biff style of passing the system map around everywhere will have a tendency to lead to spaghetti. The components' dependencies might not be terribly hard to sort out, but your application code's dependencies are another matter. It might not be so easy in such a case to retrofit Integrant onto your Biff app.

So that's what occupies some of my hammock time currently. I'd like to study some large codebases, like perhaps Metabase's, to get a better feel for things. The last large codebase I worked in was unfortunately not written in Clojure (it was Scala + TypeScript)—my own apps are mostly what I know when it comes to Clojure.

Anyway, I've been thinking about a couple potential mitigations. Not necessarily code changes for Biff itself, but at least recommendations about how to write your application code—like "don't pass the system map deeply down the call stack," or something. I should reread this ClojureVerse discussion.

And at the end of the day, it wouldn't hurt to at least make a proof-of-concept for Biff + Integrant and see how it feels. Even if I stick with Biff's component system, it would likely be an educational exercise.


Last week on the #biff Slack channel (you'll need to join Clojurians for these links to work):

  • A nifty snippet for getting Cider to call bb dev when you jack in.
  • When using websockets, you may need to get a fresh db instance manually.
  • Congrats to macrobartfest on the new job.
  • Notes about bb tasks: they're not by default acessible from your main project's repl, although you can change that if you really want to.
  • The authentication plugin originally hardcoded the :user/email attribute. Now there's a :biff.auth/get-user-id option. I haven't published an official release, but it's on master (tagged as v0.7.2). Thanks to m.warnock for the PR.
  • Passwords, or Biff's lack thereof.
  • potential pitfall if you copy and paste code from the tutorial's git repo instead of using the code on the website. I need to do some upgrades in the tutorial.
  • Production resource requirements + using managed services (including a helper fn I use for uploading stuff to/downloading stuff from S3).
  • Some jankiness around Biff's handling of the secrets.env file in dev.

Published by Jacob O'Bryant on 5 Mar 2023

Sign up for Biff: The Newsletter
Announcements, blog posts, et cetera et cetera.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.