ananthdurai commented on issue #2798: Support log search functionality in Pinot URL: https://github.com/apache/incubator-pinot/issues/2798#issuecomment-449141733 Thank you @kishoreg. I think the scope of the search capability can be limited to the following, and I'm assuming the column `error_logs` is the full text indexed column/ 1. prefix Query ( error_logs = "error*") 2. wildcard Query (error_logs = "apache*error") 3. regex Query ( error_logs = "error.*access") 4. Fuzzy Query (fuzzy_search(term="apache", fuzziness = 3)) 5. Match Phrase Query ( error_logs = "error") The proposal assumes that users may choose some column to be indexed as free text.
---------------------------------------------------------------- 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: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
