summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix producer threading bug that could crash sender (dict changing during ↵accumulator_bugfixDana Powers2016-03-141-2/+4
| | | | iteration)
* Fixup test fixtures for pylintDana Powers2016-03-132-1/+11
|
* Merge pull request #585 from dpkp/truncate_bufferDana Powers2016-03-132-17/+27
|\ | | | | Truncate deallocated message buffers
| * Always truncate deallocated produce message bufferstruncate_bufferDana Powers2016-03-131-12/+5
| |
| * Reduce end-to-end test to 100 messages; raise produce future exceptions ↵Dana Powers2016-03-131-5/+9
| | | | | | | | immediately
| * Add SimpleBufferPool test to verify reallocated buffers are emptyDana Powers2016-03-131-0/+13
| |
* | Improve Fixture loggingDana Powers2016-03-1310-63/+59
|/ | | | | | | - remove double console appenders from log4j.properties - also log to server.log file for interactive uses - drop internal _spawn from SpawnedService loop - write captured stdout/stderr directly to avoid logger re-formatting
* Add ignore_leadernotavailable kwarg to SimpleClient.load_metadata_for_topicsDana Powers2016-03-133-11/+15
|
* Use producer retries and flush timeout in producer end-to-end testDana Powers2016-03-131-1/+2
|
* Add optional timeout parameter to KafkaProducer.flush()Dana Powers2016-03-132-9/+13
|
* Fix for FutureProduceResult.await on python2.6Dana Powers2016-03-131-1/+2
|
* Move logging format config to tox.ini to avoid duplicate log capture in ↵Dana Powers2016-03-132-2/+1
| | | | pytest output
* Merge pull request #583 from dpkp/consumer_heartbeat_fixesDana Powers2016-03-124-45/+108
|\ | | | | Fix Consumer Heartbeat Bugs
| * Consumer should timeout internal iterator if heartbeat ttl is expiredconsumer_heartbeat_fixesDana Powers2016-03-121-3/+15
| |
| * Add heartbeat timeout testDana Powers2016-03-121-3/+24
| |
| * factor group checking logic to KafkaConsumer._use_consumer_group()Dana Powers2016-03-121-24/+37
| |
| * Log successful heartbeat as INFO; improve heartbeat response loggingDana Powers2016-03-121-11/+12
| |
| * HeartbeatTask should reschedule heartbeat on coordinator_unknown()Dana Powers2016-03-121-2/+6
| |
| * Add test for unknown coordinator heartbeat taskDana Powers2016-03-121-2/+14
|/
* Add timestamps to basic test loggingDana Powers2016-03-121-1/+2
|
* Sync rendered fixture templates to disk to avoid racesDana Powers2016-03-121-0/+8
|
* Improve Zookeeper / Kafka Fixture managementDana Powers2016-03-122-4/+22
| | | | | | - spawn fixtures via daemon threads - close fixtures atexit and in __del__ to avoid interpreter hangs - raise Exception on timeouts in open()
* Merge pull request #567 from twm/patch-1Dana Powers2016-03-091-1/+1
|\ | | | | Silence suprious warnings
| * Update base.pyTom Most2016-02-261-1/+1
| | | | | | | | | | | | | | | | | | Our app uses `SimpleProducer` and logs lots of these warnings (from line 438): producer.stop() called, but producer is not async This destructor appears to be the cause. (Also, is it wise to do a thread join from a destructor?)
* | Merge pull request #578 from stefanth/bugfix-stefanth-1Dana Powers2016-03-091-1/+1
|\ \ | | | | | | Bug fix: KafkaConsumer.position()
| * | Bug fix: KafkaConsumer.position()Stefán Þorvarðarson2016-03-091-1/+1
|/ / | | | | | | | | Method KafkaConsumer.position() was not refreshing position correctly when calling self._update_fetch_positions().
* | Merge pull request #573 from scribu/patch-1Dana Powers2016-03-041-2/+2
|\ \ | | | | | | Fix `value_serializer` parameter in example
| * | Fix `value_deserializer` parameter in exampleCristi Burcă2016-03-021-1/+1
| | |
| * | Fix `value_serializer` parameter in exampleCristi Burcă2016-03-011-1/+1
|/ / | | | | `json.loads()` is for deserialising.
* | Merge pull request #566 from mortenlj/masterDana Powers2016-02-271-1/+1
|\ \ | |/ |/| Fix typo ifr.future.fail => ifr.future.failure in conn.py
| * Fix typo ifr.future.fail => ifr.future.failureMorten Lied Johansen2016-02-261-1/+1
|/
* Update to Kafka 0.9.0.1 for integration testingDana Powers2016-02-237-6/+184
|
* Merge pull request #564 from shichao-an/masterDana Powers2016-02-231-0/+1
|\ | | | | Add missing imports: KafkaError
| * Add missing imports: KafkaErrorShichao An2016-02-231-0/+1
|/
* Bump version for development of next releaseDana Powers2016-02-221-1/+1
|
* Release 1.0.11.0.1Dana Powers2016-02-193-3/+3
|
* Update Changelog for 1.0.1 patch releaseDana Powers2016-02-192-0/+60
|
* Mock client.ready() call to test coordinator offset fetch requestDana Powers2016-02-192-1/+3
|
* Migrate load_example.py to KafkaProducer / KafkaConsumerDana Powers2016-02-181-17/+22
|
* Catch duplicate batch.done() calls -- this can happen if we maybe_expire ↵Dana Powers2016-02-181-1/+4
| | | | then process a response errback
* Warn if pending batches failed during flushDana Powers2016-02-181-0/+3
|
* Fix concurrency bug in RecordAccumulator.ready()Dana Powers2016-02-181-2/+6
|
* Some attributes may not exist in __del__ if we failed assertionsDana Powers2016-02-182-2/+2
|
* Fix bug in SimpleBufferPool memory condition waiting / timeoutDana Powers2016-02-181-4/+5
|
* More friendly warning when offset fetch request returns unknown topic / ↵Dana Powers2016-02-181-1/+2
| | | | partition
* Verify node ready before sending offset fetch request from coordinatorDana Powers2016-02-181-0/+5
|
* Merge pull request #558 from dpkp/batch_size_zeroDana Powers2016-02-182-5/+7
|\ | | | | Support batch_size = 0 in producer buffers
| * Support batch_size = 0 in producer buffersbatch_size_zeroDana Powers2016-02-172-5/+7
| |
* | Merge pull request #557 from dpkp/socket_buffer_size_optionalDana Powers2016-02-184-18/+26
|\ \ | | | | | | Dont override system rcvbuf or sndbuf unless user configures explicitly
| * | Dont override system rcvbuf or sndbuf unless user configures explicitlysocket_buffer_size_optionalDana Powers2016-02-174-18/+26
| |/