Kafka For Developers - Data Contracts Using Schema Registry

Posted in: Tutorials | By: AD-TEAMSSS | 9-09-2022, 22:16 | 0 Comments
09
September
2022

Published 9/2022MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHzLanguage: English | Size: 2.41 GB | Duration: 5h 30m

Learn to build a Kafka Produce/Consumer applications that uses AVRO data format and Confluent Schema Registry.


What you'll learn
Introduction to AVRO and its advantages of using them for sharing messages between applications
Publish AVRO records using Kafka Producer
Introduction to Schema Registry
Consume AVRO records using Kafka Producer
Use Schema Registry to register the AVRO Schema
Learn how Kafka Producer and Consumer interacts with the Schema Registry
Enforce Data Contracts using Schema Registry
Evolve AVRO schema using Schema Registry
Build Spring Boot Kafka Producer and Consumer applications that uses AVRO as a serialization format and interacts with Schema Registry
Requirements
Java 11 or Higher is needed (Java 17 recommended)
Docker must be installed
Intellij IDE or similar is needed
Experience build Kafka Producer and Consumer applications
Description
This course is structured to give you a theoretical and coding experience of Building Kafka Applications using AVRO and Schema Registry. If you are looking forward to learning the below-listed things:Techniques that are available to evolve the data between the applications that uses Kafka as a Streaming Platform Use a compact data format like AVRO to exchange data between the applicationsUse Schema Registry and its benefitsEnforcing Data Contracts between applications that uses Kafka as a Streaming PlatformHandle Data evolution gracefully using Schema RegistryThen this is the right course for you. This is a pure hands-on oriented course where you will be learning the concepts through code.By the end of this course, you will have a complete understanding of these concepts:Use AVRO as a data serialization formatEvolution of the data using Schema RegistryGetting Started with KafkaIn this section, I will give you all an introduction to the course and what to expect from this course.Data Contract & Serialization in KafkaLearn "How serialization is connected to Kafka" and how it benefits the overall Kafka architecture.We will look into different Serialization formats and the support for Schema in AVRO, Protobuf and ThriftIntroduction to AVRO - A data serialization systemAn introduction to AVRO and why AVRO is popular to work with Kafka and Schema Registry.Learn to build a simple AVRO schema.Kafka Setup & Demo in Local Using DockerIn this section , we will setup Kafka in local, Produce and Consume messages using Kafka Console Producer and Consumer.Greeting App - Base AVRO Project SetUp - GradleWe will set up the base project for the greeting app which we can use to generate the Java Classes from the Greetings schema using Gradle build tool.Greeting App - Base AVRO Project SetUp - MavenWe will set up the base project for the greeting app which we can use to generate the Java Classes from the Greetings schema using Maven build tool.Build AVRO Producer and Consumer in JavaWe will learn to build a Kafka Producer to publish AVRO records in to the Kafka topic.We will learn to build a Kafka Consumer to consume AVRO records from the Kafka topic.CoffeeShop Order Service Using AVRO - A Real use CaseWe will build a AVRO schema for a real use case and build Kafka Producers and Consumers to it.Logical Types in AVROI will cover the different logical types in AVRO and how to use them.StampDecimalUUIDDateAVRO Record- Under the HoodAnatomy of an AVRO record when the data is published and consumed as AVRO recordSchema Changes in AVRODemonstration of how the consumer breaks with chag business requirementsData Evolution using Schema RegistryCover the different techniques of evolving a Schema with the chag business requirements.I will cover the different Compatibility techniques to share data between the producer and consumer applicationsBackward CompatibilityForward CompatibilityFull CompatibilityNone CompatibilitySchema Naming StratsI will cover the different naming strats for Schema and how its impacts the application events.TopicName StrategyRecordName StrategyTopicRecordName StrategyBuild a Coffee Order Service using SpringBoot & Schema RegistryIn this section, we will code and build a Spring Boot Kafka application that exchanges the data in an AVRO format and interacts with Schema Registry for data evolution.Build a RestFul service to publish the events through which we receive events through the rest interface and then publish them to KafkaBy the end of this course, you will have a complete understanding of these concepts:Use AVRO as a data serialization formatEvolution of the data using Schema Registry

Overview

Section 1: Getting Started with the Course

Lecture 1 Introduction

Lecture 2 Pre-requestites

Section 2: Data Contract and Serialization in Kafka

Lecture 3 Data Contract & Serialization in Kafka

Lecture 4 Serialization Formats

Section 3: Introduction to AVRO - A data serialization system

Lecture 5 Introduction to AVRO - What is AVRO and Why AVRO

Lecture 6 Build a simple AVRO Schema

Section 4: Kafka Setup & Demo in Local Using Docker

Lecture 7 Set up Kafka Broker and Zookeeper using Docker Compose

Lecture 8 Producer and Consumer Messages using CLI

Lecture 9 Produce and Consume using AVRO Console Producer & Consumer

Section 5: Greeting App - Base AVRO Project SetUp - Gradle

Lecture 10 Base Project SetUp for Greeting App

Lecture 11 Generate AVRO Java Records using AVRO Schema Files

Section 6: Greeting App - Base AVRO Project SetUp - Maven

Lecture 12 Base Project SetUp for Greeting App - Maven

Lecture 13 Generate AVRO Java Records using AVRO Schema Files - Maven

Section 7: Build AVRO Producer and Consumer in Java

Lecture 14 Lets build AVRO Kafka Producer

Lecture 15 Lets build AVRO Kafka Consumer

Section 8: CoffeeShop Order Service Using AVRO - A Real Use Case

Lecture 16 Application Overview

Lecture 17 Project SetUp for CoffeeShop - Gradle

Lecture 18 Project SetUp for CoffeeShop - Maven

Lecture 19 Build a Coffee Order Schema using AVRO

Lecture 20 Generating AVRO classes using Gradle

Lecture 21 Generating AVRO classes using Maven

Lecture 22 Build a CoffeeShop Order Producer

Lecture 23 Build a CoffeeShop Order Consumer

Section 9: Logical Schema Types in AVRO

Lecture 24 Introduction to Logical Types in AVRO

Lecture 25 Add a stamp, decimal logical type to the CoffeeOrder Schema

Lecture 26 Adding the UUID as Key for CoffeeOrder

Lecture 27 Date Logical Type

Section 10: AVRO Record- Under the Hood

Lecture 28 Whats inside an AVRO Record

Section 11: Schema Changes in AVRO - Issues without Schema Registry

Lecture 29 Evolving the Schema - Consumer Fails to Read the new Schema

Section 12: Introduction to Schema Registry

Lecture 30 Introduction to Schema Registry

Lecture 31 Publish and Consumer Record using Schema Registry

Lecture 32 Schema Registry internals & Interacting with Schema Registry using REST Endpoint

Lecture 33 Publish and Consume "Key" as an AVRO record

Section 13: Data Evolution using Schema Registry

Lecture 34 Data Evolution & Schema Evolution

Lecture 35 Update the code to interact with mavenLocal Repository - Gradle

Lecture 36 Update the code to interact with mavenLocal Repository - Maven

Lecture 37 Deleting a Field in Schema - BACKWARD Compatibility

Lecture 38 Adding a new Field in Schema - FORWARD Compatibility

Lecture 39 Add/Delete Optional Fields - FULL Compatibility

Lecture 40 Modify Field Names - NONE Compatibility

Section 14: Schema Naming Strats

Lecture 41 Different Types of Naming Strats

Lecture 42 Coffee Update Event AVRO Schema

Lecture 43 Publish and Consume CoffeeOrder UpdateEvent using RecordNameStrategy

Section 15: Build a Coffee Order Service using SpringBoot & Schema Registry

Lecture 44 Overview of the app

Lecture 45 Setting up the base project - Gradle

Lecture 46 Setting up the base project - maven

Lecture 47 Build the DTOs for the CoffeeOrderService

Lecture 48 Build the POST endpoint for the CoffeeOrderService - /coffee_orders

Lecture 49 Build the Service layer to map the DTO to AVRO domain object

Lecture 50 Configure the Kafka Producer properties in Coffee Order Service

Lecture 51 Build KafkaProducer to publish the CoffeeOrder Events

Lecture 52 Build the Coffee Order Consumer

Lecture 53 Build the PUT endpoint for the CoffeeOrderService - PUT /coffee_orders/{id}

Experienced Java Developers,Developers interested in learning AVRO and how to exchange data between applications using AVRO and Kafka,Developers who are interested in learning about Schema Registry and how it fits in to the Kafka,Developers who are interested in learning techniques to evolve the data

HomePage:
[url]Https://anonymz.com/https://www.udemy.com/course/kafka-for-developers-data-contracts-using-schema-registry/[/url]




DOWNLOAD
1dl.net

https://1dl.net/xf1ltk0fzwxm/M3sNaSLJ__Kafka_for_.part1.rar.html
https://1dl.net/0sfzuxub598i/M3sNaSLJ__Kafka_for_.part2.rar.html
https://1dl.net/5rtztqbs5cr9/M3sNaSLJ__Kafka_for_.part3.rar.html


rapidgator.net

https://rapidgator.net/file/e4bab2d5957bb2687d99aa1286bef787/M3sNaSLJ__Kafka_for_.part1.rar.html
https://rapidgator.net/file/4e32d2374c8676f70d41e2b9b4f0a7b9/M3sNaSLJ__Kafka_for_.part2.rar.html
https://rapidgator.net/file/efa022486ce2e59a3b7cb825242fdde7/M3sNaSLJ__Kafka_for_.part3.rar.html

Note:
Only Registed user can add comment, view hidden links and more, please register now
At 0dayhome.net, you'll find a vast collection of educational and informative tutorials to help you enhance your skills and knowledge in various fields. Our tutorials section serves as a valuable resource for beginners and experts alike, providing step-by-step guides, tips, and tricks on subjects such as technology, design, programming, photography, and much more. Whether you're looking to expand your professional repertoire or simply indulge in a new hobby, 0dayhome.net has got you covered. Why choose 0dayhome.net for all your tutorial needs? Here are a few reasons: Diverse Topics: Our platform offers a diverse range of tutorials, catering to various interests and skill levels. From learning the basics of coding to mastering advanced graphic design techniques, our tutorials cover it all. Easy-to-Follow Guides: We understand the importance of clear and concise instructions. Our tutorials are meticulously crafted with simplicity in mind, allowing you to easily grasp complex concepts and apply your newfound knowledge. Comprehensive Content: Whether you're a beginner seeking introductory tutorials or an expert looking for advanced techniques, our comprehensive collection has tutorials for every level of expertise. Take your skills to the next level with 0dayhome.net . Regular Updates: We frequently update our tutorials section, ensuring that you have access to the latest trends and techniques in your chosen field. Stay ahead of the curve and expand your knowledge with our up-to-date content. Community Engagement: Join our thriving community of learners and experts to connect, share insights, and seek guidance. Interact with fellow enthusiasts, exchange ideas, and strengthen your skills through collaboration. Free Access: Yes, you read it right! 0dayhome.net offers free access to its tutorials section. Learn and grow without any financial constraints. So, whether you're an aspiring programmer, a budding designer, or simply curious about exploring new subjects, 0dayhome.net tutorials are your go-to resource. Visit our website today and embark on a journey of continuous learning and improvement.
все шаблоны для dle на сайте шаблоны dle 11.2 скачать