Decoding Software Architecture Of Spotify | TechAhead

Design Experience

Decoding Software Architecture Of Spotify: How Microservices Empowers Spotify

Ketan Varshneya

Ketan Varshneya

July 13, 2022   |   15256 Views

  • Twitter
  • Facebook
  • Linkedin
Decoding Software Architecture Of Spotify: How Microservices Empowers Spotify

The success and popularity of Spotify have stunned everyone - right from the music and entertainment industry to the technology and business world.

Spotify was launched to counter the rising menace of music piracy. It was estimated that 30-40% of revenues generated by the music industry were lost due to piracy, and artists who created original music failed to get fairly compensated for their art.

Understanding these problems, Daniel Ek and Martin Lorentzon from Sweden launched Spotify in 2006 and instantly became the world’s most popular music streaming service.

Microservices empowers Spotify

With more than 422 million active users and 182 million paid users, Spotify has topped the charts of the music streaming industry and is right now one of the most preferred and popular platforms for accessing all kinds of music, easily and seamlessly.

Spotify is available across 182 nations, hosts 82 million+ songs, and is available to users in both free and freemium mode, with revenues generated from advertisements, and paid subscriptions.

Spotify has an interesting revenue model, which is unlike the traditional music industry, where the artists are paid based on every song sold. With Spotify, record labels who own the rights to the music are paid upto 70% royalty of the revenues generated, and the artists get paid from these record labels directly.

In this blog, we will discuss the microservices software architecture behind Spotify, and understand how they are able to support billions of music streams, concurrently for millions of users.

Microservices empowers Spotify

Decoding Microservices Software Architecture Of Spotify

Software architecture is the blueprint and the roadmap, based on which the entire software is created, and every mobile/digital platform needs a software architecture to start with.

There are basically two types of software architecture that companies usually rely on: Monolithic Architecture and Microservices.

Spotify is based entirely on Microservices architecture, which has been confirmed and explained by Kevin Goldsmith, who was the former CTO at Spotify. But first, let us understand the concept of microservices architecture.

What is Microservices Architecture?

Microservices architecture is a style for developing applications, that allows the large part of the application to be segregated into smaller independent parts, with each delivering its own functionality. Thus, when the user prompts a request, a microservices-based application calls one or many internal microservices to deliver the response. A single service is developed to serve discrete functionality- this is one microservice. Similarly, many microservices are developed simultaneously, that solve user’s problems independently or by communicating with other services internally. This is a better way to develop and deploy heavy applications.

Where is the Microservices Architecture used?

Since the concept is to break down a complex application into smaller components, Microservices architecture finds use in the following areas:

  1. Website migration
    A complex website can simply be migrated to a cloud-based microservices platform instead of a monolithic platform. This will increase the efficiency of the website with a lot of other development benefits.
  2. Media content
    Embedding microservices architecture in images and video assets makes the storage more scalable and organized. This makes it quicker to serve the requested images directly to the web or mobile.
  3. Transactions and invoices
    If the payment processing and ordering is segregated as independent services, then payments can still be accepted even when the invoicing goes out of order.
  4. Data processing
    A microservices platform can be extremely efficient in data processing, because it facilitates multiple services acting independently on data organizing and mining.

Spotify is one amongst the first few businesses to begin championing the benefits of microservices architectures. It uses a microservices architecture to power its music streaming service. The architecture is composed of hundreds of services that are responsible for different aspects of the application. These services are developed, deployed, and scaled independently, allowing Spotify to quickly iterate and release new features. The microservices architecture allows Spotify to handle a large volume of traffic and have multiple teams working on different services simultaneously. Overall, the use of microservices has been instrumental in Spotify's success as a music streaming service.

API for User Personalization


API for User Personalization

Why Microservices Architecture At Spotify?

The microservices software architecture of Spotify is heavily dependent on services, and this is the reason Spotify microservices-based architecture was finalized, and it worked.

The backend of Spotify needs hundreds of services, most of them tiny and simple, but they need to be served in run-time, without any delay.

In order to serve these hundreds of services, Spotify's technical team deployed a microservices-based architecture, wherein it serves to address one single service-need at a time: Be it song retrieval, sharing recommendations, searching, or simply user verification (for free and paid model).

How Do Microservices Architecture Work & Respond in Spotify?

Services are usually written in Python and/or Java language, with few exceptions. And they communicate with one another via Hermes protocol, which Spotify has developed from scratch using ZeroMQ and Protobuf.

However, some older services created in the beginning still use HTTP and XML/JSON for communication.

For database and storage-based services, PostgreSQL & Cassandra are used by Spotify. Cassandra is preferred for content-based services such as searching the songs or retrieving metadata of the songs, in run-time.

There exists a highly specialized backend service called ‘accesspoint’, which is constantly in touch with various clients, for swift and precise communication. The protocol which enabled seamless communication between the clients and the ‘accesspoint’ has also been built by Spotify engineers, and hasn’t been made public.

Software infrastructure within Spotify is heavily dependent on Debian, while open-source software is preferred for various activities.

Cross-Site Communication


Cross-Site Communication

The Secret Of Swift Music Streaming On Spotify

Now, we have an overview of how services work and respond, and we have shared why Spotify Microservices-based software architecture has been deployed at Spotify.

Now, here is a secret about why Spotify is able to swiftly retrieve songs for the end-users, and why music streaming is so fast, and reliable.

Within the Microservices based architecture, there are hundreds of software developers working concurrently, who are managing different types of services and their communication.

Now, the secret is that each of these software developers is working in a closed territory, with specific functionalities and missions. Every microservice has just one responsibility and objective, and a majority of such microservices have their own private database with their own logic, and they cannot be intervened by other databases of other microservices.

This is the reason Spotify is so fast, and precise, and fulfills the end-user's needs so promptly.

Once a request has been placed for any specific task, the application responds swiftly, deploying different services across different machines, and having personalized and customized performance parameters, depending on the specific service being called.

Spotify Backend Model


Spotify backend model

Seamless Change Management Of Logic

Now, what if the software developer needs to change the logic of any feature?

There isn’t any issue of time lag or disruption of the entire application, because each microservice has its own logic, and implementing changes is very easy.

The specific service which is connected with the feature needs to be worked upon, the edits are made, and then only that service is tested, and then instantly deployed.

Hence, that service is now changed, logic altered, and the feature will now have new functionality. This service will start communicating with the application once the deployment is done, and there is absolutely no need for the entire application to be re-tested, and re-deployed.

Spotify backend model

This change management feature of microservices being used as the software architecture of Spotify is one of the strongest and most powerful capabilities, which makes Spotify fast and user-friendly.

Interestingly, the software architecture of Spotify has been developed in a way that all the possible clients of the application: mobile, desktop/laptops, and libspotify (Spotify’s embeddable library), all share a common codebase.

Using this common code-base, the developers can modify or enhance the client functionality and offer a unique user interface for the end users.

Since this common code-base is written in C++ language, changes and edits in the main user interface are also easy and seamless. The specific platform adoptions are written in platform-specific languages, for example, ObjC for iOS.

Benefits of Using Microservices in Software Development

Microservices software development is one of the popular architectures for software development, with many companies like Spotify leveraging its benefits. Following are some of the important benefits of using microservices in software development.

Scalability:  Microservices allow applications to scale independently based on their usage, making handling a large volume of traffic easier.

Flexibility:  Microservices software development enables developers to use different technologies and programming languages for each service, which can increase the flexibility of the application.

Resilience:  Since services are independent, failures in one service do not affect the overall application, which can increase the system's overall resilience.

Maintainability:  Microservices can make it easier to maintain and update the application over time, as you can make changes to individual services without affecting the rest of the application.

Agility:  Microservices allow for faster development and deployment of new features, as individual services can be developed and deployed independently.

Team productivity:&:nbsp; Software development microservices can improve team productivity by enabling small, focused teams to work independently on specific services without interfering with other teams.

Overall, microservices architecture can offer significant advantages in terms of scalability, flexibility, resilience, maintainability, agility, and team productivity, making it a popular approach for modern software development.

If you are looking for audio streaming app development, then our team at TechAhead can help you right away. Based on your specific requirements, we can deploy Spotify-inspired software architecture for your mobile app, loaded with powerful and scalable features.

Schedule an appointment with our Mobile App engineers right here.

Subscribe to TechAhead Newsletter
Get the latest tech & business
updates, trends & more
Loading
×
Subscribe to TechAhead Newsletter
Get the latest tech & business
updates, trends & more
Loading
back to top