Convert Brandwatch to Lucene
Take a Brandwatch query to any Lucene-backed store (Elasticsearch, OpenSearch) when you leave the suite but keep the data.
Once the syntax is sorted
Three different situations, depending on how far along the move is.
Reference
Worked example
Brandwatch query
(outage NEAR/3 network) AND site:status.io
Lucene output
"outage network"~3 AND site:status.io
What carries over, and what does not
Carries over
- •Boolean AND / OR / NOT
- •Proximity (NEAR/n)
- •Wildcards
Degrades or drops
- •An OR chain over 500 branches is truncated to 500 (an engine-wide limit, not specific to Lucene)