Git Product home page Git Product logo

Comments (1)

 avatar commented on May 23, 2024

Hi, and thanks for your interest in Component!

One of the goals of the original design is that any individual component should not be aware of any details about the surrounding system, including where it is located in the system map. To add that information, even as metadata, opens up the potential for system details to leak into the component.

On most of the applications I have worked on, I have found that logging components' start/stop does not provide much useful information. If the application starts successfully, then I know that all the components started successfully. If any one component fails, then the application will not start. Either way, it is sufficient to log that the entire system started successfully or not.

That said, it is possible to add the system key to every component without modifying the behavior of update-system. Something like this, called after constructing the system but before start, should work:

(defn add-system-keys-metadata [system]
  (reduce-kv (fn [sys k _]
               (update sys k vary-meta assoc ::system-key k))
             system
             system))

from component.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.