1. Урок 1. 00:03:27
    Introduction to the course
  2. Урок 2. 00:07:29
    What is RabbitMQ, Why do you need it?
  3. Урок 3. 00:06:08
    How RabbitMQ works on a high level
  4. Урок 4. 00:01:42
    Clients we will be using: .Net & Python
  5. Урок 5. 00:04:08
    Erlang: the power behind RabbitMQ
  6. Урок 6. 00:03:04
    Setup for the course: Docker container
  7. Урок 7. 00:02:15
    Management UI for visualization of RabbitMQ
  8. Урок 8. 00:03:12
    Visualize Message Flow in RabbitMQ
  9. Урок 9. 00:02:49
    Message Flow: Direct Exchange
  10. Урок 10. 00:03:22
    Message Flow: Topic Exchange
  11. Урок 11. 00:02:57
    Message Publishing: Exchanges
  12. Урок 12. 00:05:17
    Connect to a Rabbit: Connections and Channels
  13. Урок 13. 00:05:54
    Vhost and logical seperations
  14. Урок 14. 00:03:41
    Create a Consumer with RabbitMQ.Client
  15. Урок 15. 00:03:25
    Create a Publisher with RabbitMQ.Client
  16. Урок 16. 00:03:51
    An easier way to use the Rabbit Client for .Net
  17. Урок 17. 00:02:11
    Summary of Server basics
  18. Урок 18. 00:03:28
    Close look at queues: Declare and Bind
  19. Урок 19. 00:03:31
    Declare and Bind queues with the pika library
  20. Урок 20. 00:04:17
    Queue properties: Durable, Auto-delete, exclusive
  21. Урок 21. 00:04:59
    Queue properties 2: Advanced properties and their use
  22. Урок 22. 00:04:38
    Message TTL and Queue Expiry with RabbitMQ.Client
  23. Урок 23. 00:04:55
    MessagePatterns explained
  24. Урок 24. 00:03:49
    MessagePattern: RPC or Request Response
  25. Урок 25. 00:05:02
    Message Reliability explained
  26. Урок 26. 00:02:14
    Message delivery guaranteed: Publisher confirms (.Net)
  27. Урок 27. 00:03:13
    Message consumption guaranteed: Consumer Acks (Python)
  28. Урок 28. 00:01:44
    Summary closer look at Messaging
  29. Урок 29. 00:04:19
    Intro to vhosts and access control
  30. Урок 30. 00:05:42
    Access Control: Set and use permissions
  31. Урок 31. 00:02:14
    Plugins in RabbitMQ
  32. Урок 32. 00:02:53
    What are Policies
  33. Урок 33. 00:04:12
    CLI for RabbitMQ
  34. Урок 34. 00:03:47
    Manage RabbitMQ with the HTTP API
  35. Урок 35. 00:02:11
    Configuration of the RabbitMQ Server
  36. Урок 36. 00:04:04
    Configure via Configuration Files
  37. Урок 37. 00:05:16
    Configure with Environment Variables
  38. Урок 38. 00:02:52
    Summary Rabbitmq Management
  39. Урок 39. 00:03:43
    Intro to Optimization of RabbitMQ
  40. Урок 40. 00:05:36
    Tools for Optimization: Built in Clustering
  41. Урок 41. 00:02:44
    How to create a simple local cluster
  42. Урок 42. 00:04:45
    High Availability: Replicate Queues with mirroring
  43. Урок 43. 00:04:08
    High availability: Shovels
  44. Урок 44. 00:03:23
    Implementing a Dynamic Shovel from management UI
  45. Урок 45. 00:06:08
    High Throughput with Clustering
  46. Урок 46. 00:02:35
    Summary Performance and High availability
  47. Урок 47. 00:04:18
    Monitoring and Logging with RabbitMQ
  48. Урок 48. 00:03:22
    Enable Tracing Plugin for debugging
  49. Урок 49. 00:04:46
    Logging with Queues
  50. Урок 50. 00:03:21
    Use the HTTP REST API for Health checks
  51. Урок 51. 00:03:46
    Summary Monitoring and Logging
  52. Урок 52. 00:04:48
    Python config watchdog
  53. Урок 53. 00:03:29
    Dead Letter Exchange Example
  54. Урок 54. 00:03:35
    Better RPC with RabbitMQ - Concepts
  55. Урок 55. 00:03:30
    Better RPC with pika (python)
  56. Урок 56. 00:04:11
    UseCases Introduction
  57. Урок 57. 00:01:28
    Use Case:Load balancer explained
  58. Урок 58. 00:03:53
    Classic example: Load balancing with monitoring of Queue levels and auto scaling
  59. Урок 59. 00:02:52
    Intro: Temporary BLOB Storage with Redis
  60. Урок 60. 00:04:27
    Temporary BLOB Storage with Redis - Code
  61. Урок 61. 00:06:59
    Intro to the application: What we are building
  62. Урок 62. 00:02:07
    Setup the solution structure
  63. Урок 63. 00:03:37
    Setup the Middleware: Messages and Bus Library
  64. Урок 64. 00:04:20
    Setup the Consumer with access to the database
  65. Урок 65. 00:04:27
    Setup RabbitMQ and the database itself
  66. Урок 66. 00:05:39
    Setup the Rest API and do a first integration of the system
  67. Урок 67. 00:02:20
    Create the Database access code and Insert the Order
  68. Урок 68. 00:05:38
    Integrate the full system