Тёмный

Multitenancy in Laravel: Migrations, Testing, and switching tenants 

Mohamed Said
Подписаться 8 тыс.
Просмотров 55 тыс.
50% 1

In this video, we discuss how we can achieve multitenancy in Laravel using the database-per-tenant approach. We cover:
- Managing multiple DB connections
- Migrating & seeding tenants & admin databases
- Running tests against tenant & admin databases
- Connecting to the correct tenant on requests/jobs
Here's a link to the example application:
github.com/themsaid/multitena...
Some packages that provide multitenancy:
tenancyforlaravel.com/
tenancy.dev/
github.com/romegasoftware/Mul...
Tom Schlick's Talk at Laracon US 207:
multitenantlaravel.com/

Наука

Опубликовано:

 

26 апр 2020

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 137   
@bernardonigbinde
@bernardonigbinde 3 года назад
Thank you so much! This is the most important Laravel video I’ve ever watched.
@juhavehnia7862
@juhavehnia7862 2 года назад
Great video! There aren't too many great videos about multi-tenancy and how to build one from scratch. I would love to see part two that looks at making rest of the Laravel tenant specific like you mention the console commands.
@narayanramchandani106
@narayanramchandani106 4 года назад
You Sir, are a gentleman and a scholar - thank you for posting this very helpful video!
@themsaid
@themsaid 4 года назад
You are very welcome :)
@kevinbatdorf
@kevinbatdorf 4 года назад
Great video. Great explanation. And very complete. Thanks for including the testing too.
@themsaid
@themsaid 4 года назад
Glad you think so :)
@ryangjchandler
@ryangjchandler 4 года назад
Great video Mohamed! All very well put, it will definitely help to ease the overcomplicated approaches that people are using.
@themsaid
@themsaid 4 года назад
Glad you found it useful :)
@alemran7480
@alemran7480 3 года назад
Thank you so much for the video. So useful for me. I am developing a SAAS application.
@konstantinkrumov8726
@konstantinkrumov8726 7 месяцев назад
Amazing video 🙌🏻🙌🏻🙌🏻. Thank you so much !!! Really clear and useful. There is so much to learn from here. All the different functions and config structures. Very well explained and demoed 🙏🏻🙏🏻🙏🏻
@jonashansen2512
@jonashansen2512 4 года назад
Thanks for keeping things simple :)
@MrEduarguzher
@MrEduarguzher 4 года назад
Awesome!! Very nice approach
@eoina
@eoina 4 года назад
Excellent video! So informative!
@themsaid
@themsaid 4 года назад
Glad you found it useful :)
@rodolfo-w3
@rodolfo-w3 2 года назад
Thank you so much for your video, I needed to learn about this, I really appreciate your dedication. Hug from Brazil
@OsamaQarem
@OsamaQarem 4 года назад
I don't do backend or even PHP, I just enjoy learning from your videos
@themsaid
@themsaid 4 года назад
Glad you do :)
@TareqHasan
@TareqHasan 4 года назад
Thank you Said for talking about Multinenancy. Would love more videos from you on scaling Laravel.
@themsaid
@themsaid 4 года назад
Glad you liked it :) I'm sure I'll cover that at some point.
@landiman
@landiman 4 года назад
@@themsaid Please! Don't know how to thank you for this. Vapor is a solution for scalling only if tenancy is easy to achive, right?. Can't do it with the current docs...
@kyjan
@kyjan 4 года назад
One approach I took is to use table prefixes for tenants. This saved me some provisioning work when it comes to creating new databases while onboarding a new tenant.
@themsaid
@themsaid 4 года назад
That's an interesting approach. It's not common though no sure why :)
@belalsalas7266
@belalsalas7266 3 года назад
Great video, Thank you Mohamed!
@kedotdev
@kedotdev 4 года назад
I had some difficulties running the worker. In config/queue.php I found 'database' => [ 'driver' => 'database', 'table' => 'jobs', 'queue' => 'default', 'retry_after' => 90, ], and added: 'connection' => 'landlord', Now everything is going into a central queue instead of independent tenant queues, and I can process all items in the queue via `php artisan queue:work --tries=1` -- besides that, everything was really straight forward to port over. Thanks again!
@ahmedhdeawy
@ahmedhdeawy 4 года назад
Very thanks, I learning from your videos a lot
@themsaid
@themsaid 4 года назад
Glad you are :)
@ahmedkandil505
@ahmedkandil505 4 года назад
Very helpful Waiting for more videos 💓
@nguyenvuuc3758
@nguyenvuuc3758 10 месяцев назад
you saved my life! thanks a lot for this tutorial
@andiputra6377
@andiputra6377 3 года назад
thanks a lot, you save my days, love it
@Khalyomede
@Khalyomede 2 года назад
Super interesting thanks for this one!
@YGNCode
@YGNCode 4 года назад
Very helpful. Thanks Mohamed
@vic_casanas
@vic_casanas 4 года назад
wow, great video man! thanks you explained vey well
@themsaid
@themsaid 4 года назад
Glad it helped!
@salmankashfy
@salmankashfy 2 года назад
Thank you so much bro. You saved a life.
@kingshark8848
@kingshark8848 4 года назад
This is my urgent need!! Thanks
@themsaid
@themsaid 4 года назад
Happy it helped :)
@MehdiAroui92
@MehdiAroui92 4 года назад
Great video mohammed, thanks
@JacobChenn
@JacobChenn 3 года назад
Great video! Thank you
@ladenbin
@ladenbin 3 года назад
bro youre insane thankyou so much
@sohelmia1999
@sohelmia1999 4 года назад
Thanks for this video.
@anasfarih
@anasfarih 4 года назад
Great tuto Thank's for explanation
@themsaid
@themsaid 4 года назад
Glad it was helpful!
@NathanBudd
@NathanBudd 4 года назад
Wow! This is the best explaination I've seen of this! The scenario I've come accross is that all users login at the same url, with the users table in the Landlord database. The user can only belong to one tenant, and so has a tenant_id on the user.
@themsaid
@themsaid 4 года назад
Interesting! So the users table is in Landlord connection but each tenant on a separate database?
@andjsch
@andjsch 4 года назад
If the login uses emails, the domain could be retrieved from that one as well.
@NathanBudd
@NathanBudd 4 года назад
Mohamed Said yes. They don't have different domains or subdomains.
@batsmanist
@batsmanist 22 дня назад
Thanks for this.
@taslimsuman
@taslimsuman 4 года назад
Going over the head, need to watch again and again
@mubafaw
@mubafaw 5 месяцев назад
Many thanks 😊👍
@realtorview5024
@realtorview5024 4 года назад
Awesome video bro
@stefanosgiannakis7151
@stefanosgiannakis7151 2 года назад
Great content 👍
@ajit080260
@ajit080260 4 года назад
Thanks a lot for sharing this right on time :) this answer lots of queries and gives better clarity on implementation. I would love to see more of such videos. Wish audio was bit smooth !
@tarcisiobfilho
@tarcisiobfilho 4 года назад
Mohamed Said, Great video thanks
@queopiusa.santos8262
@queopiusa.santos8262 2 года назад
Excellent video 👋🏽, I would like to know how to create the multi database with docker (sail). Thanks for the dedication!
@heshamabdallah8576
@heshamabdallah8576 4 года назад
well done bro!
@projectbased
@projectbased 3 года назад
Hi Muhammad, Thanks for putting this together. Nice Work. I have question from the forum. I never developed Saas with multi tenancy before. Should we start this setup from the start of a project or after making our full application for single tenant the we can add these pieces to make it Multitenant? I have an application for one School for example can i turn it now to Multi Schools with unique subdomain?
@kennedymwenda3357
@kennedymwenda3357 4 года назад
Seems we think alike,used almost the same approach but tenant manager is a separate project since it includes the product website. I Use middleware to switch tenants.
@themsaid
@themsaid 4 года назад
Putting the admin in a separate app is a common approach yes.
@guillzf
@guillzf 4 года назад
would be great if you make a complete course laravel - tenant from scratch Thank you
@matejsvajger7585
@matejsvajger7585 4 года назад
Thanks Said! Great video! It's hard to find information on setting up multi database tenancy with laravel. This was a welcome adddition. I'm still missing what to do with Redis and Filesystem in that case. Is there a simple way for prefixing those without extending the existing laravel drivers?
@BenClaar
@BenClaar 4 года назад
For Redis, we just edit `/config/database.php`, and set the `database.redis.default.database` config option to a dynamic `$tenantRedisDb` variable. This separates each tenant's redis database. For the filesystem, the easiest method is to either use a separate folder or S3 bucket per tenant (setup in /config/filesystems.php), or have a subfolder-per-tenant that you consistently use.
@matejsvajger7585
@matejsvajger7585 4 года назад
@@BenClaar Yes, that's clear to use subfolders, but how to prefix them automatically, so you don't need to worry about it in the codebase, for when for example you're resolving the filesystem from the container? For redis, I meant when using it as a Cache driver, wouldn't info bleed through to other tenants without some additional prefix? Sorry for not beeing clear.
@andreaverrecchia3907
@andreaverrecchia3907 3 года назад
How i set dynamically configuration for every tenant?
@khageshoffice2081
@khageshoffice2081 4 года назад
Thanks for sharing your effort. I have followed your instruction even tried your repository but I am getting 404 error on homepage when I run php artisan serve. Please anyone help. Thank you
@alexios4392
@alexios4392 4 года назад
Can you check in code which tenant is used currently? For custom logic for each tenant?
@mrcombal
@mrcombal 4 года назад
Thank you for the huge efforts you put to make development using Laravel much more easy and fun process. I have a question here: what do you mean by having to make a database per tenant? Can you please share some scenarios where using a database per tenant would be a better option? Thanks again Mohammed
@themsaid
@themsaid 4 года назад
He Wessam, Glad it helps :) I wrote my thoughts on this in a recent blog post, you can find it here: divinglaravel.com/multi-tenancy-in-laravel
@kedotdev
@kedotdev 4 года назад
@Mohamed, You mentioned you prefer a tenant structure as tablename_tenantKey rather than an individual database for each tenant. Can we discuss why? I've been learning towards migrating my tenants into their own database, but I'm not sure if I'm ready to make the jump yet. I'll need to figure out a new solution on database backups, etc. I'm also feeling like Postgres will be easier to scale as compared to MYSQL. Digital Ocean has much more support for Postgres in regards to real-time backups, failover, etc. What do you think? Where can we go from here? I'd love some more content! Thank you.
@themsaid
@themsaid 4 года назад
I wrote more on single vs. multi database approaches here divinglaravel.com/multi-tenancy-in-laravel Check it out and let me know if that answers some of your questions
@manishpanchal8185
@manishpanchal8185 3 месяца назад
Hello Sir! Thank you so much! It's too easy to convert an existing app with this. But how can we manage it in a single domain? I don't want to add domains like you explain.
@krishangopal2338
@krishangopal2338 3 года назад
can you please point me to show we will be running scheduled jobs on all tenants?
@amolcharpe7302
@amolcharpe7302 3 года назад
Can you or someone please share more info on how to setup and run the application you have shared on github?
@ghulammujtaba3191
@ghulammujtaba3191 Год назад
Great video. Can we run it on localhost server? If can then how to run it?
@Ramikelesli
@Ramikelesli 3 года назад
if I have complete project done and I want use multi tenancy using subdomain to switch db what the best approach
@ahmadmayahi
@ahmadmayahi 4 года назад
Salam Mohammad, Changing the database connection using the `config` helper works like a charm, so, I'm wondering what is the purpose of using "DB::reconnect" and "Schema::connection", though?
@themsaid
@themsaid 4 года назад
Because the connection is cached in Laravel so we need to purge the connection and re-connect with the new configuration.
@jainsiddharth21
@jainsiddharth21 Месяц назад
Hi, Great tutorial. I've used Tenancy with Multi Tenant & single DB. I need a functionality to ghost login my admin as a tenant user. Could you help me out with that please, if possible.
@amolcharpe7302
@amolcharpe7302 3 года назад
I want to create a multitenant application where a new Database should be created when a user is registered, can you please share more details in the repository.
@godwindaniel845
@godwindaniel845 2 года назад
Hello, Great video. my question is around context switching.. imagine switching db at a very high rate. would this impact performance ?
@KashifAmin-AskAmin
@KashifAmin-AskAmin 11 месяцев назад
i have also this question , will handle high traffic
@SethSetiadha
@SethSetiadha 2 года назад
Hi, do you have tips how to maintain for multiple laravel projets that share the base codes but each project has some little customizations, so that when someone update the base codes the other projects will get this updates too?
@pratikpawar05
@pratikpawar05 9 месяцев назад
Hi, did you get the solution for this?
@305020158
@305020158 Год назад
Each customer requires different customisation to the application, we can ofcourse provide shared db and compute, but , how do i have different application versions for different customers.? Eg : one customer wants normal calculator, one customer wants, scientific calculator, one more customer wants a music player while performing calculations, and one more customer wants voice based calculator
@pasanmilinda3132
@pasanmilinda3132 3 года назад
How to declare tenant api routes?can you give me a example please
@krishangopal2338
@krishangopal2338 3 года назад
No doubt it solves the problem but it leaves me to think about how it will run scheduled jobs in all tenants?
@arun8342
@arun8342 4 года назад
What is the recommended way to run a specific business logic and migration for one tenant?
@gustavovasquezveliz7046
@gustavovasquezveliz7046 4 года назад
maybe in that case you will need a package, like hyn/tenancy
@mortezarajabi9676
@mortezarajabi9676 4 года назад
Thanks Mohamed, I did it before, but not as clean as you. How can we have horizon on multi-database approach? To see which job is for which tenant?
@themsaid
@themsaid 4 года назад
You can add a tag to jobs that contains the tenant ID so you can figure which tenant a job belongs to.
@themsaid
@themsaid 4 года назад
Or you can see that in the job payload if you add it to the payload like in the video.
@kennedyosaze1184
@kennedyosaze1184 4 года назад
Great work Mohamed. Just have one question. Did you create all the databases (for the tenants) manually before you run the "tenants:migrate" command or it was generated by the same command.
@themsaid
@themsaid 4 года назад
I created these manually yes. But you might want to automate that if you allow tenants to sign up to your app.
@ajayinurudeen2269
@ajayinurudeen2269 4 года назад
@@themsaid Any suggestion on how this can be achieved?
@sstchutch
@sstchutch 4 года назад
Interested in your approach to do this automatically as well. I created an event that is fired on sign up.
@delamberty
@delamberty 3 года назад
Thank you for the video, is this compatible witih Laravel 8?
@themsaid
@themsaid 3 года назад
Yup
@cali4484
@cali4484 3 года назад
it took me 1:35 second to hit the like button 😅
@intolap9371
@intolap9371 3 года назад
I followed each and every step and could reach the end quite smoothly, very detailed demonstration. But when I refresh the front end it gets me 404 error laravel.intolap.com/romegasoftware/. Please ignore the directory name. Any relevance?
@SouravTah
@SouravTah 3 года назад
How do you add not equal to sign in 7:43 of this video?
@sirius8ly
@sirius8ly 2 года назад
!=
@sirius8ly
@sirius8ly 2 года назад
Great vid. Can you tell me why I might be getting this error. Illuminate\Database\QueryException SQLSTATE[HY000] [1049] Unknown database 'laravel' (SQL: select * from information_schema.tables where table_schema = laravel and table_name = migrations and table_type = 'BASE TABLE') I see in the db tenants table database laravel and paravel so I don't know why it's complaining. thanks
@sirius8ly
@sirius8ly 2 года назад
Here I realized that you need to manually create those two database laravel and paravel for this to work.
@peterkimani2817
@peterkimani2817 2 года назад
Adding "DB::statement("CREATE DATABASE IF NOT EXISTS $this->database")" in the Tenant.php file inside the configure() function just before the config array worked for me.
@ashok_bishnoi
@ashok_bishnoi 4 года назад
What if all tenant migrations are stored in Migrations/Tenant folder, in this case how migrations will work? I tried and command just ignored the path and migrated all tables to the main connection.
@themsaid
@themsaid 4 года назад
What command did you run?
@ashok_bishnoi
@ashok_bishnoi 4 года назад
tenants:migrate command and passed client id as argument, and inside command class after checking if seed argument supplied or not, I added one option of path and value of this path was 'migrations/client' but at the end nothing happened in client's database, instead all tables dropped and migrated back in main database.
@ashok_bishnoi
@ashok_bishnoi 4 года назад
@@themsaid gist.github.com/kingashok29/b0450269840f2ff404810edc18118a30
@themsaid
@themsaid 4 года назад
@@ashok_bishnoi You need to pass the absolute path for the migrations.
@ashok_bishnoi
@ashok_bishnoi 4 года назад
@@themsaid Not working even after providing absolute part --path=database/migrations/client
@ahmmedafzal940
@ahmmedafzal940 4 года назад
First of all i would like to appreciate your effort Mohamed Said. Let me tell u, i am getting error Symfony\Component\Debug\Exception\FatalThrowableError : syntax error, unexpected '=>' (T_DOUBLE_ARROW), expecting ')' at D:\xampp\htdocs\multi_tenancy\app\Console\Commands\TenantsMigrateCommand.php:31 ); } else { Tenant::all()->each( fn($tenant) => $this->migrate($tenant) ); } }
@DanielGamboaStewart
@DanielGamboaStewart 3 года назад
Excelent video.... I am having some problems with Laravel 8 and running my ExampleTest.php i am getting an undefined factory() error. Has anyone run into this problem? Tests\Feature\ExampleTest::itReturnsCurrentTenantAndListOfItsUsers Error: Call to undefined function Tests\Feature\factory()
@renwar
@renwar 2 года назад
In Laravel 8, factory() helper is removed. However I am facing another problem which is PHPUnit\Framework\InvalidArgumentException: Argument #2 of PHPUnit\Framework\Assert::assertCount() must be a countable or iterable and this is the code I get the error from "$response->assertJsonCount(4, 'users');"
@renwar
@renwar 2 года назад
I have just fixed my issue. It was from the route, make sure to use \App\Models\User instead \App\User
@DanielGamboaStewart
@DanielGamboaStewart 2 года назад
@@renwar what was factory replaced with? in any case i can take a look at your problem over the weekend. I'll reply if i am able to reproduce and fix your problem.
@sodeepnext
@sodeepnext 2 года назад
شكرا محمد في ممكن شروحات بالعربية من فضلك
@mokhosh
@mokhosh 4 года назад
You forgot your Screencast TODOs man, that font size...
@themsaid
@themsaid 4 года назад
I made the checklist because I forgot the font size in this video :)
@mokhosh
@mokhosh 4 года назад
@@themsaid Oh, right. Awesome work man. Keep it up.
@djoudi5
@djoudi5 4 года назад
Not Found :github.com/themsaid/multitenancy-example
@themsaid
@themsaid 4 года назад
Fixed that
@pedroarmandotafurgarcia
@pedroarmandotafurgarcia 4 года назад
excelente vídeo;yo lo hice con múltiples schemas misma base de datos postgresql guiándome del articulo que escribiste divinglaravel.com/understanding-how-laravel-configures-database-connections
@atoz4541
@atoz4541 3 года назад
multi tenancy spatie route slugs problem - Route::domain('{tenant}.localhost')->middleware('tenant')->group(function(){ Route::prefix('owner')->middleware(['auth', 'owner'])->group(function () { Route::get('/Entries/edit/{id}',function($id){ echo $id; }); }); }); output gives tenant name
@zubair.mohsin
@zubair.mohsin 4 года назад
Repo is still private I guess.
@themsaid
@themsaid 4 года назад
Fixed that now :)
@themsaid
@themsaid 4 года назад
Fixed that. Sorry guys :D
@eneessylmz
@eneessylmz 3 года назад
Hello, I have a problem. I made a fully working multi-site system. However, the system does not work when the boostrap / cache / config file is created. Because config.php file is created for only 1 site. How can I make this file a separate file for each site. I couldnt find it. Please help me.
@mustafael-gaml2235
@mustafael-gaml2235 4 года назад
ليه مش بتنكلم عربي ؟
@themsaid
@themsaid 4 года назад
علشان أوصل لعدد أكبر :)
@mustafael-gaml2235
@mustafael-gaml2235 4 года назад
@@themsaid ان شاءا لله هتوصل لي المليون انت استمر
@priyalpatel9949
@priyalpatel9949 2 года назад
Nice Video. But i am having an issue when running with swoole (laravel-s). f (!$this->app->runningInConsole()) returns true in TenancyProvider. How can i solve it, any suggestions please?I am using Lumen 8
Далее
Laravel Code Review: Multi-Tenancy, Events and Queues
14:40
Laravel Sanctum - Hitting all the rough edges
8:47
Просмотров 12 тыс.
Multi-tenant Architecture for SaaS
11:07
Просмотров 107 тыс.
Laravel + Livewire todo app (and so much more)
16:41
Просмотров 34 тыс.
The Tools I Use to Build Products in Laravel
19:00
Просмотров 15 тыс.
Choose a phone for your mom
0:20
Просмотров 4,5 млн