Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Vendor six 1.10.0six | Dana Powers | 2016-08-01 | 1 | -1/+1 |
| | |||||
* | Use socket_options configuration to setsockopts(). Default TCP_NODELAY (#783) | Dana Powers | 2016-08-01 | 1 | -4/+9 |
| | |||||
* | Document the ssl_password config option (#780) | Samuel Taylor | 2016-07-26 | 1 | -0/+2 |
| | | | | PR #750 added the code for passing along a password, but not any documentation on it | ||||
* | Fix typo in KafkaConsumer documentation (#775) | Samuel Taylor | 2016-07-21 | 1 | -1/+1 |
| | |||||
* | KAFKA-2832: Add a consumer config option to exclude internal topics (#765) | Dana Powers | 2016-07-17 | 1 | -0/+5 |
| | | | | Use exclude_internal_topics config in KafkaConsumer to avoid subscribe patterns matching internal topics Raise error during rebalance if subscribed topics are not authorized | ||||
* | Expose selector type as config option (#764) | Dana Powers | 2016-07-16 | 1 | -1/+5 |
| | |||||
* | Update kafka configuration links -> 0.10.0.0 docs | Dana Powers | 2016-07-16 | 1 | -1/+1 |
| | |||||
* | First stab at public metrics() interface for KafkaConsumer / KafkaProducer | Dana Powers | 2016-07-16 | 1 | -2/+16 |
| | |||||
* | Fixup metrics_sample_window_ms docstring in consumer | Dana Powers | 2016-07-16 | 1 | -2/+2 |
| | |||||
* | Add api_version config to KafkaClient, deprecate str in favor of tuples (#761) | Dana Powers | 2016-07-16 | 1 | -16/+28 |
| | |||||
* | Add skip_double_compressed_messages option to KafkaConsumerunrecurse_unpack_message_set | Dana Powers | 2016-07-14 | 1 | -0/+8 |
| | |||||
* | Update consumer_timeout_ms docstring per #749 | Dana Powers | 2016-07-08 | 1 | -3/+3 |
| | |||||
* | Add ssl_password to default_config dicts. Send ssl_password when loading ↵ | Ashley McKemie | 2016-07-08 | 1 | -0/+1 |
| | | | | cert chains (#750) | ||||
* | allow client.check_version timeout to be set in Producer and Consumer ↵ | eastlondoner | 2016-06-29 | 1 | -1/+5 |
| | | | | | constructors (#647) * allow client.check_version timeout to be set in Producer and Consumer constructors | ||||
* | Add CRL support to SSL support (#683) | Vincent Bernat | 2016-05-19 | 1 | -0/+6 |
| | | | | A user can provide a CRL whose peer certificate will be checked against. This only works with Python 3.4+ and Python 2.7.9+. | ||||
* | Add protocol support for ApiVersionRequest; identify 0.10 brokers in ↵check_version_0_10 | Dana Powers | 2016-05-02 | 1 | -1/+1 |
| | | | | check_version | ||||
* | instrument metrics for fetch requests | Zack Dever | 2016-04-13 | 1 | -2/+2 |
| | |||||
* | Beginnings of metrics instrumentation in kafka consumer. | Zack Dever | 2016-04-13 | 1 | -6/+23 |
| | | | | | | This adds the parent metrics instance to kafka consumer, which will eventually be used to instrument everything under consumer. To start I ported the java consumer coordinator metrics. | ||||
* | Add SSL configuration kwargs to KafkaClient, KafkaConsumer, KafkaProducer | Dana Powers | 2016-04-09 | 1 | -0/+21 |
| | |||||
* | Default sleep=True in client.poll | Dana Powers | 2016-04-08 | 1 | -1/+1 |
| | |||||
* | Update imports from kafka.common -> kafka.errors / kafka.structs | Dana Powers | 2016-04-05 | 1 | -1/+1 |
| | |||||
* | Merge pull request #602 from zackdever/KAFKA-2698 | Dana Powers | 2016-03-17 | 1 | -0/+8 |
|\ | | | | | KAFKA-2698: add paused API | ||||
| * | KAFKA-2698: add paused API | Zack Dever | 2016-03-16 | 1 | -0/+8 |
| | | |||||
* | | Add default_offset_commit_callback to KafkaConsumer DEFAULT_CONFIGS | Dana Powers | 2016-03-17 | 1 | -0/+1 |
|/ | |||||
* | KafkaConsumer.poll should sleep to prevent tight-loopsconsumer_poll_sleep | Dana Powers | 2016-03-14 | 1 | -1/+1 |
| | |||||
* | Raise TypeError in KafkaConsumer when partition is not a TopicPartitiontopic_partition_type_error | Dana Powers | 2016-03-14 | 1 | -0/+17 |
| | |||||
* | Consumer should timeout internal iterator if heartbeat ttl is expiredconsumer_heartbeat_fixes | Dana Powers | 2016-03-12 | 1 | -3/+15 |
| | |||||
* | factor group checking logic to KafkaConsumer._use_consumer_group() | Dana Powers | 2016-03-12 | 1 | -24/+37 |
| | |||||
* | Bug fix: KafkaConsumer.position() | Stefán Þorvarðarson | 2016-03-09 | 1 | -1/+1 |
| | | | | | Method KafkaConsumer.position() was not refreshing position correctly when calling self._update_fetch_positions(). | ||||
* | Merge pull request #557 from dpkp/socket_buffer_size_optional | Dana Powers | 2016-02-18 | 1 | -4/+6 |
|\ | | | | | Dont override system rcvbuf or sndbuf unless user configures explicitly | ||||
| * | Dont override system rcvbuf or sndbuf unless user configures explicitlysocket_buffer_size_optional | Dana Powers | 2016-02-17 | 1 | -4/+6 |
| | | |||||
* | | Add RangePartitionAssignor (and use as default); add assignor testsrange_assignor | Dana Powers | 2016-02-16 | 1 | -2/+4 |
|/ | |||||
* | KAFKA-3044: Re-word consumer.poll behaviour | Dana Powers | 2016-02-15 | 1 | -3/+4 |
| | |||||
* | Issue 545: Convert deserializer StopIteration errors to raw Exceptions | Dana Powers | 2016-02-15 | 1 | -1/+1 |
| | |||||
* | Fix Typos (Issue 536) | Dana Powers | 2016-02-15 | 1 | -1/+1 |
| | |||||
* | KAFKA-3191: Improve offset committing docstrings | Dana Powers | 2016-02-02 | 1 | -2/+6 |
| | |||||
* | a few extra AssertionError messages in KafkaConsumer | Dana Powers | 2016-02-02 | 1 | -2/+2 |
| | |||||
* | KAFKA-3170: default consumer config for fetch_min_bytes should be 1 | Dana Powers | 2016-02-02 | 1 | -2/+2 |
| | |||||
* | Add more assertions in KafkaConsumer (primarily to seek* methods) | Dana Powers | 2016-02-01 | 1 | -3/+28 |
| | |||||
* | Be sure to get all metadata when subscribing to a regex pattern. | Dana Powers | 2016-02-01 | 1 | -12/+19 |
| | |||||
* | Implement KafkaConsumer.topics() | Dana Powers | 2016-02-01 | 1 | -7/+14 |
| | | | | | - add ClusterMetadata.need_all_topic_metadata attribute - client requests metadata for all topics if attribute True | ||||
* | Add KafkaConsumer.highwater(partition) to get highwater offsets from ↵ | Dana Powers | 2016-01-31 | 1 | -0/+22 |
| | | | | FetchResponses | ||||
* | Fix internal timeout / sleep handling in consumer iteratoriterator_timeout | Dana Powers | 2016-01-29 | 1 | -15/+16 |
| | |||||
* | Disable offset commits and auto-partition-assignment when group_id is None | Dana Powers | 2016-01-24 | 1 | -20/+28 |
| | |||||
* | Sleep in KafkaConsumer iterator if no partition assignment; dont block in ↵iterator_fetches | Dana Powers | 2016-01-12 | 1 | -4/+25 |
| | | | | poll if no in-flight fetches | ||||
* | Move consumer_timeout handling to private method | Dana Powers | 2016-01-12 | 1 | -5/+7 |
| | |||||
* | Reorganize init_fetches calls during iteration | Dana Powers | 2016-01-10 | 1 | -2/+3 |
| | | | | | | | Generally should not init_fetches while the generator has pending messages; this revision adds an explicit check / noop to the public interface, and uses a private method internally to attempt to pipeline fetch requests. | ||||
* | Fetcher logging should be debug or trace (left higher during testing) | Dana Powers | 2016-01-10 | 1 | -0/+1 |
| | |||||
* | Pass consumer timeout to client.poll() in iterator; check timeout before ↵idle_sleep | Dana Powers | 2016-01-10 | 1 | -1/+4 |
| | | | | iterating fetcher | ||||
* | Fix sec / millisec unit bug in KafkaConsumer._poll_once() | Dana Powers | 2016-01-10 | 1 | -1/+1 |
| |