A global advertising holdco’s customer records, shredded and matched into one identity graph — on one MinusOneDB environment.
Atlantic Fox — a data-strategy agency — was engaged by a global advertising holdco to consolidate customer records from across its agencies into a single, queryable identity graph.
The goal: stop treating each agency’s customer list as its own island. Start knowing which customer is which — across every agency, across every email address they’ve ever used — in near real time.
Consolidate customer records from every agency into a single, queryable identity graph.
All records shredded and ingested into one MinusOneDB environment. Every field — emails, names, addresses, account IDs — indexed at write time for structured, full-text, and fuzzy matching.
Resolve duplicate and near-duplicate customer identities: the same person with different emails across different agencies.
Matching runs as a sequence of search queries against pre-built inverted, doc-value, and range indexes — not as full-table scans. Every resolved identity carries provenance and confidence.
Let the holdco iterate on matching rules without re-ingesting data or triggering per-query cost spikes.
Every rule change reruns against the existing indexes. No scans, no re-ingest, no meter — just another query against the search layer.
Every matching pass is a full-table scan, and every scan runs the meter. Iterating rules — trying fuzzy thresholds, domain-normalisation passes, phonetic matches — gets priced out. The project dies in the budget, not the tech.
You end up with a standalone entity-resolution cluster that doesn’t talk to your analytics or your applications. Weeks of setup, a second data pipeline, and the resolved identities still have to be re-imported wherever they’re used.
Every row is indexed — inverted, doc-value, range — at ingest. Matching is a sequence of search queries against those indexes. Iteration is free at the margin. The resolved identity graph is queryable by every agency’s application through the same REST API + JS SDK.
Shredding a holdco-wide customer database and matching emails across every agency is one of the hardest things a data platform can be asked to do. The brute-force approach is N×M row comparisons. The smart approach requires inverted indexes, doc-value columns, and range trees all co-located with the data — plus the budget to iterate matching rules without paying per question.
On a pay-per-query warehouse, the matching passes run the meter into the ground before the first rule-tuning cycle finishes. On a dedicated entity-resolution tool, you end up with a parallel pipeline that doesn’t feed the applications that need the resolved data.
Atlantic Fox’s engagement ships on a single MinusOneDB environment — the same environment that stores the raw records, runs the matching, and exposes the resolved identity graph to every agency’s application through one REST API and JS SDK.
Atlantic Fox is running enterprise identity resolution on a timeline the enterprise can actually afford — because the heavy lifting is a search query, not a scan.
Atlantic Fox’s engagement is the kind of project that normally dies in the budgeting meeting: take multiple agencies’ customer records, shred them into fielded entities, resolve overlapping identities across every email and every agency, then keep iterating the rules until the match confidence is production-grade. The work is unavoidable. The platform usually isn’t affordable.
On MinusOneDB, every row is indexed at write time, every matching pass is a search query against those indexes, and every rule iteration costs the same as the last. The alternative — a warehouse to store it, a separate ER tool to match it, a cache to serve it, and a budget per iteration — is the version that never ships.