- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getIndexNumberOfShards (0.54 sec)
-
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();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
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 name
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (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.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)