summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Improve auto-commit task handling when group_id is Noneissue_619Dana Powers2016-04-031-20/+22
| |
| * Test _maybe_auto_commit_offsets_sync when group_id is NoneDana Powers2016-04-031-19/+35
|/
* Merge pull request #615 from TimEvens/masterDana Powers2016-03-306-36/+101
|\ | | | | Kafka IPv6 Support.
| * Changed transltae to replace to support python 3Tim Evens2016-03-301-1/+2
| |
| * Kafka IPv6 Support.Tim Evens2016-03-306-36/+100
|/ | | | | | IPv6 address without port can be defined as the IPv6 address. If the address is a hostname or if a port is included, then the address MUST be wrapped in brackets [] (E.g. [somehost]:1234 or [fd00:1001::2]:1234).
* Merge pull request #603 from dpkp/windowsDana Powers2016-03-245-11/+83
|\ | | | | Updates to support Windows
| * Skip test that fails on windowswindowsDana Powers2016-03-171-0/+2
| |
| * Handle windows socket error codes in BrokerConnectionDana Powers2016-03-171-4/+6
| |
| * Use socketpair for KafkaClient wake pipe windows compatibilityDana Powers2016-03-172-6/+65
| |
| * Fallback to curl if wget is not availableDana Powers2016-03-171-1/+10
| |
* | Ignore more kafka-bin rcs -- useful during release testingDana Powers2016-03-231-1/+1
| |
* | Remove errant next(consumer) from consumer documentationDana Powers2016-03-222-2/+0
| |
* | Add 0.10.0.0 test fixture properties filesDana Powers2016-03-213-0/+179
| |
* | Add producer.flush() to usage docsDana Powers2016-03-183-4/+19
| |
* | Merge pull request #606 from zackdever/partition-leader-errorsDana Powers2016-03-172-4/+5
|\ \ | | | | | | Catch all errors thrown by _get_leader_for_partition in SimpleClient
| * | catch all errors thrown by _get_leader_for_partition in SimpleClientZack Dever2016-03-172-4/+5
|/ /
* | Merge pull request #602 from zackdever/KAFKA-2698Dana Powers2016-03-173-5/+38
|\ \ | | | | | | KAFKA-2698: add paused API
| * | KAFKA-2698: add paused APIZack Dever2016-03-163-5/+38
| |/
* | Add default_offset_commit_callback to KafkaConsumer DEFAULT_CONFIGSDana Powers2016-03-171-0/+1
| |
* | Bump version for developmentDana Powers2016-03-171-1/+1
|/
* Release 1.0.21.0.2Dana Powers2016-03-141-1/+1
|
* Update changelog for 1.0.2 releaseDana Powers2016-03-142-0/+67
|
* Merge pull request #599 from zackdever/travis-master-deployDana Powers2016-03-141-3/+1
|\ | | | | Only deploy master branch now that travis bug is fixed.
| * Only deploy master branch now that travis bug is fixed.Zack Dever2016-03-141-3/+1
| | | | | | | | | | This https://github.com/travis-ci/travis-ci/issues/1675 is now closed, but I don't know of a good way to test this.
* | Attempt to clarify error message on consumer subscribe/assign assert failureDana Powers2016-03-141-2/+5
| |
* | Merge pull request #598 from zackdever/producer-optimizationDana Powers2016-03-142-5/+8
|\ \ | |/ |/| Producer optimization
| * remove unused import. needed a change to kick travis.Zack Dever2016-03-141-1/+0
| |
| * make Sender._topics_to_add a set instead of a listZack Dever2016-03-141-3/+4
| |
| * only make a metadata event if we don't know the partitionsZack Dever2016-03-141-1/+4
|/
* Merge pull request #597 from dpkp/consumer_poll_sleepDana Powers2016-03-141-1/+1
|\ | | | | KafkaConsumer.poll should sleep to prevent tight-loops
| * KafkaConsumer.poll should sleep to prevent tight-loopsconsumer_poll_sleepDana Powers2016-03-141-1/+1
| |
* | join consumer threads in test_consumer_group cleanupDana Powers2016-03-141-2/+4
|/
* Re-render fixture config in restart loop if necessaryDana Powers2016-03-141-0/+10
|
* Merge pull request #587 from dpkp/topic_partition_type_errorDana Powers2016-03-141-0/+17
|\ | | | | Raise TypeError in KafkaConsumer when partition is not a TopicPartition
| * Raise TypeError in KafkaConsumer when partition is not a TopicPartitiontopic_partition_type_errorDana Powers2016-03-141-0/+17
| |
* | Merge pull request #588 from dpkp/none_least_loaded_nodeDana Powers2016-03-142-0/+8
|\ \ | | | | | | Improve handling of least_loaded_node failure
| * | Check for None returned from least_loaded_node when no brokers are availablenone_least_loaded_nodeDana Powers2016-03-132-0/+8
| |/
* | Merge pull request #590 from dpkp/accumulator_bugfixDana Powers2016-03-141-2/+4
|\ \ | | | | | | Fix producer threading bug that can crash sender
| * | Fix producer threading bug that could crash sender (dict changing during ↵accumulator_bugfixDana Powers2016-03-141-2/+4
| |/ | | | | | | iteration)
* | More fixture logging improvementsDana Powers2016-03-144-14/+19
|/ | | | | | | | - Add test logging NullHandler - Remove default logging level filtering in testutil - Log render_template info - More fixture logging cleanups - wait_for() should not handle child shutdown
* 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
|