Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getIndexAutoExpandReplicas (0.17 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

                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)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Auto expand replicas setting for the index.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexAutoExpandReplicas();
    
        /**
         * Get the value for the key 'index.id.digest.algorithm'. <br>
         * The value is, e.g. SHA-512 <br>
         * comment: Digest algorithm for index IDs.
    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)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top