[jira] [Updated] (KAFKA-734) Migration tool needs a revamp, it was poorly written and has many performance bugs

2013-01-29 Thread Neha Narkhede (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-734?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Neha Narkhede updated KAFKA-734: Status: Patch Available (was: Open) Migration tool needs a revamp, it was poorly written and

[jira] [Updated] (KAFKA-671) DelayedProduce requests should not hold full producer request data

2013-01-29 Thread Sriram Subramanian (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-671?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sriram Subramanian updated KAFKA-671: - Attachment: outOfMemFix-v2-rebase.patch rebased DelayedProduce requests

Re: 0.8 wire protocol for inter-broker communication

2013-01-29 Thread Jay Kreps
I don't think this is actually that hard to handle, you just need a config to enable the new fields: Step 1: Implement optional support for the new field with some option that controls whether it is used Step 2: Push all servers, still using the old format. Step 3: Now enable the new field on

[jira] [Created] (KAFKA-742) Existing directories under the Kafka data directory without any data cause process to not start

2013-01-29 Thread Chris Curtin (JIRA)
Chris Curtin created KAFKA-742: -- Summary: Existing directories under the Kafka data directory without any data cause process to not start Key: KAFKA-742 URL: https://issues.apache.org/jira/browse/KAFKA-742

[jira] [Commented] (KAFKA-742) Existing directories under the Kafka data directory without any data cause process to not start

2013-01-29 Thread Jay Kreps (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-742?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13565696#comment-13565696 ] Jay Kreps commented on KAFKA-742: - Getting an error is not really bad since we assume we

[jira] [Commented] (KAFKA-742) Existing directories under the Kafka data directory without any data cause process to not start

2013-01-29 Thread Chris Curtin (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-742?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13565709#comment-13565709 ] Chris Curtin commented on KAFKA-742: Thanks Jay, a better error is a good idea for

[jira] [Closed] (KAFKA-720) Migration tool halts

2013-01-29 Thread Neha Narkhede (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-720?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Neha Narkhede closed KAFKA-720. --- Migration tool halts Key: KAFKA-720 URL:

[jira] [Updated] (KAFKA-568) LogTest started failing after KAFKA-506

2013-01-29 Thread Neha Narkhede (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-568?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Neha Narkhede updated KAFKA-568: Labels: unit-test (was: bugs) LogTest started failing after KAFKA-506

[jira] [Updated] (KAFKA-671) DelayedProduce requests should not hold full producer request data

2013-01-29 Thread Sriram Subramanian (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-671?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sriram Subramanian updated KAFKA-671: - Attachment: outOfMemFix-v3.patch DelayedProduce requests should not hold full

[jira] [Updated] (KAFKA-738) correlationId is not set in FetchRequest in AbstractFetcherThread

2013-01-29 Thread Jun Rao (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jun Rao updated KAFKA-738: -- Resolution: Fixed Fix Version/s: 0.8 Status: Resolved (was: Patch Available) Thanks for the

[jira] [Closed] (KAFKA-738) correlationId is not set in FetchRequest in AbstractFetcherThread

2013-01-29 Thread Neha Narkhede (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-738?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Neha Narkhede closed KAFKA-738. --- correlationId is not set in FetchRequest in AbstractFetcherThread

[jira] [Updated] (KAFKA-737) System Test : Disable shallow.iterator in Mirror Maker test cases to make compression work correctly

2013-01-29 Thread Jun Rao (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-737?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jun Rao updated KAFKA-737: -- Resolution: Fixed Fix Version/s: 0.8 Status: Resolved (was: Patch Available) Thanks for the

Question about offsets

2013-01-29 Thread David Arthur
Fiddling with my Python client on 0.8, noticed something has changed with offsets. It seems that instead of a byte offset in the log file, the offset is now a logical one. I had a few questions about this: 1) How is the byte offset determined by the broker? Since messages are not fixed

Re: Question about offsets

2013-01-29 Thread Jay Kreps
Yes, offsets are now logical 0,1,2,3... Some details on this change are here: https://cwiki.apache.org/confluence/display/KAFKA/Keyed+Messages+Proposal https://issues.apache.org/jira/browse/KAFKA-506 https://issues.apache.org/jira/browse/KAFKA-631 There was some previous threads on this that

[jira] [Reopened] (KAFKA-683) Fix correlation ids in all requests sent to kafka

2013-01-29 Thread Jay Kreps (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-683?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jay Kreps reopened KAFKA-683: - Guys, this patch adds request specific stuff to RequestChannel. RequestChannel is really not the place to be

[jira] [Commented] (KAFKA-671) DelayedProduce requests should not hold full producer request data

2013-01-29 Thread Jay Kreps (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13566188#comment-13566188 ] Jay Kreps commented on KAFKA-671: - Took a look at this. Looks reasonable. Other atrocities

[jira] [Commented] (KAFKA-736) Add an option to the 0.8 producer to mimic 0.7 producer behavior

2013-01-29 Thread Jay Kreps (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-736?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13566215#comment-13566215 ] Jay Kreps commented on KAFKA-736: - This is basically good, but the comments and naming are

[jira] [Commented] (KAFKA-683) Fix correlation ids in all requests sent to kafka

2013-01-29 Thread Jay Kreps (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-683?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13566234#comment-13566234 ] Jay Kreps commented on KAFKA-683: - Yeah, I am on the fence about the metrics stuff, maybe

[jira] [Commented] (KAFKA-671) DelayedProduce requests should not hold full producer request data

2013-01-29 Thread Jay Kreps (JIRA)
[ https://issues.apache.org/jira/browse/KAFKA-671?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=13566240#comment-13566240 ] Jay Kreps commented on KAFKA-671: - Okay let's sync up. I think requestObj is the devil. :-)