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