Skip to main content

The Pulsar Go client

The Pulsar Go client can be used to create Pulsar producers, consumers, and readers in Go (aka Golang).

API docs available as well For standard API docs, consult the Godoc.

Installation​

Requirements​

Pulsar Go client library is based on the C++ client library. Follow the instructions for C++ library for installing the binaries through RPM, Deb or Homebrew packages.

Installing go package​

Compatibility Warning The version number of the Go client must match the version number of the Pulsar C++ client library.

You can install the pulsar library locally using go get. Note that go get doesn't support fetching a specific tag - it will always pull in master's version of the Go client. You'll need a C++ client library that matches master.


$ go get -u github.com/apache/pulsar/pulsar-client-go/pulsar

Or you can use dep for managing the dependencies.


$ dep ensure -add github.com/apache/pulsar/pulsar-client-go/pulsar@v2.4.0

Once installed locally, you can import it into your project:


import "github.com/apache/pulsar/pulsar-client-go/pulsar"

Connection URLs​

To connect to Pulsar using client libraries, you need to specify a Pulsar protocol URL.

Pulsar protocol URLs are assigned to specific clusters, use the pulsar scheme and have a default port of 6650. Here's an example for localhost:


pulsar://localhost:6650

A URL for a production Pulsar cluster may look something like this:


pulsar://pulsar.us-west.example.com:6650

If you're using TLS authentication, the URL will look like something like this:


pulsar+ssl://pulsar.us-west.example.com:6651

Creating a client​

In order to interact with Pulsar, you'll first need a Client object. You can create a client object using the NewClient function, passing in a ClientOptions object (more on configuration below). Here's an example:


import (
"log"
"runtime"

"github.com/apache/pulsar/pulsar-client-go/pulsar"
)

func main() {
client, err := pulsar.NewClient(pulsar.ClientOptions{
URL: "pulsar://localhost:6650",
OperationTimeoutSeconds: 5,
MessageListenerThreads: runtime.NumCPU(),
})

if err != nil {
log.Fatalf("Could not instantiate Pulsar client: %v", err)
}
}

Client operations​

Pulsar Go client has the following methods available:

MethodDescriptionReturn type
CreateProducer(ProducerOptions)Create the producer instance. (This method will be blocked until the producer is created successfully.)(Producer, error)
CreateProducerWithSchema(ProducerOptions, Schema)Create a producer instance with schema.(Producer, error)
Subscribe(ConsumerOptions)Create a Consumer by subscribing to a topic.(Consumer, error)
SubscribeWithSchema(ConsumerOptions, Schema)Create a Consumer with schema by subscribing to a topic.(Consumer, error)
CreateReader(ReaderOptions)Create a Reader instance.(Reader, error)
CreateReaderWithSchema(ReaderOptions, Schema)Create a Reader instance with schema.(Reader, error)
TopicPartitions(topic string)Fetch the list of partitions for a given topic.([]string, error)
Close()Close the Pulsar Go client and release associated resources.error

The following configurable parameters are available for Pulsar clients:

ParameterDescriptionDefault
URLThe connection URL for the Pulsar cluster. See above for more info
IOThreadsThe number of threads to use for handling connections to Pulsar brokers1
OperationTimeoutSecondsThe timeout for some Go client operations (creating producers, subscribing to and unsubscribing from topics). Retries will occur until this threshold is reached, at which point the operation will fail.30
MessageListenerThreadsThe number of threads used by message listeners (consumers and readers)1
ConcurrentLookupRequestsThe number of concurrent lookup requests that can be sent on each broker connection. Setting a maximum helps to keep from overloading brokers. You should set values over the default of 5000 only if the client needs to produce and/or subscribe to thousands of Pulsar topics.5000
LoggerA custom logger implementation for the client (as a function that takes a log level, file path, line number, and message). All info, warn, and error messages will be routed to this function.nil
TLSTrustCertsFilePathThe file path for the trusted TLS certificate
TLSAllowInsecureConnectionWhether the client accepts untrusted TLS certificates from the brokerfalse
AuthenticationConfigure the authentication provider. (default: no authentication). Example: Authentication: NewAuthenticationTLS("my-cert.pem", "my-key.pem")nil
StatsIntervalInSecondsThe interval (in seconds) at which client stats are published60

Producers​

Pulsar producers publish messages to Pulsar topics. You can configure Go producers using a ProducerOptions object. Here's an example:


producer, err := client.CreateProducer(pulsar.ProducerOptions{
Topic: "my-topic",
})

if err != nil {
log.Fatalf("Could not instantiate Pulsar producer: %v", err)
}

defer producer.Close()

msg := pulsar.ProducerMessage{
Payload: []byte("Hello, Pulsar"),
}

if err := producer.Send(msg); err != nil {
log.Fatalf("Producer could not send message: %v", err)
}

Blocking operation When you create a new Pulsar producer, the operation will block (waiting on a go channel) until either a producer is successfully created or an error is thrown.

Producer operations​

Pulsar Go producers have the following methods available:

MethodDescriptionReturn type
Topic()Fetches the producer's topicstring
Name()Fetches the producer's namestring
Send(context.Context, ProducerMessage) errorPublishes a message to the producer's topic. This call will block until the message is successfully acknowledged by the Pulsar broker, or an error will be thrown if the timeout set using the SendTimeout in the producer's configuration is exceeded.error
SendAsync(context.Context, ProducerMessage, func(ProducerMessage, error))Publishes a message to the producer's topic asynchronously. The third argument is a callback function that specifies what happens either when the message is acknowledged or an error is thrown.
Close()Closes the producer and releases all resources allocated to it. If Close() is called then no more messages will be accepted from the publisher. This method will block until all pending publish requests have been persisted by Pulsar. If an error is thrown, no pending writes will be retried.error

Here's a more involved example usage of a producer:


import (
"context"
"fmt"
"log"

"github.com/apache/pulsar/pulsar-client-go/pulsar"
)

func main() {
// Instantiate a Pulsar client
client, err := pulsar.NewClient(pulsar.ClientOptions{
URL: "pulsar://localhost:6650",
})

if err != nil { log.Fatal(err) }

// Use the client to instantiate a producer
producer, err := client.CreateProducer(pulsar.ProducerOptions{
Topic: "my-topic",
})

if err != nil { log.Fatal(err) }

ctx := context.Background()

// Send 10 messages synchronously and 10 messages asynchronously
for i := 0; i < 10; i++ {
// Create a message
msg := pulsar.ProducerMessage{
Payload: []byte(fmt.Sprintf("message-%d", i)),
}

// Attempt to send the message
if err := producer.Send(ctx, msg); err != nil {
log.Fatal(err)
}

// Create a different message to send asynchronously
asyncMsg := pulsar.ProducerMessage{
Payload: []byte(fmt.Sprintf("async-message-%d", i)),
}

// Attempt to send the message asynchronously and handle the response
producer.SendAsync(ctx, asyncMsg, func(msg pulsar.ProducerMessage, err error) {
if err != nil { log.Fatal(err) }

fmt.Printf("the %s successfully published", string(msg.Payload))
})
}
}

Producer configuration​

ParameterDescriptionDefault
TopicThe Pulsar topic to which the producer will publish messages
NameA name for the producer. If you don't explicitly assign a name, Pulsar will automatically generate a globally unique name that you can access later using the Name() method. If you choose to explicitly assign a name, it will need to be unique across all Pulsar clusters, otherwise the creation operation will throw an error.
SendTimeoutWhen publishing a message to a topic, the producer will wait for an acknowledgment from the responsible Pulsar broker. If a message is not acknowledged within the threshold set by this parameter, an error will be thrown. If you set SendTimeout to -1, the timeout will be set to infinity (and thus removed). Removing the send timeout is recommended when using Pulsar's message de-duplication feature.30 seconds
MaxPendingMessagesThe maximum size of the queue holding pending messages (i.e. messages waiting to receive an acknowledgment from the broker). By default, when the queue is full all calls to the Send and SendAsync methods will fail unless BlockIfQueueFull is set to true.
MaxPendingMessagesAcrossPartitions
BlockIfQueueFullIf set to true, the producer's Send and SendAsync methods will block when the outgoing message queue is full rather than failing and throwing an error (the size of that queue is dictated by the MaxPendingMessages parameter); if set to false (the default), Send and SendAsync operations will fail and throw a ProducerQueueIsFullError when the queue is full.false
MessageRoutingModeThe message routing logic (for producers on partitioned topics). This logic is applied only when no key is set on messages. The available options are: round robin (pulsar.RoundRobinDistribution, the default), publishing all messages to a single partition (pulsar.UseSinglePartition), or a custom partitioning scheme (pulsar.CustomPartition).pulsar.RoundRobinDistribution
HashingSchemeThe hashing function that determines the partition on which a particular message is published (partitioned topics only). The available options are: pulsar.JavaStringHash (the equivalent of String.hashCode() in Java), pulsar.Murmur3_32Hash (applies the Murmur3 hashing function), or pulsar.BoostHash (applies the hashing function from C++'s Boost library)pulsar.JavaStringHash
CompressionTypeThe message data compression type used by the producer. The available options are LZ4, ZLIB, ZSTD and SNAPPY.No compression
MessageRouterBy default, Pulsar uses a round-robin routing scheme for partitioned topics. The MessageRouter parameter enables you to specify custom routing logic via a function that takes the Pulsar message and topic metadata as an argument and returns an integer (where the ), i.e. a function signature of func(Message, TopicMetadata) int.

Consumers​

Pulsar consumers subscribe to one or more Pulsar topics and listen for incoming messages produced on that topic/those topics. You can configure Go consumers using a ConsumerOptions object. Here's a basic example that uses channels:


msgChannel := make(chan pulsar.ConsumerMessage)

consumerOpts := pulsar.ConsumerOptions{
Topic: "my-topic",
SubscriptionName: "my-subscription-1",
Type: pulsar.Exclusive,
MessageChannel: msgChannel,
}

consumer, err := client.Subscribe(consumerOpts)

if err != nil {
log.Fatalf("Could not establish subscription: %v", err)
}

defer consumer.Close()

for cm := range msgChannel {
msg := cm.Message

fmt.Printf("Message ID: %s", msg.ID())
fmt.Printf("Message value: %s", string(msg.Payload()))

consumer.Ack(msg)
}

Blocking operation When you create a new Pulsar consumer, the operation will block (on a go channel) until either a producer is successfully created or an error is thrown.

Consumer operations​

Pulsar Go consumers have the following methods available:

MethodDescriptionReturn type
Topic()Returns the consumer's topicstring
Subscription()Returns the consumer's subscription namestring
Unsubcribe()Unsubscribes the consumer from the assigned topic. Throws an error if the unsubscribe operation is somehow unsuccessful.error
Receive(context.Context)Receives a single message from the topic. This method blocks until a message is available.(Message, error)
Ack(Message)Acknowledges a message to the Pulsar brokererror
AckID(MessageID)Acknowledges a message to the Pulsar broker by message IDerror
AckCumulative(Message)Acknowledges all the messages in the stream, up to and including the specified message. The AckCumulative method will block until the ack has been sent to the broker. After that, the messages will not be redelivered to the consumer. Cumulative acking can only be used with a shared subscription type.error
Nack(Message)Acknowledge the failure to process a single message.error
NackID(MessageID)Acknowledge the failure to process a single message.error
Close()Closes the consumer, disabling its ability to receive messages from the brokererror
RedeliverUnackedMessages()Redelivers all unacknowledged messages on the topic. In failover mode, this request is ignored if the consumer isn't active on the specified topic; in shared mode, redelivered messages are distributed across all consumers connected to the topic. Note: this is a non-blocking operation that doesn't throw an error.
Schema()Set the message schema definitionSchema

Receive example​

Here's an example usage of a Go consumer that uses the Receive() method to process incoming messages:


import (
"context"
"log"

"github.com/apache/pulsar/pulsar-client-go/pulsar"
)

func main() {
// Instantiate a Pulsar client
client, err := pulsar.NewClient(pulsar.ClientOptions{
URL: "pulsar://localhost:6650",
})

if err != nil { log.Fatal(err) }

// Use the client object to instantiate a consumer
consumer, err := client.Subscribe(pulsar.ConsumerOptions{
Topic: "my-golang-topic",
SubscriptionName: "sub-1",
SubscriptionType: pulsar.Exclusive,
})

if err != nil { log.Fatal(err) }

defer consumer.Close()

ctx := context.Background()

// Listen indefinitely on the topic
for {
msg, err := consumer.Receive(ctx)
if err != nil { log.Fatal(err) }

// Do something with the message
err = processMessage(msg)

if err == nil {
// Message processed successfully
consumer.Ack(msg)
} else {
// Failed to process messages
consumer.Nack(msg)
}
}
}

Schema example​

This example shows how to create a producer and consumer with schema.


var exampleSchemaDef = "{\"type\":\"record\",\"name\":\"Example\",\"namespace\":\"test\"," +
"\"fields\":[{\"name\":\"ID\",\"type\":\"int\"},{\"name\":\"Name\",\"type\":\"string\"}]}"
jsonSchema := NewJsonSchema(exampleSchemaDef, nil)

// create producer
producer, err := client.CreateProducerWithSchema(ProducerOptions{
Topic: "jsonTopic",
}, jsonSchema)
err = producer.Send(context.Background(), ProducerMessage{
Value: &testJson{
ID: 100,
Name: "pulsar",
},
})
if err != nil {
log.Fatal(err)
}
defer producer.Close()

//create consumer
var s testJson

consumerJS := NewJsonSchema(exampleSchemaDef, nil)
consumer, err := client.SubscribeWithSchema(ConsumerOptions{
Topic: "jsonTopic",
SubscriptionName: "sub-2",
}, consumerJS)
if err != nil {
log.Fatal(err)
}
msg, err := consumer.Receive(context.Background())
if err != nil {
log.Fatal(err)
}
err = msg.GetValue(&s)
if err != nil {
log.Fatal(err)
}
fmt.Println(s.ID) // output: 100
fmt.Println(s.Name) // output: pulsar

defer consumer.Close()

Consumer configuration​

ParameterDescriptionDefault
TopicThe Pulsar topic on which the consumer will establish a subscription and listen for messages
SubscriptionNameThe subscription name for this consumer
NameThe name of the consumer
AckTimeout0
NackRedeliveryDelayThe delay after which to redeliver the messages that failed to be processed. Default is 1min. (See Consumer.Nack())1 minute
SubscriptionTypeAvailable options are Exclusive, Shared, Key_Shared and FailoverExclusive
MessageChannelThe Go channel used by the consumer. Messages that arrive from the Pulsar topic(s) will be passed to this channel.
ReceiverQueueSizeSets the size of the consumer's receiver queue, i.e. the number of messages that can be accumulated by the consumer before the application calls Receive. A value higher than the default of 1000 could increase consumer throughput, though at the expense of more memory utilization.1000
MaxTotalReceiverQueueSizeAcrossPartitionsSet the max total receiver queue size across partitions. This setting will be used to reduce the receiver queue size for individual partitions if the total exceeds this value50000
NameSet the consumer name.string
ReadCompactedIf enabled, the consumer will read messages from the compacted topic rather than reading the full message backlog of the topic.bool
SchemaMessage schema definition

Readers​

Pulsar readers process messages from Pulsar topics. Readers are different from consumers because with readers you need to explicitly specify which message in the stream you want to begin with (consumers, on the other hand, automatically begin with the most recent unacked message). You can configure Go readers using a ReaderOptions object. Here's an example:


reader, err := client.CreateReader(pulsar.ReaderOptions{
Topic: "my-golang-topic",
StartMessageId: pulsar.LatestMessage,
})

Blocking operation When you create a new Pulsar reader, the operation will block (on a go channel) until either a reader is successfully created or an error is thrown.

Reader operations​

Pulsar Go readers have the following methods available:

MethodDescriptionReturn type
Topic()Returns the reader's topicstring
Next(context.Context)Receives the next message on the topic (analogous to the Receive method for consumers). This method blocks until a message is available.(Message, error)
Close()Closes the reader, disabling its ability to receive messages from the brokererror

"Next" example​

Here's an example usage of a Go reader that uses the Next() method to process incoming messages:


import (
"context"
"log"

"github.com/apache/pulsar/pulsar-client-go/pulsar"
)

func main() {
// Instantiate a Pulsar client
client, err := pulsar.NewClient(pulsar.ClientOptions{
URL: "pulsar://localhost:6650",
})

if err != nil { log.Fatalf("Could not create client: %v", err) }

// Use the client to instantiate a reader
reader, err := client.CreateReader(pulsar.ReaderOptions{
Topic: "my-golang-topic",
StartMessageID: pulsar.EarliestMessage,
})

if err != nil { log.Fatalf("Could not create reader: %v", err) }

defer reader.Close()

ctx := context.Background()

// Listen on the topic for incoming messages
for {
msg, err := reader.Next(ctx)
if err != nil { log.Fatalf("Error reading from topic: %v", err) }

// Process the message
}
}

In the example above, the reader begins reading from the earliest available message (specified by pulsar.EarliestMessage). The reader can also begin reading from the latest message (pulsar.LatestMessage) or some other message ID specified by bytes using the DeserializeMessageID function, which takes a byte array and returns a MessageID object. Here's an example:


lastSavedId := // Read last saved message id from external store as byte[]

reader, err := client.CreateReader(pulsar.ReaderOptions{
Topic: "my-golang-topic",
StartMessageID: DeserializeMessageID(lastSavedId),
})

Reader configuration​

ParameterDescriptionDefault
TopicThe Pulsar topic on which the reader will establish a subscription and listen for messages
NameThe name of the reader
StartMessageIDThe initial reader position, i.e. the message at which the reader begins processing messages. The options are pulsar.EarliestMessage (the earliest available message on the topic), pulsar.LatestMessage (the latest available message on the topic), or a MessageID object for a position that isn't earliest or latest.
MessageChannelThe Go channel used by the reader. Messages that arrive from the Pulsar topic(s) will be passed to this channel.
ReceiverQueueSizeSets the size of the reader's receiver queue, i.e. the number of messages that can be accumulated by the reader before the application calls Next. A value higher than the default of 1000 could increase reader throughput, though at the expense of more memory utilization.1000
SubscriptionRolePrefixThe subscription role prefix.reader

Messages​

The Pulsar Go client provides a ProducerMessage interface that you can use to construct messages to producer on Pulsar topics. Here's an example message:


msg := pulsar.ProducerMessage{
Payload: []byte("Here is some message data"),
Key: "message-key",
Properties: map[string]string{
"foo": "bar",
},
EventTime: time.Now(),
ReplicationClusters: []string{"cluster1", "cluster3"},
}

if err := producer.send(msg); err != nil {
log.Fatalf("Could not publish message due to: %v", err)
}

The following methods parameters are available for ProducerMessage objects:

ParameterDescription
PayloadThe actual data payload of the message
KeyThe optional key associated with the message (particularly useful for things like topic compaction)
PropertiesA key-value map (both keys and values must be strings) for any application-specific metadata attached to the message
EventTimeThe timestamp associated with the message
ReplicationClustersThe clusters to which this message will be replicated. Pulsar brokers handle message replication automatically; you should only change this setting if you want to override the broker default.

TLS encryption and authentication​

In order to use TLS encryption, you'll need to configure your client to do so:

  • Use pulsar+ssl URL type
  • Set TLSTrustCertsFilePath to the path to the TLS certs used by your client and the Pulsar broker
  • Configure Authentication option

Here's an example:


opts := pulsar.ClientOptions{
URL: "pulsar+ssl://my-cluster.com:6651",
TLSTrustCertsFilePath: "/path/to/certs/my-cert.csr",
Authentication: NewAuthenticationTLS("my-cert.pem", "my-key.pem"),
}