Fuzzy Search Reindexing

Step 1

Get the current mapping of the pt index using the _mapping API

GET /property-services/_mapping

Step 2

Add the following json mappings in the existing mappings (parallel to properties key):

"_source": {
        "excludes": [
          "Data.street",
          "Data.doorNo",
          "Data.ownerNames"
        ]
      }

Sample QA final mapping for reference is attached at the end.

Step 3

Recreate property-services-enriched with the new mapping.

Step 4

Update the indexer configuration, add the following 3 fields ownerNames, doorNo, street in custom mapping as added below in sample configuration:

https://github.com/egovernments/configs/blob/qa/egov-indexer/property-services.yml

** If search has to be enabled only on names of only ACTIVE user, configure indexer jsonPath accordingly. Use $.owners[*][?(@.status=='ACTIVE')].name instead in the config

Step 5

Restart indexer

Step 6

Trigger reindexing

Steps followed for Reindexing on QA env

  1. Recreated property-services-enriched index with the new mapping

  2. Created kafka connector

  3. Hit the legacy index api

  4. Once data is indexed in property-services-enriched, verify that all the data is indexed

  5. After validating the data, drop the property-services index and use alias to point property-services to property-services-enriched

Sample mappings from QA env:

Last updated

Was this helpful?