zoukankan      html  css  js  c++  java
  • Apache Kafka Use cases | Kafka Applications(转发)

    原文:https://data-flair.training/blogs/kafka-use-cases-applications/

    1. Objective

    In our last Kafka tutorial, we discussed Kafka Pros and Cons.

    Today, in this Kafka article, we will discuss Apache Kafka Use Cases and Kafka Applications.

    Kafka is one of the key technologies in the new data stack, and over the last few years, there is a huge developer interest in the usage of Kafka. Although, if you don’t know about Kafka, it is a highly scalable publish-subscribe messaging system. Also, there are several Kafka Use cases and Kafka Applications all around.

    So, let’s discuss the Kafka Use Cases and Application of Apache Kafka one by one.

    2. Apache Kafka Use Cases and Applications

    Let’s discuss Kafka Use cases:
    Have a look at Top 5 Apache Kafka Books

    i. Kafka Use cases

    There are many Use Cases of Apache Kafka. So, here we are listing some of the most common use cases of it−

    Apache Kafka

    Kafka Use Cases

     

    a. Kafka Messaging

    As we know, Kafka is a distributed publish-subscribe messaging system. So, for a more traditional message broker, Kafka works well as a replacement.

    For a variety of reasons, we use Message brokers. For example, to decouple processing from data producers, to buffer unprocessed messages and many more.
    However, Kafka has better throughput, built-in partitioning, replication, and fault-tolerance, in comparison to most other messaging systems.

    That makes it a good solution for large-scale message processing applications.

    b. Website Activity Tracking

    To be able to rebuild a user activity tracking pipeline as a set of real-time publish-subscribe feeds, it is the original Use Case for Kafka.

    That implies site activity is published to central topics with one topic per activity type.

    Here, site activity refers to page views, searches, or other actions users may take.
    Let’s Explore Kafka Features

    c. Kafka Metrics

    For operational monitoring data, Kafka is often used.

    In addition, to produce centralized feeds of operational data, it includes aggregating statistics from distributed applications.

    d. Kafka Log Aggregation

    In order to collect logs from multiple services and make them available in a standard format to multiple consumers, we can use Kafka across an organization.

    e. Stream Processing

    However, there are some popular frameworks which read data from a topic, processes it, and write processed data to a new topic, where it becomes available for users and applications, such as Storm and Spark Streaming. In the context of stream processing, Kafka’s strong durability is also very useful.

    f. Kafka Event Sourcing

    Basically, when state changes are logged as a time-ordered sequence of records, then event sourcing is a style of application design. Also, we can say Kafka is an excellent backend for an application built in this style. Because it supports for a very large stored log.
    Let’s revise Apache Kafka Operations with commands

    g. Commit Log

    While it comes to a distributed system, Kafka can serve as a kind of external commit-log for it.

    Generally, it replicates data between nodes. Also, acts as a re-syncing mechanism for failed nodes to restore their data.

    The feature of log compaction in Kafka helps to support this usage. However, Kafka is the same as Apache BookKeeper project, in this usage.

    Now, let’s move towards Kafka Applications.

    ii. Apache Kafka Applications

    Kafka supports many of today’s best industrial applications. So, here we are listing some of the most notable applications of Kafka:

    a. Twitter

    Twitter is one of the best Kafka Applications. A famous online social networking service or a platform Twitter uses Kafka.

    Basically, it provides a way to send and receive users tweets. Through this platform, registered users can read and post tweets, but unregistered users can only read tweets. However, it uses Storm-Kafka as a part of their stream processing infrastructure.

    b. LinkedIn

    Another Kafka Application is LinkedIn. For activity stream data and operational metrics, LinkedIn uses Apache Kafka. There are several products like LinkedIn Newsfeed, LinkedIn Today, for online message consumption and in addition to offline analytics systems like Hadoop, Kafka messaging system helps LinkedIn. Moreover, we can say the strong durability of Kafka is also one of the key factors in connection with LinkedIn.

    c. Netflix

    An American multinational provider of on-demand internet streaming media, Netflix, also uses Kafka. Basically, for the purpose of real-time monitoring and event processing, it uses Kafka.

    d. Mozilla

    In 1998, members of Netscape created a free-software community, Mozilla. In order to collect performance and usage data from the end-users browser for projects like Telemetry, Test Pilot, etc. Kafka will soon be replacing a part of Mozilla current production system.
    Let’s learn Kafka Performance Tuning – Ways for Kafka Optimization

     

    e. Oracle

    Basically, from its Enterprise Service Bus product called OSB (Oracle Service Bus), Oracle offers native connectivity to Kafka. In order, to implement staged data pipelines, that permits developers to leverage OSB built-in mediation capabilities.

    So, this was all about Kafka Use Cases and Applications of Kafka. Hope you like our explanation.

    3. Conclusion

    Hence, we have seen several Kafka Use Cases as well as applications of Apache Kafka. However, if any doubt occurs regarding Kafka Use Cases and Applications, feel free to ask in the comment section.
    See also – 
    Apache Kafka Career Scope with Salary trends
    Reference for Kafka

  • 相关阅读:
    关于网络字节序(network byte order)和主机字节序(host byte order)
    关于垃圾回收,我来解释下为什么LocalConnection可以实现垃圾回收
    解决Form中ExternalInterface的Bug问题
    AS3里var aa:String是null还是""?
    IE并发连接限制(as)
    tar
    mysql默认端口号3306
    flex经验
    这个游戏不错
    nginx介绍
  • 原文地址:https://www.cnblogs.com/panpanwelcome/p/13534043.html
Copyright © 2011-2022 走看看