Sem descrição

Burke Libbey 3db6aefb5a 2nd draft rewrite of multiproducer. Untested: just a braindump. há 12 anos atrás
.gitignore 78d686d98d Initial commit há 12 anos atrás
.travis.yml e44cb688da Add basic Travis config file há 12 anos atrás
MIT-LICENSE 86b4691cdd Add license information há 12 anos atrás
README.md 8423f8cfeb Tweak README há 12 anos atrás
broker.go 3a0483dc2b Allow configuration of per-broker concurrency. há 12 anos atrás
broker_test.go 3a0483dc2b Allow configuration of per-broker concurrency. há 12 anos atrás
client.go aa086bfe0b Add empty topic error handling há 12 anos atrás
client_test.go d1bbdae1d5 Make Client.Leader() public. há 12 anos atrás
consumer.go 3f1ee04b51 Add error handling for empty topics há 12 anos atrás
consumer_test.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
crc32_field.go 4969d24fa1 kafka->sarama há 12 anos atrás
encoder_decoder.go 4969d24fa1 kafka->sarama há 12 anos atrás
errors.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
fetch_request.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
fetch_request_test.go 4969d24fa1 kafka->sarama há 12 anos atrás
fetch_response.go 4969d24fa1 kafka->sarama há 12 anos atrás
fetch_response_test.go b08596183c Flatten nested ifs with DeMorgan. há 12 anos atrás
length_field.go 4969d24fa1 kafka->sarama há 12 anos atrás
message.go 901b907636 Revert "Compression codec is high three bits, not low" há 12 anos atrás
message_set.go 4969d24fa1 kafka->sarama há 12 anos atrás
message_test.go 901b907636 Revert "Compression codec is high three bits, not low" há 12 anos atrás
metadata_request.go 4969d24fa1 kafka->sarama há 12 anos atrás
metadata_request_test.go 4969d24fa1 kafka->sarama há 12 anos atrás
metadata_response.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
metadata_response_test.go b08596183c Flatten nested ifs with DeMorgan. há 12 anos atrás
multiproducer.go 3db6aefb5a 2nd draft rewrite of multiproducer. Untested: just a braindump. há 12 anos atrás
multiproducer_test.go 586f9e155c First crack at a MultiProducer há 12 anos atrás
offset_commit_request.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
offset_commit_request_test.go 4969d24fa1 kafka->sarama há 12 anos atrás
offset_commit_response.go 4969d24fa1 kafka->sarama há 12 anos atrás
offset_commit_response_test.go b08596183c Flatten nested ifs with DeMorgan. há 12 anos atrás
offset_fetch_request.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
offset_fetch_request_test.go 4969d24fa1 kafka->sarama há 12 anos atrás
offset_fetch_response.go 4969d24fa1 kafka->sarama há 12 anos atrás
offset_fetch_response_test.go b08596183c Flatten nested ifs with DeMorgan. há 12 anos atrás
offset_request.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
offset_request_test.go 4969d24fa1 kafka->sarama há 12 anos atrás
offset_response.go 2565bc81b7 Add an OffsetMethod that permits specifying other methods of determining the offset, such as querying the broker há 12 anos atrás
offset_response_test.go b08596183c Flatten nested ifs with DeMorgan. há 12 anos atrás
packet_decoder.go 4969d24fa1 kafka->sarama há 12 anos atrás
packet_encoder.go 4969d24fa1 kafka->sarama há 12 anos atrás
partitioner.go f8f6c2a832 Fix HashPartitioner returning negative partitions. há 12 anos atrás
partitioner_test.go f8f6c2a832 Fix HashPartitioner returning negative partitions. há 12 anos atrás
prep_encoder.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
produce_request.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
produce_request_test.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
produce_response.go 4969d24fa1 kafka->sarama há 12 anos atrás
produce_response_test.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
producer.go 586f9e155c First crack at a MultiProducer há 12 anos atrás
producer_test.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
real_decoder.go 0f5cff6a9a Return a decoding error for negative array lengths há 12 anos atrás
real_encoder.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
request.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
request_test.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
response_header.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
response_header_test.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás
sarama.go 3157a4b1f5 Improve logger documentation. há 12 anos atrás
utils.go 893044d278 Fix Golint errors, except for all the missing comments. há 12 anos atrás

README.md

sarama

Sarama is an MIT-licensed Go client library for Apache Kafka 0.8 (and later).

Documentation is available via godoc at http://godoc.org/github.com/Shopify/sarama

It is compatible with Go 1.0 and 1.1 (which means go vet on 1.1 will return some suggestions that we are ignoring for the sake of compatibility with 1.0).

A word of warning: the API is not 100% stable yet. It won't change much (in particular the low-level Broker and Request/Response objects could probably be considered frozen) but there may be the occasional parameter added or function renamed. As far as semantic versioning is concerned, we haven't quite hit 1.0.0 yet. It is absolutely stable enough to use, just expect that you might have to tweak things when you update to a newer version.

Other related links: