-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
updates for solr based search #1091
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
8790ce3
updates for solr based search
fdefalco a71d7bc
Merge branch 'master' into vocabulary-performance
anthonysena 7657933
Make backwards compatible; hack needs revisiting
anthonysena 12c9019
Add SOLR config to resources
anthonysena 5556a56
Adding SOLR config to info endpoint and refactor config settings
anthonysena 6bf11aa
Use DI for vocabulary search provider
anthonysena aabecd9
More DI cleanup; using solrj client
anthonysena 63e80a6
Cleanup stale references in VocabularyService
anthonysena 20f2e7a
Configuring SOLR to work similar to DB search
anthonysena File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/java/org/ohdsi/webapi/vocabulary/DatabaseSearchProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.ohdsi.webapi.vocabulary; | ||
|
||
import java.util.Collection; | ||
import java.util.Objects; | ||
import org.ohdsi.circe.vocabulary.Concept; | ||
import org.ohdsi.webapi.service.VocabularyService; | ||
import org.ohdsi.webapi.util.PreparedStatementRenderer; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class DatabaseSearchProvider implements SearchProvider { | ||
@Autowired | ||
VocabularyService vocabService; | ||
|
||
@Override | ||
public boolean supports(VocabularySearchProviderType type) { | ||
return Objects.equals(type, VocabularySearchProviderType.DATABASE); | ||
} | ||
|
||
@Override | ||
public Collection<Concept> executeSearch(SearchProviderConfig config, String query, String rows) throws Exception { | ||
PreparedStatementRenderer psr = vocabService.prepareExecuteSearchWithQuery(query, config.getSource()); | ||
return vocabService.getSourceJdbcTemplate(config.getSource()).query(psr.getSql(), psr.getSetter(), vocabService.rowMapper); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
src/main/java/org/ohdsi/webapi/vocabulary/SearchProvider.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.ohdsi.webapi.vocabulary; | ||
|
||
import java.util.Collection; | ||
import org.ohdsi.circe.vocabulary.Concept; | ||
|
||
public interface SearchProvider { | ||
public abstract boolean supports(VocabularySearchProviderType type); | ||
public abstract Collection<Concept> executeSearch(SearchProviderConfig config, String query, String rows) throws Exception; | ||
} |
23 changes: 23 additions & 0 deletions
23
src/main/java/org/ohdsi/webapi/vocabulary/SearchProviderConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package org.ohdsi.webapi.vocabulary; | ||
|
||
import org.ohdsi.webapi.source.Source; | ||
|
||
public class SearchProviderConfig { | ||
protected Source source; | ||
protected VocabularyInfo vocabularyInfo; | ||
protected String versionKey; | ||
|
||
public SearchProviderConfig(Source source, VocabularyInfo vocabularyInfo) { | ||
this.source = source; | ||
this.vocabularyInfo = vocabularyInfo; | ||
this.versionKey = vocabularyInfo.version.replace(' ', '_'); | ||
} | ||
|
||
public String getVersionKey() { | ||
return versionKey; | ||
} | ||
|
||
public Source getSource() { | ||
return source; | ||
} | ||
} |
79 changes: 79 additions & 0 deletions
79
src/main/java/org/ohdsi/webapi/vocabulary/SolrSearchClient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package org.ohdsi.webapi.vocabulary; | ||
|
||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.regex.Pattern; | ||
import org.apache.commons.lang.StringUtils; | ||
import org.apache.solr.client.solrj.SolrClient; | ||
import org.apache.solr.client.solrj.impl.HttpSolrClient; | ||
import org.apache.solr.client.solrj.request.CoreAdminRequest; | ||
import org.apache.solr.client.solrj.response.CoreAdminResponse; | ||
import org.apache.solr.client.solrj.util.ClientUtils; | ||
import org.apache.solr.common.params.CoreAdminParams; | ||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class SolrSearchClient { | ||
@Value("${solr.endpoint}") | ||
private String solrEndpoint; | ||
|
||
@Value("${solr.query.prefix}") | ||
private String solrQueryPrefix; | ||
|
||
public static final List<String> SOLR_ESCAPE_CHARACTERS = Arrays.asList("(", ")", "{", "}", "[", "]", "^", "\"", ":"); | ||
|
||
public boolean enabled() { | ||
return !StringUtils.isEmpty(solrEndpoint); | ||
} | ||
|
||
public SolrClient getSolrClient(String coreName) { | ||
return new HttpSolrClient.Builder(solrEndpoint + "/" + coreName).build(); | ||
} | ||
|
||
public HashSet<String> getCores() throws Exception { | ||
HashSet<String> returnVal = new HashSet<>(); | ||
SolrClient client = this.getSolrClient(""); | ||
CoreAdminRequest request = new CoreAdminRequest(); | ||
request.setAction(CoreAdminParams.CoreAdminAction.STATUS); | ||
CoreAdminResponse cores; | ||
|
||
try { | ||
cores = request.process(client); | ||
for (int i = 0; i < cores.getCoreStatus().size(); i++) { | ||
returnVal.add(cores.getCoreStatus().getName(i)); | ||
} | ||
} catch (Exception ex) { | ||
throw ex; | ||
} | ||
return returnVal; | ||
} | ||
|
||
public String formatSearchQuery(String query) { | ||
return formatSearchQuery(query, true); | ||
} | ||
|
||
public String formatSearchQuery(String query, Boolean useWildcardSearch) { | ||
String returnVal; | ||
if (useWildcardSearch) { | ||
returnVal = solrQueryPrefix + "query:\"*" + ClientUtils.escapeQueryChars(query) + "*\""; | ||
} else { | ||
returnVal = "query:" + escapeNonWildcardQuery(query); | ||
} | ||
System.out.println(returnVal); | ||
return returnVal; | ||
} | ||
|
||
// This escape function is used when building the non wildcard | ||
// query since the ClientUtils.escapeQueryChars will replace | ||
// add an extra "\" to spaces which can change the query results. | ||
// So, here we escape a subset of the special characters for | ||
// this edge case | ||
public String escapeNonWildcardQuery(String query) { | ||
for (String item : SOLR_ESCAPE_CHARACTERS) { | ||
query = query.replace(item, "\\" + item); | ||
} | ||
return query; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updating the default query behavior to use the SOLR ComplexPhraseQueryParser: https://lucene.apache.org/solr/guide/6_6/other-parsers.html#OtherParsers-ComplexPhraseQueryParser. This will allow for searches that are closer in behavior to the SQL Wildcard search.