Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-05-24 Thread via GitHub
chenboat commented on PR #12680: URL: https://github.com/apache/pinot/pull/12680#issuecomment-2130509561 Release note section added. -- 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

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-05-22 Thread via GitHub
npawar commented on PR #12680: URL: https://github.com/apache/pinot/pull/12680#issuecomment-2125680914 @chenboat following up here.. did you get a chance to add docs? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-04-04 Thread via GitHub
Jackie-Jiang commented on PR #12680: URL: https://github.com/apache/pinot/pull/12680#issuecomment-2038487748 Thanks for adding the feature! Can you please add a `release-notes` section to the PR description, and also update the Pinot documentation for this new feature? -- This is an

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-04-01 Thread via GitHub
chenboat merged PR #12680: URL: https://github.com/apache/pinot/pull/12680 -- 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:

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-29 Thread via GitHub
chenboat commented on PR #12680: URL: https://github.com/apache/pinot/pull/12680#issuecomment-2027833690 > What do you think about enabling this by default/not hiding this feature behind a config? It seems that we should be able to infer whether a query is valid single term lucene

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-29 Thread via GitHub
chenboat commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1544963199 ## pinot-core/src/test/java/org/apache/pinot/queries/TextSearchQueriesTest.java: ## @@ -280,6 +282,34 @@ private List createTestData() return rows; } +

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-29 Thread via GitHub
chenboat commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1544963390 ## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/index/readers/text/LuceneTextIndexReader.java: ## @@ -150,10 +155,14 @@ public

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-27 Thread via GitHub
itschrispeck commented on PR #12680: URL: https://github.com/apache/pinot/pull/12680#issuecomment-2024228403 What do you think about enabling this by default/not hiding this feature behind a config? It seems that we should be able to infer whether a query is valid single term lucene

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-27 Thread via GitHub
itschrispeck commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1542197858 ## pinot-core/src/test/java/org/apache/pinot/queries/TextSearchQueriesTest.java: ## @@ -280,6 +282,34 @@ private List createTestData() return rows; } +

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-27 Thread via GitHub
ankitsultana commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1542177535 ## pinot-segment-local/src/test/java/org/apache/pinot/segment/local/utils/LuceneTextIndexUtilsTest.java: ## @@ -0,0 +1,100 @@ +/** + * Licensed to the Apache

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-25 Thread via GitHub
chenboat commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1538229272 ## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/LuceneTextIndexUtils.java: ## @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-22 Thread via GitHub
chenboat commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1536461667 ## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/utils/LuceneTextIndexUtils.java: ## @@ -0,0 +1,72 @@ +/** + * Licensed to the Apache Software

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-21 Thread via GitHub
ankitsultana commented on code in PR #12680: URL: https://github.com/apache/pinot/pull/12680#discussion_r1534256159 ## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/realtime/impl/invertedindex/RealtimeLuceneTextIndex.java: ## @@ -119,7 +122,12 @@ public

Re: [PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-20 Thread via GitHub
codecov-commenter commented on PR #12680: URL: https://github.com/apache/pinot/pull/12680#issuecomment-2010191688 ## [Codecov](https://app.codecov.io/gh/apache/pinot/pull/12680?dropdown=coverage=pr=h1_medium=referral_source=github_content=comment_campaign=pr+comments_term=apache) Report

[PR] Add support for phrase search with wildcard and prefix matching for Lucene indexed tables [pinot]

2024-03-20 Thread via GitHub
chenboat opened a new pull request, #12680: URL: https://github.com/apache/pinot/pull/12680 Pinot's TEXT_MATCH filter today does not support phrase search with wildcard and prefix matching (e.g., "*apache pino*" to match "Apache Pinot") directly. The kind of queries is very common in use