Giter Site home page Giter Site logo

bbl-kafka's Introduction

Kafka BBL

monitoring:

kafka manager

configure and deploy

run

  bin/kafka-manager -Dconfig.file=/path/to/conf/application.conf

install

from docker

https://docs.confluent.io/current/installation/docker/docs/quickstart.html

from confluent applications

https://docs.confluent.io/current/installation/installing_cp/index.html

CLI

run-broker

  bin/kafka-server-start etc/kafka/server-1.properties

list topic

  bin/kafka-topics --list --zookeeper localhost:2181

producer

  bin/kafka-console-producer --broker-list "localhost:9092" --topic "bbl-kafka"  

consumer

  bin/kafka-console-consumer --topic "bbl-kafka" --bootstrap-server localhost:9092

KSQL

offset

  SET 'auto.offset.reset' = 'earliest';

k-streams

no-format

create stream game_users (user Varchar) WITH(kafka_topic='game-opinions-1', value_format='json');

SELECT 
    EXTRACTJSONFIELD(user, '$.source.type') AS source_type, 
    EXTRACTJSONFIELD(user, '$.name') as user_name, 
    EXTRACTJSONFIELD(user, '$.age') AS age 
FROM 
    game_users;

with-format

create stream game_users_format AS SELECT EXTRACTJSONFIELD(user, '$.source.type') AS source_type, EXTRACTJSONFIELD(user, '$.name') as user_name, EXTRACTJSONFIELD(user, '$.age') AS user_age FROM game_users;
SELECT 
    source_type, 
    user_name, 
    age 
FROM 
    game_users_format;

k-table

CREATE TABLE game_user_sources WITH(
    kafka_topic='game_user_sources'
) 
AS
SELECT 
    source_type, 
    COUNT(source_type) AS count_sources
FROM 
    game_users_format
GROUP BY
    source_type
SELECT source_type, count_sources FROM game_user_sources;

bbl-kafka's People

Contributors

plisken1997 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.