Book Image

Scalable Data Streaming with Amazon Kinesis

By : Tarik Makota, Brian Maguire, Danny Gagne, Rajeev Chakrabarti
Book Image

Scalable Data Streaming with Amazon Kinesis

By: Tarik Makota, Brian Maguire, Danny Gagne, Rajeev Chakrabarti

Overview of this book

Amazon Kinesis is a collection of secure, serverless, durable, and highly available purpose-built data streaming services. This data streaming service provides APIs and client SDKs that enable you to produce and consume data at scale. Scalable Data Streaming with Amazon Kinesis begins with a quick overview of the core concepts of data streams, along with the essentials of the AWS Kinesis landscape. You'll then explore the requirements of the use case shown through the book to help you get started and cover the key pain points encountered in the data stream life cycle. As you advance, you'll get to grips with the architectural components of Kinesis, understand how they are configured to build data pipelines, and delve into the applications that connect to them for consumption and processing. You'll also build a Kinesis data pipeline from scratch and learn how to implement and apply practical solutions. Moving on, you'll learn how to configure Kinesis on a cloud platform. Finally, you’ll learn how other AWS services can be integrated into Kinesis. These services include Redshift, Dynamo Database, AWS S3, Elastic Search, and third-party applications such as Splunk. By the end of this AWS book, you’ll be able to build and deploy your own Kinesis data pipelines with Kinesis Data Streams (KDS), Kinesis Data Firehose (KFH), Kinesis Video Streams (KVS), and Kinesis Data Analytics (KDA).
Table of Contents (13 chapters)
1
Section 1: Introduction to Data Streaming and Amazon Kinesis
5
Section 2: Deep Dive into Kinesis
10
Section 3: Integrations

Discovering Amazon Kinesis video streams WebRTC

Kinesis video streams with WebRTC (KVS WebRTC) is a fully managed service that is a standards-based implementation of the web real-time communication (WebRTC) standard. KVS WebRTC provides two-way low-latency live media streaming, enabling the development of video and voice applications.

It is not like any of the streaming technologies discussed in this book. Instead of using producers to send messages to a stream and then using consumers to retrieve them, it creates a peer-to-peer connection that allows you to directly send data from one system to another. This allows applications to get sub-second video playback end to end.

KVS WebRTC provides four core capabilities:

  1. Signaling, which allows clients to exchange connection metadata.
  2. Peer-to-peer connections are then established using that connection metadata.
  3. Media can then be streamed between the clients over the low-latency peer-to-peer connection.
  4. End...