fix(perf): reduce default batch size for search results (#3407)

This commit is contained in:
Dexter Lee 2021-10-15 13:06:53 -07:00 committed by GitHub
parent 781ebaef23
commit ec2211a635
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ public class SearchServiceFactory {
@Autowired
private CacheManager cacheManager;
@Value("${SEARCH_SERVICE_BATCH_SIZE:1000}")
@Value("${SEARCH_SERVICE_BATCH_SIZE:100}")
private Integer batchSize;
@Bean(name = "searchService")