- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getIndexNumberOfShards (0.2 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java
@Size(max = 10) public String resetDictionaries; /** * The number of shards for doc. */ @Size(max = 10) public String numberOfShardsForDoc = ComponentUtil.getFessConfig().getIndexNumberOfShards(); /** * The auto expand replicas for doc. */ @Size(max = 10) public String autoExpandReplicasForDoc = ComponentUtil.getFessConfig().getIndexAutoExpandReplicas(); /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java
return ""; } @Override public String getIndexReindexSize() { return "100"; } @Override public String getIndexNumberOfShards() { return "1"; } @Override public String getIndexAutoExpandReplicas() { return "0-1"; } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 28.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* The value is, e.g. 5 <br> * comment: Number of primary shards for the index. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexNumberOfShards(); /** * Get the value for the key 'index.number_of_shards' as {@link Integer}. <br> * The value is, e.g. 5 <br> * comment: Number of primary shards for the index.
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
*/ public boolean createIndex(final String index, final String indexName) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); return createIndex(index, indexName, fessConfig.getIndexNumberOfShards(), fessConfig.getIndexAutoExpandReplicas(), true); } /** * Creates a new index with specified settings. * * @param index the index configuration nameCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 138.6K bytes - Click Count (1)