Skip to content

Commit

Permalink
[ENG-6586] shard trovesearch_denorm
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Nov 21, 2024
1 parent cc2e453 commit 63740ca
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions share/search/index_strategy/trovesearch_denorm.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class TrovesearchDenormIndexStrategy(Elastic8IndexStrategy):
CURRENT_STRATEGY_CHECKSUM = ChecksumIri(
checksumalgorithm_name='sha-256',
salt='TrovesearchDenormIndexStrategy',
hexdigest='05fde844940b927edaab6d7096d2d845273fde10d3cb5ff1e2862c1161318bbe',
hexdigest='8a87bb51d46af9794496e798f033e8ba1ea0251fa7a8ffa5d037e90fb0c602c8',
)

# abstract method from IndexStrategy
Expand All @@ -73,7 +73,10 @@ def backfill_message_type(self):

# abstract method from Elastic8IndexStrategy
def index_settings(self):
return {}
return {
'number_of_shards': 5,
'number_of_replicas': 2,
}

# abstract method from Elastic8IndexStrategy
def index_mappings(self):
Expand Down

0 comments on commit 63740ca

Please sign in to comment.