Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getIndexNumberOfShards (0.1 seconds)

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

  1. 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)
  2. 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)
  3. 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)
Back to Top