Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Move state logic from KafkaClient._maybe_connect to _conn_state_change as ↵ | Dana Powers | 2016-04-08 | 2 | -29/+43 | |
| | | | | | | | | callback | |||||
| * | Add state_change_callback to BrokerConnection | Dana Powers | 2016-04-08 | 1 | -0/+8 | |
| | | ||||||
| * | Move check_version() logic to BrokerConnection | Dana Powers | 2016-04-08 | 2 | -78/+99 | |
|/ | ||||||
* | Split test_ready to test_is_ready | Dana Powers | 2016-04-08 | 1 | -34/+21 | |
| | ||||||
* | Speedup some failover tests w/ shorter SimpleClient timeout | Dana Powers | 2016-04-08 | 1 | -1/+1 | |
| | ||||||
* | Reduce batch time in producer integration test (speedup test) | Dana Powers | 2016-04-08 | 1 | -2/+5 | |
| | ||||||
* | Default sleep=True in client.poll | Dana Powers | 2016-04-08 | 4 | -7/+7 | |
| | ||||||
* | Make _wake_r socket non-blocking; drop select from _clear_wake_fd | Dana Powers | 2016-04-08 | 1 | -3/+4 | |
| | ||||||
* | More _maybe_connect refactoring -- preparing for selectors | Dana Powers | 2016-04-08 | 1 | -7/+15 | |
| | ||||||
* | Can no longer have coordinator_id if coordinator_unknown() | Dana Powers | 2016-04-08 | 1 | -6/+0 | |
| | ||||||
* | Add BrokerConnection.disconnected() method; update tests | Dana Powers | 2016-04-08 | 3 | -8/+16 | |
| | ||||||
* | Drop timeout param from BrokerConnection.recv() | Dana Powers | 2016-04-08 | 1 | -8/+1 | |
| | ||||||
* | Raise ConnectionError immediately on disconnect in SimpleClient._get_conn | Dana Powers | 2016-04-08 | 1 | -1/+8 | |
| | ||||||
* | Merge pull request #636 from dpkp/french_connection | Dana Powers | 2016-04-07 | 8 | -74/+64 | |
|\ | | | | | Simplify connection logic | |||||
| * | Cleanup AF_INET import in conn fixturefrench_connection | Dana Powers | 2016-04-07 | 1 | -1/+1 | |
| | | ||||||
| * | Consolidate conn fixture definitions | Dana Powers | 2016-04-07 | 4 | -42/+19 | |
| | | ||||||
| * | Use conn.connecting() checks to support multiple connecting states | Dana Powers | 2016-04-07 | 1 | -3/+3 | |
| | | ||||||
| * | Refactor SimpleClient connect logic to support multiple connecting states | Dana Powers | 2016-04-07 | 1 | -11/+26 | |
| | | ||||||
| * | Track last_failure in BrokerConnection.close() | Dana Powers | 2016-04-07 | 1 | -2/+1 | |
| | | ||||||
| * | Simplify connect logic further | Dana Powers | 2016-04-07 | 1 | -15/+14 | |
|/ | ||||||
* | Update 0.9.0.0 configuration defaults so they are consistent with official ↵ | Dana Powers | 2016-04-07 | 1 | -4/+3 | |
| | | | | release | |||||
* | Merge updates from PR 573 into README (serializer/deserializer examples) | Dana Powers | 2016-04-07 | 1 | -2/+2 | |
| | ||||||
* | Merge pull request #628 from dpkp/kafka-2136 | Dana Powers | 2016-04-06 | 5 | -14/+57 | |
|\ | | | | | KAFKA-2136: support Fetch and Produce v1 (throttle_time_ms) | |||||
| * | KAFKA-2136: support Fetch and Produce v1 (throttle_time_ms)kafka-2136 | Dana Powers | 2016-04-06 | 5 | -14/+57 | |
| | | ||||||
* | | Catch more producer exceptions in failover tests | Dana Powers | 2016-04-06 | 1 | -3/+6 | |
|/ | ||||||
* | Merge pull request #634 from dpkp/fetch | Dana Powers | 2016-04-06 | 1 | -18/+32 | |
|\ | | | | | Small improvements to fetching logic | |||||
| * | Dont send FetchRequest for (obviously) pending datafetch | Dana Powers | 2016-04-06 | 1 | -3/+12 | |
| | | ||||||
| * | Increase coverage of StopIteration check in _unpack_message_set | Dana Powers | 2016-04-06 | 1 | -15/+15 | |
| | | ||||||
| * | Log debug messages when skipping fetched messages due to offset checks | Dana Powers | 2016-04-06 | 1 | -0/+5 | |
| | | ||||||
* | | Merge pull request #630 from dpkp/protocol_versions | Dana Powers | 2016-04-06 | 20 | -164/+279 | |
|\ \ | |/ |/| | Use version-indexed lists for request/response protocol structs | |||||
| * | Use version-indexed lists for request/response protocol structsprotocol_versions | Dana Powers | 2016-04-05 | 20 | -164/+279 | |
|/ | ||||||
* | Merge pull request #623 from dpkp/kafka-3318 | Dana Powers | 2016-04-05 | 12 | -99/+121 | |
|\ | | | | | KAFKA-3318: clean up consumer logging and error messages | |||||
| * | Remove unused importskafka-3318 | Dana Powers | 2016-04-05 | 7 | -12/+2 | |
| | | ||||||
| * | KAFKA-3013: Include topic-partition in exception for expired batches | Dana Powers | 2016-04-05 | 1 | -1/+4 | |
| | | ||||||
| * | KAFKA-3318: clean up consumer logging and error messages | Dana Powers | 2016-04-05 | 5 | -86/+115 | |
|/ | ||||||
* | Update imports from kafka.common -> kafka.errors / kafka.structs | Dana Powers | 2016-04-05 | 41 | -127/+111 | |
| | ||||||
* | Split kafka.common into kafka.structs and kafka.errors | Dana Powers | 2016-04-05 | 3 | -488/+489 | |
| | ||||||
* | Merge pull request #611 from dpkp/sock_send_bytes | Dana Powers | 2016-04-05 | 3 | -15/+110 | |
|\ | | | | | Handle partial socket send() | |||||
| * | Handle partial socket send()sock_send_bytes | Dana Powers | 2016-04-05 | 1 | -4/+6 | |
| | | ||||||
| * | Coerce exceptions to bool in Future.succeeded() and Future.failed() | Dana Powers | 2016-04-05 | 1 | -2/+2 | |
| | | ||||||
| * | Add BrokerConnection.send tests | Dana Powers | 2016-04-05 | 1 | -9/+102 | |
|/ | ||||||
* | Update max.block.ms docstring | Dana Powers | 2016-04-04 | 1 | -3/+5 | |
| | ||||||
* | Merge pull request #589 from dpkp/node_not_ready | Dana Powers | 2016-04-04 | 7 | -344/+420 | |
|\ | | | | | Refactor NodeNotReadyError handling | |||||
| * | Improve KafkaClient connect and ready handlingnode_not_ready | Dana Powers | 2016-04-04 | 2 | -70/+59 | |
| | | | | | | | | | | | | - merge _initiate and _finish into _maybe_connect - add connected(node_id) method - only short-circuit send() when not connected | |||||
| * | Improve Coordinator Error handling | Dana Powers | 2016-04-04 | 1 | -8/+14 | |
| | | | | | | | | | | | | | | - coordinator_unknown() should not check ready(node_id) - dont mark coordinator dead on not-ready or inflight-requests errors - improve coordinator and heartbeat logging - dont gate group metadata requests on ready() check [conn handles now] | |||||
| * | Drop now-redundant ready() check in Fetcher._handle_offset_response | Dana Powers | 2016-04-04 | 1 | -3/+0 | |
| | | ||||||
| * | Add basic unit test coverage for BrokerConnection | Dana Powers | 2016-04-04 | 1 | -0/+82 | |
| | | ||||||
| * | Improve Broker connection handling of not-ready nodes | Dana Powers | 2016-04-04 | 1 | -24/+26 | |
| | | | | | | | | | | | | | | - simplify connect state logic - add connecting() method to check state - add BrokerConnection details to exceptions - return NodeNotReady as Future if still connecting | |||||
| * | Move old KafkaConnection tests to test_conn_legacy | Dana Powers | 2016-04-04 | 1 | -0/+0 | |
| | | ||||||
* | | Merge pull request #620 from dpkp/issue_619 | Dana Powers | 2016-04-04 | 2 | -39/+57 | |
|\ \ | |/ |/| | Improve auto commit task handling with no consumer group |