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 2022/04/22 07:16:06 UTC

[GitHub] [pulsar] DR9885 opened a new issue, #15268: Reader to Read Events by Key(s)

DR9885 opened a new issue, #15268:
URL: https://github.com/apache/pulsar/issues/15268

   **Is your enhancement request related to a problem? Please describe.**
   When using the reader, it should be able to filter on a list of keys
   
   **Describe the solution you'd like**
   C# example: of reading events for Key 123
   ```
   await _client.NewReader()
                   .Topic($"persistent://public/default/{bucket}")
                   .StartMessageId(MessageId.Earliest)
                   .Keys(new[] {"123"})
                   .CreateAsync();
   ```
   
   **Describe alternatives you've considered**
   Possible TEMP options
   - Using a Sink Connector, and reading from that database (but eventual consistency issue)
   - Using Trino, but that doesn't seem like the right way to go.
   - Manually consume events and write to data store to query from.
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [pulsar] DR9885 closed issue #15268: Reader to Read Events by Key(s)

Posted by GitBox <gi...@apache.org>.
DR9885 closed issue #15268: Reader to Read Events by Key(s)
URL: https://github.com/apache/pulsar/issues/15268


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [pulsar] DR9885 commented on issue #15268: Reader to Read Events by Key(s)

Posted by GitBox <gi...@apache.org>.
DR9885 commented on issue #15268:
URL: https://github.com/apache/pulsar/issues/15268#issuecomment-1106255832

   closing and following #8544
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [pulsar] Lanayx commented on issue #15268: Reader to Read Events by Key(s)

Posted by GitBox <gi...@apache.org>.
Lanayx commented on issue #15268:
URL: https://github.com/apache/pulsar/issues/15268#issuecomment-1106138589

   Seems to be related
   https://github.com/apache/pulsar/pull/8544


-- 
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.

To unsubscribe, e-mail: commits-unsubscribe@pulsar.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org