Hello,
In this scenario, I have almost 110K string values coming in a column and a search widget needs to be applied on those values (110K). Once this search value is placed in the widget, it should return all possible values with the input (if the input value is part of the string, best possible combination should be returned from the 110K values).
Please suggest some solutions, looking forward. Thanks
Send your source data to Row Filter node and select the flow variable which now contains “searchTerm” as input for pattern. Click the checkbox “contains wildcards”
Thanks @MartinDDDD - this worked.
If multiple fields are to be searched, so the result will have the combination of the multiple column inputs, how can we achieve this?
If you want to search multiple fields (I take additional columns) you need to add additional string input widgets. For Filtering you need to use Rule Based Row Filter.
I used LIKE condition and kept the wildcards at beginning and end of the search string.
Have wrapped both string inputs into a component.
Also wrapped the data reading and filtering in a component and enabled “streaming”, which should speed up things for larger datasets. You will need the KNIME Streaming extension for this.
Unsure about how to make things fuzzy and also unsure about the exact logic you require - for now I assumed that conditions both need to be met (connected via AND).