|
NAMEKafka::Producer - Perl interface for Kafka producer client. VERSIONThis documentation refers to "Kafka::Producer" version 0.8010 . SYNOPSIS use 5.010;
use strict;
use warnings;
use Scalar::Util qw(
blessed
);
use Try::Tiny;
use Kafka::Connection;
use Kafka::Producer;
my ( $connection, $producer );
try {
#-- Connection
$connection = Kafka::Connection->new( host => 'localhost' );
#-- Producer
$producer = Kafka::Producer->new( Connection => $connection );
# Sending a single message
my $response = $producer->send(
'mytopic', # topic
0, # partition
'Single message' # message
);
# Sending a series of messages
$response = $producer->send(
'mytopic', # topic
0, # partition
[ # messages
'The first message',
'The second message',
'The third message',
]
);
} catch {
if ( blessed( $_ ) && $_->isa( 'Kafka::Exception' ) ) {
warn 'Error: (', $_->code, ') ', $_->message, "\n";
exit;
} else {
die $_;
}
};
# Closes the producer and cleans up
undef $producer;
undef $connection;
DESCRIPTIONKafka producer API is implemented by "Kafka::Producer" class. The main features of the "Kafka::Producer" class are:
CONSTRUCTOR"new" Creates new producer client object. new() takes arguments in key-value pairs. The following arguments are currently recognized:
METHODSThe following methods are defined for the "Kafka::Producer" class: "send( $topic, $partition, $messages, $key, $compression_codec )" Sends a messages on a Kafka::Connection object. Returns a non-blank value (a reference to a hash with server response description) if the message is successfully sent. send() takes the following arguments:
DIAGNOSTICSWhen error is detected, an exception, represented by object of "Kafka::Exception::Producer" class, is thrown (see Kafka::Exceptions). code and a more descriptive message provide information about thrown exception. Consult documentation of the Kafka::Exceptions for the list of all available methods. Authors suggest using of Try::Tiny's "try" and "catch" to handle exceptions while working with Kafka package.
SEE ALSOThe basic operation of the Kafka package modules: Kafka - constants and messages used by the Kafka package modules. Kafka::Connection - interface to connect to a Kafka cluster. Kafka::Producer - interface for producing client. Kafka::Consumer - interface for consuming client. Kafka::Message - interface to access Kafka message properties. Kafka::Int64 - functions to work with 64 bit elements of the protocol on 32 bit systems. Kafka::Protocol - functions to process messages in the Apache Kafka's Protocol. Kafka::IO - low-level interface for communication with Kafka server. Kafka::Exceptions - module designated to handle Kafka exceptions. Kafka::Internals - internal constants and functions used by several package modules. A wealth of detail about the Apache Kafka and the Kafka Protocol: Main page at <http://kafka.apache.org/> Kafka Protocol at <https://cwiki.apache.org/confluence/display/KAFKA/A+Guide+To+The+Kafka+Protocol> SOURCE CODEKafka package is hosted on GitHub: <https://github.com/TrackingSoft/Kafka> AUTHORSergey Gladkov, <sgladkov@trackingsoft.com> CONTRIBUTORSAlexander Solovey Jeremy Jordan Sergiy Zuban Vlad Marchenko COPYRIGHT AND LICENSECopyright (C) 2012-2013 by TrackingSoft LLC. This package is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic at <http://dev.perl.org/licenses/artistic.html>. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|