| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Making version number compatible with future versions0.7 | David Arthur | 2013-04-02 | 1 | -1/+1 |
| | | |||||
| * | Adding client_fetch_size to queue interface | David Arthur | 2013-04-02 | 2 | -3/+57 |
| | | | | | Also more docs | ||||
| * | Fix some typos, closes #12 | David Arthur | 2013-01-26 | 1 | -2/+2 |
| | | |||||
| * | Merge pull request #11 from anentropic/master | David Arthur | 2012-11-22 | 1 | -2/+2 |
| |\ | | | | | fix docs: iter_messages doesn't (any longer?) take a FetchRequest | ||||
| | * | fix docs: iter_messages doesn't (any longer?) take a FetchRequest | anentropic | 2012-11-22 | 1 | -2/+2 |
| |/ | | | ...it takes the same args and instantiates its own one | ||||
| * | Add some docs and KafkaQueue config | David Arthur | 2012-11-19 | 2 | -19/+48 |
| | | | | | Ref #8 | ||||
| * | Add a Queue-like producer/consumer | David Arthur | 2012-11-19 | 3 | -0/+148 |
| | | | | | | | | | | | | | | | | | | Creates a producer process and one consumer process per partition. Uses `multiprocessing.Queue` for communication between the parent process and the producer/consumers. ```python kafka = KafkaClient("localhost", 9092) q = KafkaQueue(kafka, client="test-queue", partitions=[0,1]) q.put("test") q.get() q.close() kafka.close() ``` Ref #8 | ||||
| * | Update README.md | David Arthur | 2012-11-16 | 1 | -2/+4 |
| | | |||||
| * | Add Snappy support0.1-alpha | David Arthur | 2012-11-16 | 6 | -21/+144 |
| | | | | | Fixes #2 | ||||
| * | Update LICENSE with author+year | David Arthur | 2012-11-16 | 1 | -2/+1 |
| | | |||||
| * | Integration test writes to a file instead of stdout | David Arthur | 2012-10-30 | 1 | -5/+6 |
| | | |||||
| * | Clean up imports in client, fixed #5 | David Arthur | 2012-10-30 | 1 | -3/+0 |
| | | |||||
| * | Replace socket.send with socket.sendall, Fixes #6 | David Arthur | 2012-10-30 | 1 | -5/+5 |
| | | |||||
| * | Adding a test for 10k messages | David Arthur | 2012-10-30 | 1 | -0/+10 |
| | | |||||
| * | Merge pull request #4 from benfred/master | David Arthur | 2012-10-29 | 1 | -1/+1 |
| |\ | | | | | exception handling fix | ||||
| | * | error handling fix | Ben Frederickson | 2012-10-25 | 1 | -1/+1 |
| |/ | |||||
| * | Fixing install instructions | David Arthur | 2012-10-03 | 1 | -2/+3 |
| | | |||||
| * | Adding link to Kafka | David Arthur | 2012-10-03 | 1 | -0/+2 |
| | | |||||
| * | Updating kafka-src to 0.7.2 | David Arthur | 2012-10-03 | 2 | -1/+1 |
| | | |||||
| * | Isn't it nice when tests actually find bugs | David Arthur | 2012-10-02 | 2 | -6/+51 |
| | | |||||
| * | Packaging improvments | David Arthur | 2012-10-02 | 2 | -1/+40 |
| | | | | | | | | | | | | | | | | | | | | | | | | Can now: ```python import kafka kafka.KafkaClient("localhost", 9092) ``` or ```python from kafka.client import KafkaClient KafkaClient("localhost", 9092) ``` or ```python import kafka.client kafka.client.KafkaClient("localhost", 9092) ``` | ||||
| * | Stupid markdown | David Arthur | 2012-10-02 | 1 | -4/+4 |
| | | |||||
| * | Fix tabs in README.md | David Arthur | 2012-10-02 | 1 | -30/+30 |
| | | |||||
| * | Update README.md with install instructions | David Arthur | 2012-10-02 | 2 | -6/+25 |
| | | |||||
| * | Renaming kafka.py to client.py | David Arthur | 2012-10-02 | 6 | -5/+9 |
| | | |||||
| * | Moved codec stuff into it's own module | David Arthur | 2012-10-02 | 5 | -24/+29 |
| | | | | | Snappy will go there when I get around to it | ||||
| * | Start work on packaging issue #3 | David Arthur | 2012-10-02 | 6 | -3/+16 |
| | | |||||
| * | Integration test improvements | David Arthur | 2012-09-30 | 3 | -21/+53 |
| | | | | | | Call java directly instead of using start script. Fix synchronization problem with producing a message and it getting flushed. | ||||
| * | Update send_messages_simple example in README.md | David Arthur | 2012-09-28 | 1 | -4/+2 |
| | | |||||
| * | Adding some integration tests | David Arthur | 2012-09-28 | 3 | -8/+44 |
| | | |||||
| * | Starting integration tests | David Arthur | 2012-09-28 | 5 | -3/+269 |
| | | |||||
| * | Adding simple (dumb) request tests | David Arthur | 2012-09-27 | 2 | -2/+15 |
| | | | | | Integration tests to come | ||||
| * | Pointing kafka-src to 0.7.1-rc3 | David Arthur | 2012-09-27 | 1 | -0/+0 |
| | | |||||
| * | Adding Kafka github mirror, pointing to 0.7.1-rc3 | David Arthur | 2012-09-27 | 2 | -0/+3 |
| | | | | | | | | To initialize submodules, run git submodule init git submodule update | ||||
| * | More unit tests | David Arthur | 2012-09-27 | 2 | -2/+70 |
| | | | | | | | Run like: python -m unittest -v test | ||||
| * | Starting on unit tests | David Arthur | 2012-09-27 | 3 | -40/+156 |
| | | | | | | Updated several methods in KafkaClient to be classmethods. Updated some inline documentation also | ||||
| * | Adding initial support for gzip compression | David Arthur | 2012-09-26 | 4 | -72/+163 |
| | | |||||
| * | Adding Python syntax highlighting to README.md | David Arthur | 2012-09-24 | 1 | -2/+14 |
| | | |||||
| * | Setting up a stand-alone repository for this | David Arthur | 2012-09-24 | 4 | -0/+782 |
