Starting to understand Multi-tenancy

If you already know or work with multi-tenancy, Pay It Forward (read through to understand). If you don’t know, maybe you are already working with it and just don’t know it yet (just like me in the near past).

TL;DR

The multi-tenancy architecture con…

If you already know or work with multi-tenancy, Pay It Forward (read through to understand). If you don’t know, maybe you are already working with it and just don’t know it yet (just like me in the near past).

TL;DR

The multi-tenancy architecture consists of working with applications that will have multiple users sharing the same database, however, having access only to the data that belongs to them.

It is widely adopted in software as a service (SaaS) applications, as many customers often use it. These same becoming the tenants of this application.

Sometimes some software uses architecture to attack deeper situations, as it was in our case.

SCENARIO
We are developing an application where our tenant will work with more than one user to access the platform. However, in the beginning, it was designed for just one login to control it. That is, our tenant would have more residents with him using the same rent.

Then, we decided to stop (we were already starting development on the front end), go back, and reshape our entire database from the beginning.

HOW TO IMPLEMENT?

Before we get there, let’s look at some ways in which we can apply the architecture in various models to what is being used in RBAF Manager.

  • One database for each customer
    When accessing the software, it is responsible for directing the application to the cluster responsible for that user’s collections.

  • One collection for each customer
    Each user would have a collection of their documents. Something that becomes unworkable for an application that is just starting for several reasons. One key is the cost of maintaining something at this level in the future with a very large user base.

  • One database for all tenants
    Preferred by many companies is that it is easy to implement at the beginning of development (it is understood that the model concept is easy), distributing tenants in only one bank becomes the most common path.

And that’s why we decided to work. Our admin user may own other users and these users need to be “tied” to the company they belong to.

IMPLEMENTATION

It was then decided that our tenant would be called Team since the platform is geared towards sports teams and to control access to the data of this tenant would require that each model of our system had its id.

  • Our basic tenant:

  • The other models followed the pattern below made for Player

The id of the team is referenced in the model and this becomes its owner.

HOW DO I KNOW THE USER IS LOGGED AND WHICH TENANT BELONGS TO?

Using GraphQL we can work with only one endpoint for all requests. This way, when a call is placed on it, we check if the Authorization header is present:

const { user } = await getUser(req.header.authorization);

You can function called getUser passing the token created at login.

Passing through it, the token is decoded and we now have access to this user ID.

With the id we consult the User collection and from it, we can access the tenant that he is part of. In this case, the team he belongs to. The team was added at the time of creation, following the same model as the player collection.

As soon as the user is returned, it is set in the context of our GraphQL API (line 7).

And just pass it as a parameter in the resolution of a query or mutation, to have access to only that user’s information.

An example is a query me, which is used as a form of authentication to find out if there are any users logged in and authorized to access our API data.

Pay It Forward
GraphQL combined with MongoDB is a really powerful stack and starting to use it has allowed us to build some really cool stuff and it’s just the beginning.

With that, the idea of ​​this text is to share a little of what we are building / learning and to receive feedbacks whatever it may be: improvements, corrections, new implementations, etc.

This idea was fueled by the message of the movie: Pay It Forward. In it, Trevor, who is in the seventh grade tries to get a great message across the film about a theory that is based on:

  • When you are helped by one person, you must make up for it by helping three other people. Thus creating a Chain of Good.

This is our current, sharing, learning, evolving with the community. Combined with one of our principles, How to Learning in Public.


Print Share Comment Cite Upload Translate
APA
Danilo Assis | Sciencx (2024-03-28T20:05:45+00:00) » Starting to understand Multi-tenancy. Retrieved from https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/.
MLA
" » Starting to understand Multi-tenancy." Danilo Assis | Sciencx - Monday May 31, 2021, https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/
HARVARD
Danilo Assis | Sciencx Monday May 31, 2021 » Starting to understand Multi-tenancy., viewed 2024-03-28T20:05:45+00:00,<https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/>
VANCOUVER
Danilo Assis | Sciencx - » Starting to understand Multi-tenancy. [Internet]. [Accessed 2024-03-28T20:05:45+00:00]. Available from: https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/
CHICAGO
" » Starting to understand Multi-tenancy." Danilo Assis | Sciencx - Accessed 2024-03-28T20:05:45+00:00. https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/
IEEE
" » Starting to understand Multi-tenancy." Danilo Assis | Sciencx [Online]. Available: https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/. [Accessed: 2024-03-28T20:05:45+00:00]
rf:citation
» Starting to understand Multi-tenancy | Danilo Assis | Sciencx | https://www.scien.cx/2021/05/31/starting-to-understand-multi-tenancy/ | 2024-03-28T20:05:45+00:00
https://github.com/addpipe/simple-recorderjs-demo