[ 
https://issues.apache.org/jira/browse/KAFKA-6764?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16610188#comment-16610188
 ] 

ASF GitHub Bot commented on KAFKA-6764:
---------------------------------------

sumannewton opened a new pull request #5637: Fixed KAFKA-6764; Update usage for 
console-consumer whitelist option
URL: https://github.com/apache/kafka/pull/5637
 
 
   *Fix for [KAFKA-6764](https://issues.apache.org/jira/browse/KAFKA-6764).*
   
   - With group-id, always subscribe() and auto-assign. Seek based on 
partition/offset config(Not sure if seek should be supported console-consumer 
when a group-id is specified. Because assign() and subscribe() can't be used 
together for the same topic-consumer-group combination)
   - Without group-id (Auto Commit Offset is always disabled):
     - Partition/Offset specified, then assign.
     - Partition/Offset not specified, then subscribe.
   
   Correct if I am wrong.
   
   ### Committer Checklist (excluded from commit message)
   - [ ] Verify design and implementation 
   - [ ] Verify test coverage and CI build status
   - [ ] Verify documentation (including upgrade notes)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


> ConsoleConsumer behavior inconsistent when specifying --partition with 
> --from-beginning 
> ----------------------------------------------------------------------------------------
>
>                 Key: KAFKA-6764
>                 URL: https://issues.apache.org/jira/browse/KAFKA-6764
>             Project: Kafka
>          Issue Type: Bug
>          Components: consumer
>            Reporter: Larry McQueary
>            Assignee: Larry McQueary
>            Priority: Minor
>              Labels: newbie
>
> Per its usage statement, {{kafka-console-consumer.sh}} ignores 
> {{\-\-from-beginning}} when the specified consumer group has committed 
> offsets, and sets {{auto.offset.reset}} to {{latest}}. However, if 
> {{\-\-partition}} is also specified, {{\-\-from-beginning}} is observed in 
> all cases, whether there are committed offsets or not.
> This happens because when {{\-\-from-beginning}} is specified, {{offsetArg}} 
> is set to {{OffsetRequest.EarliestTime}}. However, {{offsetArg}} is [only 
> passed to the 
> constructor|https://github.com/apache/kafka/blob/fedac0cea74feeeece529ee1c0cefd6af53ecbdd/core/src/main/scala/kafka/tools/ConsoleConsumer.scala#L76-L79]
>  for {{NewShinyConsumer}} when {{\-\-partition}} is also specified. Hence, it 
> is honored in this case and not the other.
> This case should either be handled consistently, or the usage statement 
> should be modified to indicate the actual behavior/usage. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to