Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Complete Microservices with Go, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:53
    Introduction
  2. Урок 2. 00:04:14
    Project Overview
  3. Урок 3. 00:06:22
    Tech Stack Overview
  4. Урок 4. 00:12:21
    Coming from a Monolith
  5. Урок 5. 00:13:35
    Microservices Guiding Design Principles
  6. Урок 6. 00:15:23
    Communication Styles
  7. Урок 7. 00:11:24
    Architecture Definition Process
  8. Урок 8. 00:15:29
    Effective Error Handling
  9. Урок 9. 00:16:17
    Interfaces
  10. Урок 10. 00:06:18
    Testing
  11. Урок 11. 00:12:16
    Pointers
  12. Урок 12. 00:10:14
    Goroutines
  13. Урок 13. 00:13:30
    Context and Timeouts
  14. Урок 14. 00:13:21
    Concurrency with Channels
  15. Урок 15. 00:06:21
    Maps
  16. Урок 16. 00:12:07
    Map Concurrency & Mutexes
  17. Урок 17. 00:12:06
    Windows Users Setup
  18. Урок 18. 00:07:35
    Mac/Linux Setup
  19. Урок 19. 00:12:11
    Structuring a Microservice project
  20. Урок 20. 00:09:31
    Theory: Clean Architecture & Repository Pattern
  21. Урок 21. 00:07:54
    Part 1: Layered Architecture
  22. Урок 22. 00:23:23
    Part 2: Repository Pattern
  23. Урок 23. 00:09:31
    Why Kubernetes and Tilt
  24. Урок 24. 00:07:24
    Role of the API Gateway
  25. Урок 25. 00:25:09
    Implementing an HTTP Server
  26. Урок 26. 00:20:15
    External API communication (OSRM)
  27. Урок 27. 00:02:57
    Preparing for External API Failures
  28. Урок 28. 00:14:44
    Gracefull shutdown
  29. Урок 29. 00:09:10
    Understanding WebSockets
  30. Урок 30. 00:22:29
    Implementing WebSocket connections
  31. Урок 31. 00:16:08
    Handling CORS
  32. Урок 32. 00:08:54
    gRPC Introduction
  33. Урок 33. 00:05:31
    Protocol Buffer file generation process
  34. Урок 34. 00:15:49
    Defining the Trip Proto
  35. Урок 35. 00:16:55
    Implementing the Gateway Trip gRPC Client
  36. Урок 36. 00:12:22
    gRPC Server implementation on Trip Service
  37. Урок 37. 00:12:44
    Preview Trip Handler - Part #1
  38. Урок 38. 00:20:49
    Preview Trip Handler - Part #2
  39. Урок 39. 00:05:56
    Why & What are Ride Fares
  40. Урок 40. 00:32:51
    Ride Pricing Estimation
  41. Урок 41. 00:21:31
    Implementing the TripStart gRPC handler
  42. Урок 42. 00:06:15
    Introduction to Kubernetes
  43. Урок 43. 00:14:12
    Kubernetes Under the Hood
  44. Урок 44. 00:16:38
    Kubernetes Components
  45. Урок 45. 00:22:57
    Creating Deployment Files
  46. Урок 46. 00:19:29
    Doing our first production deployment
  47. Урок 47. 00:16:22
    Bootstrapping the Service
  48. Урок 48. 00:01:21
    Small Tiltfile Compilation Fix
  49. Урок 49. 00:03:10
    Final Adjustments to the Route
  50. Урок 50. 00:12:33
    Introduction to Async communication
  51. Урок 51. 00:11:48
    Setting up RabbitMQ
  52. Урок 52. 00:13:06
    Connecting to RabbitMQ
  53. Урок 53. 00:03:32
    RabbitMQ Services Dependency
  54. Урок 54. 00:21:54
    Publishing the First Message
  55. Урок 55. 00:08:01
    Message Durability
  56. Урок 56. 00:11:34
    Consuming Messages
  57. Урок 57. 00:14:57
    Message Distribution & Acknowledgment
  58. Урок 58. 00:06:12
    Fair Dispatch
  59. Урок 59. 00:17:11
    The Pub/Sub Pattern
  60. Урок 60. 00:21:19
    Implementing the Exchange & Topics flow
  61. Урок 61. 00:13:20
    JSON Message Sending & Consuming
  62. Урок 62. 00:18:04
    Finding a Suitable Driver
  63. Урок 63. 00:06:40
    Understanding how to notify our users
  64. Урок 64. 00:08:52
    WebSocket Connection Manager
  65. Урок 65. 00:14:11
    Queue Consumer
  66. Урок 66. 00:11:02
    Handling incoming messages from the driver
  67. Урок 67. 00:26:39
    Listening for Trip Accept event
  68. Урок 68. 00:04:31
    Declining a Trip Request
  69. Урок 69. 00:04:44
    Payment Flow Overview
  70. Урок 70. 00:05:46
    Payment Service setup
  71. Урок 71. 00:06:15
    Adding the Stripe secret key
  72. Урок 72. 00:18:45
    Stripe Processor Implementation
  73. Урок 73. 00:14:57
    Listening to the Payment Event
  74. Урок 74. 00:20:17
    Stripe Payment Webhook
  75. Урок 75. 00:09:33
    Intro to Distributed Tracing
  76. Урок 76. 00:13:54
    Setting up Tracing
  77. Урок 77. 00:13:13
    Jeager Exporter
  78. Урок 78. 00:13:57
    HTTP Instrumentation
  79. Урок 79. 00:11:36
    gRPC Instrumentation
  80. Урок 80. 00:14:57
    RabbitMQ Instrumentation
  81. Урок 81. 00:07:30
    Understanding DLQ and Retries
  82. Урок 82. 00:13:04
    Implementing Message Retries
  83. Урок 83. 00:10:25
    Implementing DLQ and DLX
  84. Урок 84. 00:10:25
    Introduction to MongoDB
  85. Урок 85. 00:14:23
    MongoDB Connection
  86. Урок 86. 00:07:25
    MongoDB Repository
  87. Урок 87. 00:03:42
    Adding BSON to the Domain Structs
  88. Урок 88. 00:10:19
    Dockerizing our project for production
  89. Урок 89. 00:14:08
    Kubernetes Cluster Deployment
  90. Урок 90. 00:01:17
    Port Forwarding