X-Factor CNFs

VI. Processes

Execute the app as one or more stateless processes

The CNF is executed in the execution environment as one or more processes.

In the simplest case, the code is a stand-alone script, the execution environment is a developer’s local laptop with an installed language runtime, and the process is launched via the command line (for example, python my_script.py). On the other end of the spectrum, a production deploy of a sophisticated CNF may use many process types, instantiated into zero or more running processes.

X-factor processes are stateless and share-nothing. Any data that needs to persist must be stored in a stateful backing service, typically a database.

The memory space or filesystem of the process can be used as a brief, single-transaction cache. For example, downloading a large file, operating on it, and storing the results of the operation in the database. The X-factor CNF never assumes that anything cached in memory or on disk will be available on a future request or job – with many processes of each type running, chances are high that a future request will be served by a different process. Even when running only one process, a restart (triggered by code deploy, config change, or the execution environment relocating the process to a different physical location) will usually wipe out all local (e.g., memory and filesystem) state.

Asset packagers like django-assetpackager use the filesystem as a cache for compiled assets. A X-factor CNF prefers to do this compiling during the build stage. Asset packagers such as Jammit and the Rails asset pipeline can be configured to package assets during the build stage.

Some web systems rely on “sticky sessions” – that is, caching user session data in memory of the app’s process and expecting future requests from the same visitor to be routed to the same process. Sticky sessions are a violation of X-factor and should never be used or relied upon. Session state data is a good candidate for a datastore that offers time-expiration, such as Memcached or Redis.

TODO

  • While web apps may not rely on sticky sessions, it is likely that sticky wirings will exist. We must provide guidance on what to do when such a connection fails. My current recommendation is to provide metadata about how sticky the wirings should be. E.g. should a failure:

  • Transparently reconnect to another CNF of the same type (stateless CNFs);

  • Notify the CNF of a failure so that it can deal with the failure (stateful CNFs);

  • Shutdown the entire chain (fragile stateful chains);

  • Or shutdown and reinstantiate multiple parts of the chain

Not all of these can be solved by the CNF. Instead, constraints may be added to the CNF’s metadata to provide hints to the orchestrator about how to handle failures and pass context about the failure up and down the chain.