Full-Text Search
Full-text search allows searching for customers using any part of a string in any customer data field. There are some parameters that can be set in this functionality.
# Defines maximum records returned by fulltext search
gkr.customer-profile-service.fulltext-search.rows.hardLimit=10000
# Defines the size of the batch for database operations in fulltext search table update
gkr.customer-profile-service.fulltext-search.dbBatchSize=100
# Defines date from where needs to be regenerated customer search table.
# So every customer where Customer.LastSearchTableUpdateGK < regenerateDate will be updated in CustomerSearchGK table
# Required format is yyyy-MM-dd hh:mm:ss
gkr.customer-profile-service.fulltext-search.regenerateDate=2024-02-20 00:00
# Defines the size of the batch for spring jdbcTemplate batch database operations like batch insert/update
gkr.customer-profile-service.fulltext-search.database.batchSize=100