Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | | Refactor SimpleConsumer get_messages and _fetch | Dana Powers | 2015-06-10 | 1 | -29/+33 | |
| | | | | | | | | | | | | | | | - attempt to make these easier to read - add marginal retry logic to internal _fetch loop | |||||
* | | | Merge pull request #405 from dpkp/log_error_type | Dana Powers | 2015-06-10 | 2 | -7/+11 | |
|\ \ \ | | | | | | | | | Log response error types in consumer and producer logs | |||||
| * | | | Add error type to SimpleConsumer error logging | Dana Powers | 2015-06-10 | 1 | -5/+8 | |
| | | | | ||||||
| * | | | Log response error type in async producer | Dana Powers | 2015-06-10 | 1 | -2/+3 | |
| |/ / | ||||||
* | | | Change SimpleConsumer.reset_partition_offset to return offset / None on ↵ | Dana Powers | 2015-06-10 | 1 | -5/+19 | |
| | | | | | | | | | | | | failure (dont raise exception) | |||||
* | | | Change Consumer commit() to return True/False and log error; dont raise ↵ | Dana Powers | 2015-06-10 | 1 | -12/+18 | |
|/ / | | | | | | | client exceptions | |||||
* | | Fix KafkaClient request / response ordering | Dana Powers | 2015-06-10 | 1 | -10/+20 | |
|/ | ||||||
* | Add send/receive debug logging to async producer | Dana Powers | 2015-06-09 | 1 | -8/+11 | |
| | ||||||
* | KafkaClient log new broker and topic metadata received as INFO | Dana Powers | 2015-06-09 | 1 | -2/+2 | |
| | ||||||
* | KafkaClient: log responses by requestId for debugging | Dana Powers | 2015-06-09 | 1 | -1/+4 | |
| | ||||||
* | KafkaClient: log requestId on ConnectionError instead of hexdump of request ↵ | Dana Powers | 2015-06-09 | 1 | -6/+5 | |
| | | | | contents | |||||
* | Merge pull request #398 from dpkp/kafka_consumer_failed_payloads | Dana Powers | 2015-06-09 | 1 | -37/+61 | |
|\ | | | | | Kafka consumer failed payloads | |||||
| * | KafkaConsumer style nits | Dana Powers | 2015-06-08 | 1 | -26/+48 | |
| | | ||||||
| * | Update KafkaConsumer to handle request-specific FailedPayloadsErrors | Dana Powers | 2015-06-08 | 1 | -11/+13 | |
| | | ||||||
* | | Support sync_fail_on_error kwarg in Producer | Dana Powers | 2015-06-09 | 1 | -2/+12 | |
| | | ||||||
* | | Use a list, not request_tries.keys(), to track requests / responses in async ↵ | Dana Powers | 2015-06-09 | 1 | -2/+4 | |
|/ | | | | producer | |||||
* | Fixup for loop vars in kafka/protocol.py | Dana Powers | 2015-06-08 | 1 | -14/+14 | |
| | ||||||
* | Improve kafka client debug request/response logging | Dana Powers | 2015-06-08 | 1 | -5/+5 | |
| | ||||||
* | Prefer single quotes for strings | Dana Powers | 2015-06-08 | 1 | -14/+12 | |
| | ||||||
* | Add a few extra docstring comments about thread-safe clients/connections | Dana Powers | 2015-06-08 | 3 | -5/+12 | |
| | ||||||
* | Dont maintain all producer args / kwargs in subclass __init__ and docstrings ↵ | Dana Powers | 2015-06-08 | 2 | -91/+24 | |
| | | | | -- just refer to super class (Producer) | |||||
* | Cleanup imports in kafka/client and kafka/consumer | Dana Powers | 2015-06-08 | 3 | -23/+21 | |
| | ||||||
* | Merge pull request #389 from dpkp/task_done_key_error | Dana Powers | 2015-06-08 | 1 | -2/+10 | |
|\ | | | | | KafkaConsumer.task_done: warn and skip unrecognized topic-partitions | |||||
| * | KafkaConsumer.task_done - warn and skip messages from unrecognized ↵ | Dana Powers | 2015-06-06 | 1 | -2/+10 | |
| | | | | | | | | topic-partitions | |||||
* | | SimpleConsumer should refresh metadata and retry on leadership changes; only ↵ | Dana Powers | 2015-06-08 | 1 | -1/+4 | |
| | | | | | | | | raise on UnknownTopicOrPartition | |||||
* | | Merge pull request #380 from dpkp/multiprocess_consumer_partitions | Dana Powers | 2015-06-08 | 1 | -3/+7 | |
|\ \ | | | | | | | Support optional partitions kwarg in MultiProcessConsumer | |||||
| * | | Support optional partitions kwarg in MultiProcessConsumer | Dana Powers | 2015-05-17 | 1 | -3/+7 | |
| | | | ||||||
* | | | Merge pull request #379 from dpkp/deprecate_keyed_producer_send | Dana Powers | 2015-06-08 | 1 | -5/+6 | |
|\ \ \ | | | | | | | | | Deprecate KeyedProducer.send in favor of send_messages | |||||
| * | | | Deprecate KeyedProducer.send in favor of send_messages -- keep interface ↵ | Dana Powers | 2015-05-17 | 1 | -5/+6 | |
| | | | | | | | | | | | | | | | | consistent | |||||
* | | | | try to fix uncaught FailedPayloadsError | reAsOn2010 | 2015-06-09 | 2 | -1/+10 | |
| | | | | ||||||
* | | | | Add async_stop_timeout parameter to tune how long to let the producer | Dana Powers | 2015-06-06 | 1 | -3/+26 | |
| | | | | | | | | | | | | | | | | | | | | keep trying to send messages before timing out. Log an error if async producer was stopped before all messages sent. | |||||
* | | | | Dont stop async producer until all pending messages have been processed | Dana Powers | 2015-06-06 | 1 | -1/+1 | |
| | | | | ||||||
* | | | | Update Producer class docstring | Dana Powers | 2015-06-06 | 1 | -4/+25 | |
| | | | | ||||||
* | | | | Deprecate async producer batch_send kwarg -- use 'async' instead | Dana Powers | 2015-06-06 | 3 | -26/+44 | |
| | | | | ||||||
* | | | | Log retries and failed messages in async producer (configurable as full ↵ | Dana Powers | 2015-06-06 | 1 | -12/+24 | |
| | | | | | | | | | | | | | | | | messages or hash()) | |||||
* | | | | PR 331 fixup: do not attempt to get new messages if there are pending retries | Dana Powers | 2015-06-06 | 1 | -4/+9 | |
| | | | | ||||||
* | | | | PR 331 fixup: Rename reqs dict to request_tries | Dana Powers | 2015-06-06 | 1 | -9/+13 | |
| | | | | ||||||
* | | | | PR 331 fixup: Dont need try/except when calling send_produce_requests with ↵ | Dana Powers | 2015-06-06 | 1 | -15/+16 | |
| | | | | | | | | | | | | | | | | fail_on_error=False | |||||
* | | | | PR 331 fixup: log warnings on async producer backoff and metadata refresh | Dana Powers | 2015-06-06 | 1 | -1/+2 | |
| | | | | ||||||
* | | | | PR 331 fixup: Support unlimited retries with async_retry_limit=None | Dana Powers | 2015-06-06 | 1 | -6/+8 | |
| | | | | | | | | | | | | | | | | Async producer defaults are now retry everything always w/ 100ms backoff | |||||
* | | | | PR 331 fixup: fix _handle_error closure | Dana Powers | 2015-06-06 | 1 | -16/+17 | |
| | | | | ||||||
* | | | | PR 331 fixup: Fix kafka.common imports from kafka.producer.base (one import ↵ | Dana Powers | 2015-06-06 | 1 | -3/+2 | |
| | | | | | | | | | | | | | | | | block, add ProduceResponse) | |||||
* | | | | KafkaClient should try/except ConnnectionError when calling _get_conn | Dana Powers | 2015-06-06 | 1 | -2/+2 | |
| | | | | ||||||
* | | | | FailedPayloadsError now only has a single payload; use .payload attribute | Dana Powers | 2015-06-06 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | .failed_payloads attribute has been removed. | |||||
* | | | | Raise an error if we attempt to group duplicate topic-partition payloads | Dana Powers | 2015-06-06 | 2 | -0/+5 | |
| | | | | | | | | | | | | | | | | - previously this would simply drop one of the payloads | |||||
* | | | | Use separate module loggers instead of a single 'kafka' logger | Dana Powers | 2015-06-06 | 9 | -9/+17 | |
| |_|/ |/| | | ||||||
* | | | Fix import error in kafka/producer/base.py | Dana Powers | 2015-06-06 | 1 | -1/+1 | |
| | | | ||||||
* | | | Set __version__ string in kafka/version.py | Dana Powers | 2015-06-04 | 2 | -3/+2 | |
| | | | ||||||
* | | | Check response.error for async producer | Viktor Shlapakov | 2015-06-03 | 1 | -19/+24 | |
| | | | ||||||
* | | | Async producer: py2.6 backward compatibility fix | Viktor Shlapakov | 2015-06-03 | 1 | -2/+2 | |
| | | |