SRCco.de

Naming Applications and Microservices

Posted:
../galleries/naming-applications-components/magic-baby.jpg

Naming is hard. Naming is communication. Going bananas with naming microservices? Probably something you will regret! This post proposes a few guidelines to follow when naming internal applications and components.

Developers seem to enjoy using clever, cute, funny names for their applications [1]. I see many tech companies using codenames for internal applications and microservices. For example, Airbnb goes bananas with "Banana":

Years ago there started a trend at @AirbnbEng to come up with clever cheeky names for services. Now it's gotten out of control. Exhibit A: the internal web app for viewing microservice docs is called "Banana". 🍌  What does it mean??

Twitter engineers seem to like bird names (no surprise):

We did this at Twitter. It got to the point where I had no idea what people were talking about anymore. Hummingbird, dodo, snowflake, Parrott, we're all real system names

Spotify seems to have a mixture of codenames ("Bieber", "horus", "hotdog") and meaningful system names ("charts-api", "userdata"). Slide from a talk given by the CTO in 2016:

Spotify system names

The Rockefeller Archive Center uses constellation-themed names for microservices ("aquarius", "fornax", "gemini"):

Rockefeller Archive Center microservices

Zalando also started to use "fun" team and application IDs when introducing microservices in 2015. Teams started to have naming schemes for their applications, e.g. "coastal shapes" or "characters from Agatha Christie's Poirot". Some Georgian names turned out to be successful Open Source projects:

Twitter: Our Georgian heritage at @ZalandoTech

The orange site has more suggestions for ridiculous names and namingschemes.com can be your inspiration, too. So if you want to go crazy with naming, by all means do, but please consider the consequences. Naming your microservices needs to be trivial, not cryptic:

How does this sound? I deployed “Leonardo” and it broke “Ernest”

VS

I deployed “shipments” and that caused the outage on “pick and pack” too.

Or do you want your meetings to sound like this?

Guidelines

If random "fun" names are not the way to go, how to name internal applications, components, and microservices? Here some proposed guidelines.

Application names…

  • … MUST NOT contain offensive terms

  • … MUST NOT include organization/team identifiers

  • … SHOULD describe the application's purpose

  • … SHOULD NOT consist solely of acronyms

  • … SHOULD NOT use broad/general names for local purposes

  • … SHOULD NOT be clever or rely on temporary concepts

  • … CAN represent a product branding (if established)

Names MUST NOT contain offensive terms

Avoid offensive words like "blacklist", "master", and "slave". Avoid violent names like "kill", "killer", and "war". Also avoid political terms like "brexit" and "putin". Avoid names which can sound offensive for your colleagues, e.g. "Den Den Mushi" are fictional snails, but "Mushi" sounds a lot like "Muschi" (pussy) in German. Other terminology can also be problematic. For example, imagine you work in a telecommunication company and name one of your services "big brother" — guess what happens if this name is leaked to the press?

Names MUST NOT include organization/team identifiers

Applications typically outlive their organization structure. Adding department/team identifiers to your application names will cause confusion and unnecessary renaming. This is especially problematic if your org/team names are codenames. For example, team "kingpins" has created an application "kingpins-user-frontend", what happens if the application is handed over to team "gravity"?

Microservices should be owned by exactly one engineering team, but they should not reflect the team's identity.

Names SHOULD describe the application's purpose

The application's name should describe its business purpose, i.e. why it exists in the first place. The application's purpose should not change, otherwise we need to introduce a new application with a different name. A microservice should have one responsibility. This should be reflected in its name.

Don't assume that others will have the same context as you and understand the name's meaning. Make sure to ask colleagues who are not familiar with your business domain to review your names.

Names SHOULD NOT consist solely of acronyms

Acronyms are sometimes a necessary evil, but avoid acronyms unless they are well established in your company. "CMS" (Content Management System) is a well established acronym. CLOTS, BUGR, and NIPL are probably not well-known. Avoid cryptic acronyms.

Names SHOULD NOT use broad/general names for local purposes

Large organizations tend to use similar entities in different domains, e.g. there is probably more than one "item", "order", and "user" entity in your company. Avoid using too general names like "item processor" or "user service" unless you are absolutely sure that your organization only has exactly one definition for "item" and "user".

Names SHOULD NOT be clever or rely on temporary concepts

I wholeheartedly agree with Austerity as a naming principle:

It can be tempting to use a bit of humor or a cultural reference in code to lighten the mood a bit, but doing this can violate many principles. For example, a joke name can reduce understandability of the underlying concept and reduce the name’s consistency and searchability. Colloquialisms (which are only understandable to certain audiences) and puns can cause similar issues. They may seem fun initially, but after dealing with them for years, that fun will turn into apathy and (more likely!) antipathy. When in doubt, choose names that are literal and dry.

Names CAN represent a product branding

Internal application names should not be cryptic codenames, but establishing a brand sometimes makes sense. Don't introduce a codename unless you are willing to invest into establishing a (product) brand, e.g. a well-recognized codename within the company or for promoting an Open Source project. Spotify released their developer portal "Backstage" which is now a recognized OSS project. Zalando has well-established codenames for central infrastructure components like Nakadi and Skipper. Almost every Zalando engineer knows what Nakadi and Skipper are.

Your local "raccoon" and "wingman" microservices don't need branding, their codenames just lead to confusion.

Summary

Naming is hard, but there is no shortcut for finding a good name. Selecting or inventing a naming scheme and assigning a random name to each application sounds like fun. Please don't prioritize this fun over the struggle of all your colleagues having to deal with these "fun" names. Involve colleagues from other departments to find a "good" name which expresses the application's purpose.

Stop proliferating meaningless "fun" codenames for software systems.

Further Reading

Microservices on YouTube