Hrm,
From looking at the logs, it looks like Kafka isn't finding any partitions to read:
2013-06-11 03:38:42,490 INFO [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 Committing all offsets after clearing the fetcher queues
2013-06-11 03:38:42,491 INFO [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 Releasing partition ownership
2013-06-11 03:38:42,494 INFO [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 Consumer testgroup_rrr-1370921922099-637f8ca9 rebalancing the following partitions: List() for topic test-0 with consumers: List(testgroup_rrr-1370921922099-637f8ca9-0)
2013-06-11 03:38:42,495 WARN [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 No broker partitions consumed by consumer thread testgroup_rrr-1370921922099-637f8ca9-0 for topic test-0
2013-06-11 03:38:42,497 INFO [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 Updating the cache
2013-06-11 03:38:42,499 INFO [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 Consumer testgroup_rrr-1370921922099-637f8ca9 selected partitions :
2013-06-11 03:38:42,502 INFO [main] kafka.consumer.ZookeeperConsumerConnector - testgroup_rrr-1370921922099-637f8ca9 end rebalancing consumer testgroup_rrr-1370921922099-637f8ca9 try #0
Line 4 there says "No broker partitions consumed".
Can you try setting up just a normal consumer on the queue and make sure that you can consume messages off the topic?
--Eric