Code Monkey home page Code Monkey logo

kafe's Introduction

A Kafka client for Erlang and Elixir

Copyright (c) 2014, 2015 Finexkap, 2015 G-Corp, 2015, 2016 BotsUnit

Version: 2.0.0

Authors: Gregoire Lejeune ([email protected]), Gregoire Lejeune ([email protected]), Gregoire Lejeune ([email protected]).

Hex.pm version Hex.pm downloads License Build Status

Version 2.0.0 cause changes in the following APIs :

Kafe has been tested with Kafka 0.9 and 0.10

You can also use it with Kafka 0.8 but kafe_consumer is not compatible with this version.

Links

Configuration

brokers[{inet:hostname(), inet:port_number()}]List of brokers[{"localhost", 9092}]
pool_sizeinteger()Initial connection pool/brocker5
chunk_pool_sizeinteger()Size of new connection pool/brocker10
brokers_update_frequencyinteger()Frequency (ms) for brokers update60000
client_idbinary()Client ID Name<<"kafe">>
api_versioninteger()API Version1*
correlation_idinteger()Correlation ID0
socket[{sndbuf, integer()}, {recbuf, integer()}, {buffer, integer()}]Socker configuration[{sndbuf, 4194304}, {recbuf, 4194304}, {buffer, 4194304}]

* use 0 with Kafka >= 0.8 < 0.9 ; 1 with Kafka >= 0.9 < 0.10 ; 2 with Kafka >= 0.10

Example :


[
  {kafe, [
    {brokers, [
      {"localhost", 9092},
      {"localhost", 9093},
      {"localhost", 9094}
    ]},
    {pool_size, 1},
    {chunk_pool_size, 2},
    {brokers_update_frequency, 10000},
    {client_id, <<"kafe">>},
    {api_version, 1},
    {correlation_id, 0},
    {socket, [
      {sndbuf, 4194304},
      {recbuf, 4194304},
      {buffer, 4194304}
    ]},
  ]}
]

Kafe use lager ; see also how to configure it.

Create a consumer

Using a function

To create a consumer, create a function with 6 parameters :


-module(my_consumer).

-export([consume/6]).

consume(CommitID, Topic, Partition, Offset, Key, Value) ->
  % Do something with Topic/Partition/Offset/Key/Value
  ok.

The consume function must return ok if the message was treated, or {error, term()} on error.

Then start a new consumer :


...
kafe:start(),
...
kafe:start_consumer(my_group, fun my_consumer:consume/6, Options),
...

See kafe:start_consumer/3 for the available Options.

In the consume function, if you didn't start the consumer in autocommit mode (using before_processing | after_processing in the commit options), you need to commit manually when you have finished to treat the message. To do so, use kafe_consumer:commit/4.

When you are done with your consumer, stop it :


...
kafe:stop_consumer(my_group),
...

Using the kafe_consumer_subscriber behaviour


-module(my_consumer).
-behaviour(kafe_consumer_subscriber).

-export([init/4, handle_message/2]).
-include_lib("kafe/include/kafe_consumer.hrl").

-record(state, {
               }).

init(Group, Topic, Partition, Args) ->
  % Do something with Group, Topic, Partition, Args
  {ok, #state{}}.

handle_message(Message, State) ->
  % Do something with Message
  % And update your State (if needed)
  {ok, NewState}.

Then start a new consumer :


...
kafe:start().
...
kafe:start_consumer(my_group, {my_consumer, Args}, Options).
% Or
kafe:start_consumer(my_group, my_consumer, Options).
...

To commit a message (if you need to), use kafe_consumer:commit/4.

Using with Elixir

Elixir' users can use Kafe and Kafe.Consumer instead of :kafe and :kafe_consumer.


defmodule My.Consumer do
  def consume(commit_id, topic, partition, offset, key, value) do
    # Do something with topic/partition/offset/key/value
    :ok
  end
end

defmodule My.Consumer.Subscriber do
  behaviour Kafe.Consumer.Subscriber

  def init(group, topic, partition, args) do
    % Do something with group/topic/partition/args
    % and create the state
    {:ok, state}
  end

  def handle_message(message, state) do
    % Do something with message (record Kafe.Records.message or
    % function Kafe.Consumer.Subscriber.message/2)
    % and update (or not)the state
    {:ok, new_state}
  end
end


...
Kafe.start()
...
Kafe.start_consumer(:my_group, &My.Consumer.consume/6, options)
# or
Kafe.start_consumer(:my_group, {My.Consumer.Subscriber, args}, options)
# or
Kafe.start_consumer(:my_group, My.Consumer.Subscriber, options)
...
Kafe.stop_consumer(:my_group)
...

Metrics

You can enable metrics by adding a metrics module in your configuration :


{metrics, [
  {metrics_mod, metrics_folsom}
]}

You can choose between Folsom ({metrics_mod, metrics_folsom}), Exometer ({metrics_mod, metrics_exometer}) or Grapherl ({metrics_mod, metrics_grapherl}).

Be sure that's Folsom, Exometer or Grapherl is started before starting Kafe.


application:ensure_all_started(folsom).
application:ensure_all_started(kafe).

Metrics are disabled by default.

Kafe offers the following metrics :

NameTypeDescription
kafe_consumer.CONSUMER_GROUP.messages.fetchgaugeNumber of received messages on the last fetch for the CONSUMER_GROUP
kafe_consumer.CONSUMER_GROUP.TOPIC.PARTITION.messages.fetchgaugeNumber of received messages on the last fetch for the {TOPIC, PARTITION} and CONSUMER_GROUP
kafe_consumer.CONSUMER_GROUP.messagescounterTotal number of received messages for the CONSUMER_GROUP
kafe_consumer.CONSUMER_GROUP.TOPIC.PARTITION.messagescounterTotal number of received messages for the {TOPIC, PARTITION} and CONSUMER_GROUP
kafe_consumer.CONSUMER_GROUP.TOPIC.PARTITION.duration.fetchgaugeFetch duration (ms) per message, for the {TOPIC, PARTITION} and CONSUMER_GROUP
kafe_consumer.CONSUMER_GROUP.TOPIC.PARTITION.pending_commitsgaugeNumber of pending commits, for the {TOPIC, PARTITION} and CONSUMER_GROUP

You can add a prefix to all metrics by adding a metrics_prefix in the metrics configuration :


{metrics, [
  {metrics_mod, metrics_folsom},
  {metrics_prefix, my_bot}
]}

Build

Kafe use rebar3. So, you can use :

  • ./rebar3 compile to compile Kafe.

  • ./rebar3 eunit to run tests.

  • ./rebar3 edoc to build documentation.

  • ./rebar3 elixir generate_mix to generate mix.exs file.

  • ./rebar3 elixir generate_lib to generate Elixir bindings.

API Documentation

See documentation

Contributing

  1. Fork it ( https://github.com/botsunit/kafe/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Licence

kafe is available for use under the following license, commonly known as the 3-clause (or "modified") BSD license:

Copyright (c) 2014, 2015 Finexkap
Copyright (c) 2015, G-Corp
Copyright (c) 2015, 2016 BotsUnit

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  • The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Modules

kafe
kafe_consumer
kafe_consumer_subscriber

kafe's People

Contributors

glejeune avatar jonathanperret avatar erszcz avatar sulphur avatar

Stargazers

Paolo Oliveira avatar Mohammad Habibzadeh avatar Payam Naderi avatar Pouriya avatar

Watchers

Robert Virding avatar Nÿco avatar Bartek Górny avatar Magnus Henoch avatar Mikael Lixenstrand avatar Marcos Almonacid avatar Alejandro Mataloni avatar Harenson Henao avatar Denis Fakhrtdinov avatar Claudio Ortolina avatar Dominic Perini avatar Michael Uvarov avatar Grigory Starinkin avatar Karol Urbański avatar James Cloos avatar Sergio E. Abraham avatar Martina Freers avatar Andrzej Teleżyński avatar Francesco Cesarini avatar Bruce Yinhe avatar  avatar Ramón Lastres avatar Andres Canal avatar Tee Teoh avatar Paweł Chrząszcz avatar John Samuel avatar Laszlo Toth avatar Tatiana avatar Eva avatar Demian avatar Marc Sugiyama avatar Emiliano avatar Maja Kontrec Rönn avatar  avatar K. Kraus avatar chris avatar Premanand Thangamani avatar Zoltan Danko avatar Arek Gil avatar Ayanda Dube avatar Matias Vera avatar Eduardo Rodriguez avatar Zsolt Dudas avatar Gergely Máté avatar Bartosz Szafran avatar  avatar Pouriya avatar  avatar

Forkers

isabella232

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.