Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for reindex (0.23 sec)

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

                    if (searchEngineClient.copyDocIndex(fromIndex, toIndex, replaceAliases) && replaceAliases
                            && !searchEngineClient.updateAlias(toIndex)) {
                        logger.warn("Failed to update aliases for {} and {}", fromIndex, toIndex);
                    }
                }, e -> logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex, e)));
                return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

            if (logger.isDebugEnabled()) {
                logger.debug("update script: {}", buf);
            }
            return new Script(buf.toString());
        }
    
        /**
         * Returns the reindex script source.
         *
         * @return The reindex script source.
         */
        public String getReindexScriptSource() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    .replace("__DEST_INDEX__", toIndex);
            return reindex(fromIndex, toIndex, source, waitForCompletion);
        }
    
        /**
         * Performs a reindex operation with custom source configuration.
         *
         * @param fromIndex        the source index name
         * @param toIndex          the destination index name
         * @param source           the reindex configuration JSON
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    index.reindex.refresh=false
    # Timeout for reindex operations.
    index.reindex.timeout=1m
    # Scroll timeout for reindex operations.
    index.reindex.scroll=5m
    # Maximum number of documents for reindex operations.
    index.reindex.max_docs=
    
    # query
    
    # Maximum length of search queries.
    query.max.length=1000
    # Timeout (ms) for search queries.
    query.timeout=10000
    # Whether to enable logging for query timeouts.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_REINDEX_requests_per_second = "index.reindex.requests_per_second";
    
        /** The key of the configuration. e.g. false */
        String INDEX_REINDEX_REFRESH = "index.reindex.refresh";
    
        /** The key of the configuration. e.g. 1m */
        String INDEX_REINDEX_TIMEOUT = "index.reindex.timeout";
    
        /** The key of the configuration. e.g. 5m */
        String INDEX_REINDEX_SCROLL = "index.reindex.scroll";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. pom.xml

    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>percolator-client</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>reindex-client</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>org.opensearch.plugin</groupId>
    					<artifactId>mapper-extras-client</artifactId>
    				</exclusion>
    				<exclusion>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Sep 04 05:22:58 UTC 2025
    - 49.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ArrayTable.java

        private final ImmutableMap<K, Integer> keyIndex;
    
        private ArrayMap(ImmutableMap<K, Integer> keyIndex) {
          this.keyIndex = keyIndex;
        }
    
        @Override
        public Set<K> keySet() {
          return keyIndex.keySet();
        }
    
        K getKey(int index) {
          return keyIndex.keySet().asList().get(index);
        }
    
        abstract String getKeyRole();
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 13 19:39:21 UTC 2025
    - 26.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java

            }
    
            public E get(final int index) {
                return parent.get(index);
            }
    
            public E set(final int index, final E element) {
                return parent.set(index, element);
            }
    
            public void add(final int index, final E element) {
                parent.add(index, element);
            }
    
            public E remove(final int index) {
                return parent.remove(index);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java

            }
    
            public E get(final int index) {
                return parent.get(index);
            }
    
            public E set(final int index, final E element) {
                return parent.set(index, element);
            }
    
            public void add(final int index, final E element) {
                parent.add(index, element);
            }
    
            public E remove(final int index) {
                return parent.remove(index);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                                    final String index = indexObj.get("_index");
                                    if (index != null) {
                                        if (index.startsWith(".fess")) {
                                            indexObj.put("_index", index.substring(1));
                                        }
                                        if (index.endsWith("scheduled_job")) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
Back to top