You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2020/03/19 02:29:16 UTC

[GitHub] [pulsar] 18817872594 opened a new issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

18817872594 opened a new issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556
 
 
   **Describe the bug**
   A clear and concise description of what the bug is.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Go to '...'
   2. Click on '....'
   3. Scroll down to '....'
   4. See error
   
   **Expected behavior**
   A clear and concise description of what you expected to happen.
   
   **Screenshots**
   If applicable, add screenshots to help explain your problem.
   
   **Desktop (please complete the following information):**
    - OS: [e.g. iOS]
   
   **Additional context**
   Add any other context about the problem here.
   

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


With regards,
Apache Git Services

[GitHub] [pulsar] 18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-603609302
 
 
   PR:https://github.com/apache/pulsar-client-go/pull/199

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


With regards,
Apache Git Services

[GitHub] [pulsar] sijie commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
sijie commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-604240914
 
 
   @18817872594 can you show a code example?

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


With regards,
Apache Git Services

[GitHub] [pulsar] yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-603592127
 
 
   > I use 2.5.0 also find this problem,go client also have this problem,but fixed several days ago。
   
   could you please point out the PR that fixes the bug? we are planning the 2.5.1 release, just want to make sure the bug fix included in the new release.

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


With regards,
Apache Git Services

[GitHub] [pulsar] yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-603622760
 
 
   @18817872594 are you passing in a long value representing the time in millis? seems the go pr you mentioned above is just converting time from nano to millis

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


With regards,
Apache Git Services

[GitHub] [pulsar] 18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-603163192
 
 
   we are waiting for your reply!

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


With regards,
Apache Git Services

[GitHub] [pulsar] sijie commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
sijie commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-611280424
 
 
   @18817872594 are the messages produced by pulsar go clients? what version of pulsar go client are you using?

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


With regards,
Apache Git Services

[GitHub] [pulsar] yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-603853031
 
 
   I cannot reproduce it. how did you get the time you want ?  from yesterday, you can construct:
   
   ```
   long current = System.currentMillis();
   long fromTime = current - 24 * 60 * 60 * 1000;
   ```

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


With regards,
Apache Git Services

[GitHub] [pulsar] yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
yjshen commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-601584994
 
 
   Could you please try 2.4.2 to see if the problem exists? 

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


With regards,
Apache Git Services

[GitHub] [pulsar] 18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-601563575
 
 
   Is this problem confirmed?we are waiting to use the feature

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


With regards,
Apache Git Services

[GitHub] [pulsar] 18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-603745739
 
 
   Yes,can you reproduce this problem?

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


With regards,
Apache Git Services

[GitHub] [pulsar] 18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message

Posted by GitBox <gi...@apache.org>.
18817872594 commented on issue #6556: java-client:2.4.0 consumer seek by time no use, still consume from earliest message
URL: https://github.com/apache/pulsar/issues/6556#issuecomment-602416431
 
 
   I use 2.5.0 also find this problem,go lient also have this problem,but fixed several days ago。

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


With regards,
Apache Git Services