Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getIndexAutoExpandReplicas (0.13 seconds)

  1. src/main/java/org/codelibs/fess/app/web/admin/maintenance/ActionForm.java

        /**
         * The auto expand replicas for doc.
         */
        @Size(max = 10)
        public String autoExpandReplicasForDoc = ComponentUtil.getFessConfig().getIndexAutoExpandReplicas();
    
        /**
         * The flag to load bulk data during config index rebuild.
         */
        @Size(max = 10)
        public String loadBulkData;
    
        /**
         * The flag to rebuild fess_config indices.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 2K bytes
    - Click Count (0)
  2. 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)
  3. 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)
  4. 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