Chapters
48 Chapters
|
5:05:05
|
Login to bookmark this video
-
Course Code
Subscribe to download the code!Compatible PHP versions: ^7.1.3
Subscribe to download the code!Compatible PHP versions: ^7.1.3
-
This Video
Subscribe to download the video!
Subscribe to download the video!
-
Subtitles
Subscribe to download the subtitles!
Subscribe to download the subtitles!
-
Course Script
Subscribe to download the script!
Subscribe to download the script!
Scroll down to the script below, click on any sentence (including terminal blocks) to jump to that spot in the video!
Subscribe to jump to this part in the video!
This tutorial is built with Symfony 4.3, but will work well on Symfony 4.4 or 5.
What PHP libraries does this tutorial use?
// composer.json
{
"require": {
"php": "^7.1.3",
"ext-ctype": "*",
"ext-iconv": "*",
"composer/package-versions-deprecated": "^1.11", // 1.11.99
"doctrine/annotations": "^1.0", // v1.8.0
"doctrine/doctrine-bundle": "^1.6.10", // 1.11.2
"doctrine/doctrine-migrations-bundle": "^1.3|^2.0", // v2.0.0
"doctrine/orm": "^2.5.11", // v2.6.3
"intervention/image": "^2.4", // 2.4.2
"league/flysystem-bundle": "^1.0", // 1.1.0
"phpdocumentor/reflection-docblock": "^3.0|^4.0", // 4.3.1
"sensio/framework-extra-bundle": "^5.3", // v5.3.1
"symfony/console": "4.3.*", // v4.3.2
"symfony/dotenv": "4.3.*", // v4.3.2
"symfony/flex": "^1.9", // v1.21.6
"symfony/framework-bundle": "4.3.*", // v4.3.2
"symfony/messenger": "4.3.*", // v4.3.4
"symfony/property-access": "4.3.*", // v4.3.2
"symfony/property-info": "4.3.*", // v4.3.2
"symfony/serializer": "4.3.*", // v4.3.2
"symfony/validator": "4.3.*", // v4.3.2
"symfony/webpack-encore-bundle": "^1.5", // v1.6.2
"symfony/yaml": "4.3.*" // v4.3.2
},
"require-dev": {
"easycorp/easy-log-handler": "^1.0.7", // v1.0.7
"symfony/debug-bundle": "4.3.*", // v4.3.2
"symfony/maker-bundle": "^1.0", // v1.12.0
"symfony/monolog-bundle": "^3.0", // v3.4.0
"symfony/stopwatch": "4.3.*", // v4.3.2
"symfony/twig-bundle": "4.3.*", // v4.3.2
"symfony/var-dumper": "4.3.*", // v4.3.2
"symfony/web-profiler-bundle": "4.3.*" // v4.3.2
}
}
20 Comments
Hi,
is there any docker setup available for this project?
Hello, I have quite a unique problem that I pray there is a solution for.
Our services require bulk functionality for sending out messages to our customers, this naturally falls into the asynch world as sending out ~20/30k messages in one go is a bit much for both back & frontend.
What makes this problem unique is that we have multiple databases operating from the same codebase for different "users".
-------------------------------------------------------------------------------------------------------------
My problem is as follows:
Which database is used is determined by the URL, e.g https://ourdomain.com/{identifier}/action, this in turn has a listener that sets up the DB connection before any other code is run.
The asynch job message has access to this identifier, and I can use a wrapper for DB connection changing inside the message handler.
However, all the dependencies supplied by the DI container defaults to the predefined database connection (The one used if no identifier is supplied).
So even if I can access the right database with any objects created inside __invoke, any class dependencies provided by the constructor (such as repositories) have the default.
The only options I can think of is:
1. Create the needed objects at runtime inside __invoke.
However, a lot of dependencies are typehinted and injected with interfaces and this would quickly get out of hand.
2. Pass the needed objects to the message envelope.
However, I've tried this before, and this causes issues with doctrine. Since it didn't fetch the object/entity, it assumes that we are doing a create, not an update (https://symfonycasts.com/sc...
---------------------------------------------------------------------------------------------------------------------
Is there any way to tell an asynch job what database to use before it's called? It seems impossible since the constructor is always the first called method and asynch jobs are by nature disconnected.
While waiting for a response I will go with option 2 and see if I can make it work.
Any help is greatly appreciated.
Update
Ended up doing Option 1
Loaded all the dependencies that don't have any DB association via DI container and resolved the rest manually by instantiating new objects and feeding them to the classes that needed them, not pretty but it works.
Would still love a reply in case anyone knows a way around this :)
Hey Musa!
So my guess is that you have an event listener on RequestEvent that normally looks at the domain name and does some work to "set up" which database to use. Is that... kind of correct? If so, then (as you know), that listener wouldn't run when your worker is executing a message. But could you accomplish this with a worker listener? I'm thinking about the
WorkerMessageReceivedEvent. This is before your message is handled by the worker, but you DO have access to the message itself (and stamps) from this event. Could you read that and reconfigure things before your handler is called?Btw, you'll probably want to activate the reset_on_message option - https://symfony.com/blog/new-in-symfony-5-4-messenger-improvements#reset-container-services-between-messages - so that the container starts "fresh" before each message is processed.
Let me know if this helps!
Cheers!
Hi Ryan, thanks for reaching out on such short notice, really grateful for your activity in this community!
A (event)subscriber is responsible for doing the database switching at runtime for incoming HTTP requests.
And you're completely right, our workers are oblivious to this behaviour.
I'm curious though, does the <blockquote>WorkerMessageReceivedEvent</blockquote> live in the same lifecycle as the actual job handler?
I've been thinking about this when reviewing your videos on stamps.
In my mind yesterday, albeit caffeine fuelled and under time pressure, the job handler is just called like any other PHP process on it's own thread (
php /path/to/script.php 'Hello, ' 'World!') passing the serialized object(envelope) to the worker in the place of $argv(n).But if the job life cycle starts with the first middleware in the line, ergo:
Job pushed to queue (HTTP stops here) -> (Internal process starts here) middleware ... n .... -> MessageHandler.
And not:
Job pushed to queue -> middleware ... n ... (HTTP stops here) -> (Internal process starts here) MessageHandler .
Then middleware should work just fine.
I'd love a confirmation on this behaviour, as it's a little hard to draw conclusions based on synchronous examples for messenger.
Hey Musa!
Sorry for the slow reply this time :).
> I'm curious though, does the WorkerMessageReceivedEvent live in the same lifecycle as the actual job handler?
I'm not sure exactly what you mean. But I think the answer is "yes". That event is dispatched inside of the "worker process" and it is dispatched right before the handler would actually be called.
> But if the job life cycle starts with the first middleware in the line, ergo:
> Job pushed to queue (HTTP stops here) -> (Internal process starts here) middleware ... n .... -> MessageHandler.
> And not:
> Job pushed to queue -> middleware ... n ... (HTTP stops here) -> (Internal process starts here) MessageHandler .
> Then middleware should work just fine.
It's a mixture of both 😆:
Message dispatched -> middleware -> one middleware pushes to queue (HTTP stops here) -> (Internal process starts) -> Message is loaded from queue -> middleware -> one middleware calls your MessageHandler.
The middleware itself is actually what's responsible for both sending and handling messages. If you added a custom middleware, it should be called BOTH when the message is originally dispatched AND when it is received from the queue and about to be handled. You can check for a ReceivedStamp to see if it was just received.
Cheers!
No worries on the timing at all mate.
I realized that if I had continued on with watching the following videos, the answer was right there.
Thanks for taking the time to explain :)
This worked:
<b>However</b> I ran into another issue.
It seems that non-object class variables stay between jobs.
Let me clarify:
<b>Example:</b>
I have a dependency in one of my (Asynch)MessageHandler classes, this dependency handles logging. The logger takes a service and sets the current identifier and prepends it to all messages logged by the instance used.
<blockquote>Job #1 on identifier XXXX. Gets identifier XXXX from fooService and sets it as it's $identifier variable.
Job #2 on identifier YYYY. Ignores fetching identifier YYYY and uses XXXX</blockquote>
This became very apparent when I changed the logger's code to:
I logged (in the MessageHandler) the jobs using the getIdentifier() method to see what was going on:
<blockquote>Job #1, getIdentifier() returns "test" because the function was called before Log(), actual identifier shown in log: XXXX
Job #2, getIdentifier() returns XXXX, actual identifier shown in log: YYYY</blockquote>
If the Logging class dependency was refreshed on each job, the getIdentifier() should always return "test" as the variable has not been reassigned before the actual Log() method is called.
Worth mentioning that calls to the database in Job #2 fetch from the correct database, so these dependencies are working as intended.
So I guess my question is:
Does symfony cache non-object object variables between jobs of the same kind?
I will remove the fetching of identifier from the constructor as it's not good practice anyhow, however,
I'd like to know more about this behaviour in case other dependencies share this behaviour.
Hey Musa!
Yea, this is an interesting situation. Two things I'll say:
A) Yes, setting the identifier in the constructor is not a *super* great practice. Well, more broadly, making a service "stateful" - meaning it has some data that might change and holds onto some state / "current data" - is kind of an anti-practice. Services should be stateless: you get the same result every time you call methods on them, no matter what. But, that is just a general rule. I DO this type of stuff from time to time - it's useful ;).
B) About the "caching" that you're seeing. For each PHP process, Symfony instantiates a service just one time. During a normal request-response cycle, if you ask for your Logger service, it will be instantiated just once. The SAME thing happens when processing an async message. But in this case, the Logger service will be instantiated just once... even if you handle 5 messages. That's why you're seeing that behavior.
The solution is either to:
1) Not set the state on your service
or
2) Somehow re-set the state after each message or re-initialize it at the start of each message. Depending on your logic, you might be able to do this nicely. OR, iirc, if you make your service implement ResetInterface, then Symfony will call the reset() method each time it "resets" the container (this is not something that happens during a normal request-response process). You can (and probably should, it's just a good idea) force your container to be reset between each message with this new feature: https://symfony.com/blog/ne...
Let me know if this helps!
Cheers!
Hello,
I studied this chapter on the text version and it seems you have a typo in the paragraph https://symfonycasts.com/screencast/messenger/handler-work#message-class-data (message class data header) :
This paragraph serves 4 code snippet. The first 2 are currently expanded / collapsed on the exact same lines. But based on what you wrote right above the 2nd, I guess you wanted to expand L15 <--> L19 ? And maybe collapse L9 <---> L14 but as you wish.
Take a look at those snippets fix it if it deserves it, and feel free to delete my comment after !
Cheers !
Hey Julien R.
You're 100% right! Thanks for letting us know. I'm going to fix it right now :)
Cheers!
If we have a NotificationSendHandler a handler that gonna send a mail to the correct user. The PHP code for sending a mail that is covered by the handler gonna allocated memory In the PHP server not Inside the broker rather rabbitmq. So either we exude asynchonsly or synchronously we consume the same memory, but arsenic is a better use for a server to handle a lot of demands.
Just a question : if we send a notification to 1000 subscribers what's the best way is it to or outside. Do we send one message contain all user to the handler and then make a loop Inside the handler:
$this->mailer->send($message);
`
or we should have a message per notification and per user !! ?
Hey ahmedbhs
> So either we exude asynchonsly or synchronously we consume the same memory, but arsenic is a better use for a server to handle a lot of demands.
If your worker lives in the same server as your application, then yes. When the message gets consume your server may suffer an overload but at least the initial request was already processed, in other words, your user got a faster UX
> if we send a notification to 1000 subscribers what's the best way is it to or outside. Do we send one message contain all user to the handler and then make a loop Inside the handler:
Massive email campaigns are hard to manage, usually is recommended to use a third party service for doing that but if you still want to do it. I would recommend to send like 5 or 10 emails per message
Cheers!
Hello,
After completing the code in this video, I get this JS error:
vue.esm.js:628 [Vue warn]: Error in v-on handler: "TypeError: Cannot read property 'find' of undefined" found in
---> <imageuploader> at assets/js/components/ImageUploader.vue
<imageapp> at assets/js/components/ImageApp.vue
<root>
I am not sure how to trouble shoot this. Can you help?
this is the JSON that is returned from /api/images:
{"id":7,"originalFilename":"818-banner.jpg","ponkaAddedAt":"2020-02-04T12:16:39-05:00","createdAt":"2020-02-04T12:16:37-05:00","@id":"\/api\/images\/7","url":"\/uploads\/images\/818-banner-5e39a6f5b44a0.jpeg"}
Hey Skylar,
Hm, let's try to debug it together... Do you have any spots where you call that "find" property? Basically, you can search for "find" text in your JS files. Most probably you just use incorrect object, etc.
Also, please, make sure you followed all the steps in README file of downloaded course code. In particular, make sure you ran "composer install", "yarn install" and "yarn encore dev" before starting working with project. Btw, did you download the course code and started from start/ directory?
Cheers!
Hi, Thank you for the reply. I traced the error to my system. When I use the Symfony Serve, the XHR response to the /image request is the symfony profiler information. Some how on my system it is not working correctly. When I turn the symfony profiler off, then the ponka app works fine. I have no idea how to fix it. I am using a windows 10 with WSL ubuntu linux. Some where that is causing the issue.
Thanks for your help.
Hey Skylar
Try running the web server without SSL. I would also check the
Content-Typeheader of the response because if you are returning JSON, then it should be set toapplication/json. Let me know if it worked :)Thank you Diego.
I solved the problem. First, I updated and upgraded my ubuntu install and upgraded to php 7.4. Then I updated my Symfony CLI file to the latest version. voila. It now works and is serving the correct content for the url requested.
Of course, there is always consequences. My Windows 10 /WSL/Ubuntu install does not support TCP_INFO and now the Symfony CLI app is logging "failed to retrieve TCP_INFO for socket: Protocol not available (92)" I don't even know where to look for Symfony CLI help. But I can just let it run as it is working. yeay!
Excellent!
You can report issues related to Symfony CLI here https://github.com/symfony/cli
Cheers!
Hello,
Is it okay if I have my Handler implement the ServiceSubscriberInterface to get the services (traits, specifically) from my Service folder?
Hey Gustavo!
Hmm. Typically, if you need a service, you should add a constructor and use dependency injection for each service you need. Service subscribers are a special feature that should generally only be used in some edge-cases when there are performance concerns... and these are rare :). Here's some info on this (in case you haven't seen it): https://symfonycasts.com/sc...
So generally... I would kinda say "no" you shouldn't do this. But if you think you have a special case, let me know.
Cheers!
"Houston: no signs of life"
Start the conversation!