Setup

smartSuggest is a library that utilizes Apache Lucene to generally achieve good suggest results. You can use that Java library directly to build your custom suggest service, but it also comes packed as a HTTP service in form of a container image.

Requirements

  • Be sure the application is allowed to connect to https://query.searchhub.io/. This is where it fetches the searchHub suggest data.

  • The embedded Lucene library creates several indexes in a temporary directory. Make sure it is able to write to your OS temp directory. That data is volatile and does not need any permanent persistence. Inside the container this should work without any further intervention.

  • Around 100MB to 500MB of Memory / Java Heapspace. Depending on the amount of data to be managed by the service it might be more.

  • For Java integration please use at least JDK 17

Installation

Our continuous implementation build pushes the library into our own Maven repository and builds the according docker image right afterwards.

The docker image is available on docker hub with the name commerceexperts/searchhub-smartsuggest-service

docker run -d --name=smartsuggest-service -e SH_API_KEY=<YourS3cr3tAPIkey> -P commerceexperts/searchhub-smartsuggest-service:1.4.2

The container must be initiated with your API key set to the environment variable SH_API_KEY. The container exposes port 8081 which can be mapped to any port.

Client Setup

For a pure Suggest integration, we recommend to use endpoint v3. But there are more different ones that might fit better to your needs. Continue reading the Service Integration for all according details.

$> port=38081
$> tenant_name="example"
$> tenant_channel="com"
$> curl -s "http://localhost:$port/smartsuggest/v3/$tenant_name/$tenant_channel?userQuery=jea" -o - | jq .

Troubleshooting

  • If you forgot to specify the API key, the container will stop with the log message “IllegalArgumentException: no searchHub API key provided! Either specify ENV var ‘SH_API_KEY’ or system property ‘searchhub.apikey’”

  • In case you tried to access a non-permitted tenant/channel (maybe because you specified the wrong API key), you will see such a message in the logs of the service: Unauthorized while fetching data for tenant ‘foo.bar’: [401 Unauthorized]

  • To get more information about the internal processes, enable debug log. Do that with the docker startup parameter -e JAVA_OPTS="-Dlog.searchhub.level=DEBUG" or for more debug messages additionally -Dlog.root.level=DEBUG.