Teen Mental Health Resources Collection

Teen Mental Health Resources Collection
Slide Note
Embed
Share

Explore a diverse collection of resources focused on teen mental health, including videos, poems, songs, and artwork. Dive into TED Talks discussing the importance of mental health days for students, personal accounts from teenage mental health advocates, and powerful songs that resonate with emotional struggles. Delve into poetry that captures the essence of inner turmoil and moments of escape. This compilation aims to shed light on the complexities of teen mental health and provide avenues for expression and support.

  • Teen Mental Health
  • Resources
  • TED Talks
  • Poetry
  • Songs

Uploaded on Mar 05, 2025 | 0 Views


Download Presentation

Please find below an Image/Link to download the presentation.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.If you encounter any issues during the download, it is possible that the publisher has removed the file from their server.

You are allowed to download the files provided on this website for personal or commercial use, subject to the condition that they are used lawfully. All files are the property of their respective owners.

The content on the website is provided AS IS for your information and personal use only. It may not be sold, licensed, or shared on other websites without obtaining consent from the author.

E N D

Presentation Transcript


  1. Pragmatic Event-Driven Microservices Allard Buijze @allardbz allard@axoniq.io

  2. Service Service Service

  3. Normal SQL QUERY 22 JOINS 6 SUBQUERIES

  4. Layered architecture Web Cache Session replication User Interface Domain Model Method invocation Cache Service Layer Worker pools Data Access Layer Distributed 2nd level cache Query Cache

  5. Source: http://www.sabisabi.com/images/DungBeetle-on-dung.JPG

  6. AxonFramework

  7. Monoliths St Breock Downs Monolith - www.cornwalls.co.uk

  8. Microservices vs Monoliths Monoliths Almost all the successful microservice stories have started with a monolith that got too big and was broken up Microservices system Almost all the cases where I've heard of a system that was built as a microservice system from scratch, it has ended up in serious trouble. Martin Fowler Source: http://martinfowler.com/bliki/MonolithFirst.html

  9. Are you tall enough? Source: martinfowler.com/bliki/MicroservicePrerequisites.html

  10. Microservice journey

  11. Command Query Responsibility Segregation Events Command model Projections Client

  12. Location transparency A component should neither be aware of nor make any assumptions about the location of components it interacts with. A Component should not be aware, nor make any assumptions, of the location of Components it interacts with (but doesn t end there) Location transparency starts with good API design

  13. Reasons to send a message Event Something has happened

  14. Event-Driven Microservices OrderCreated ItemAdded ItemRemoved OrderConfirmed Need to know ordered items Order service

  15. 3 reasons to send a message Event Something has happened Command I want the system to do something Query I want to know something

  16. Something has happened - Event Data change Deadline passing Or anything else that s relevant in the domain

  17. Publish-subscribe Want to know Something happened! Want to know Want to know

  18. Exclusive consumers One of us wants to know Something happened! One of us wants to know Want to know

  19. Competing consumers One of us wants to know Something happened! One of us wants to know Want to know

  20. Balanced consumers One of us wants to know If (%) Something happened! One of us wants to know Want to know

  21. I want something done - Command Request-a-side-effect Change data / application state Send email Exactly 1 destination OK / NOK reply Maybe some data

  22. Command Routing Can do something Can do something Do something! Can do something

  23. I want to know something - Query Desire for information The response has more value than the question (Usually) side-effect free Different messaging patterns Single destination Scatter gather query

  24. Query point to point Result = Price Price = 49

  25. Query scatter-gather Price = 199 Result = Min(Price) (wait 100ms) If ( ) Price = 149

  26. Query scatter-gather Price = 199 Result = Min(Price) (wait 100ms) If ( ) Price = 99 If ( ) Price = 149

  27. Event-Driven Microservices OrderCreated OrderConfirmed ItemAdded GetOrderDetails ItemRemoved OrderDetails OrderConfirmed Need to know ordered items Order service

  28. At scale, different rules apply

  29. How do you route all events to all components? How will this scale?

  30. You Don't! It Won't!

  31. Order Created Item Added to Order Shipping Address Added Billing Address Added Order Confirmed Unmanageable mess As shipping module, I want to know when an order is placed

  32. Bounded context Explicitly define the context within which a model applies. Explicitly set boundaries in terms of team organization, usage within specific parts of the application, and physical manifestations such as code bases and database schemas. Keep the model strictly consistent within these bounds, but don t be distracted or confused by issues outside.

  33. Within a context, share everything

  34. Between contexts, share consciously As shipping module, I want to know when an order is placed Order Created + Item Added + Order Confirmed Order Placed Order Created Item Added to Order Shipping Address Added Billing Address Added Order Confirmed

  35. Where does Axon Framework fit? Inside each component in bounded context Axon provides the Java APIs towards platform EventBus, CommandBus, QueryBus Separation of business logic and infrastructure logic

  36. Its hard to get messaging right

  37. Were all solving the same problems

  38. Just enough intelligence AxonIQ Messaging Platform Understands difference between Commands, Events, Queries and their routing patterns. Does not care about the content of these messages. Message Broker Sends messages. Main value add is reliability. Enterprise Service Bus Understands message content. Hard to configure and maintain. smart dumb

  39. Our mission Provide the APIs and implementations necessary for event- driven microservices to cooperate harmoniously, allowing each of them to focus on the business logic.

  40. More info? AxonFramework.org AxonIQ.io Allard Buijze allard@axoniq.io @allardbz Visit our booth

Related


More Related Content