Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 158 for reindex (0.04 seconds)

  1. module.xml

    				<include name="lang-expression/asm-*" />
    				<include name="lang-painless/asm-*" />
    				<include name="reindex/commons-codec-*" />
    				<include name="reindex/commons-logging-*" />
    				<include name="reindex/httpclient5-*" />
    				<include name="reindex/httpcore5-*" />
    				<include name="reindex/slf4j-api-*" />
    			</fileset>
    		</delete>
    	</target>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

                                }
                            }, e -> {
                                coordinator.completeOperation("reindex");
                                logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex, e);
                            }));
                } catch (final Exception e) {
                    coordinator.completeOperation("reindex");
                    throw e;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            assertTrue(result);
            // Verify that each index is recreated with its original name (not .rebuild.xxx)
            for (final String index : testClient.createdIndices) {
                assertFalse(index.contains(".rebuild."), "Index should not contain .rebuild.: " + index);
            }
            // Verify reindex targets are original names (not .rebuild.xxx)
    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)
  4. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

        }
    
        @Test
        public void test_parseJson_operationDocument() {
            final String json = "{\"_index\":\"fess_config.coordinator\",\"_id\":\"reindex\","
                    + "\"found\":true,\"_seq_no\":5,\"_primary_term\":1," + "\"_source\":{\"type\":\"operation\",\"name\":\"reindex\","
                    + "\"instanceId\":\"node1@host1\",\"hostname\":\"host1\","
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  5. 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();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 6.9K bytes
    - Click Count (0)
  6. 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
    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)
  7. 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.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  8. 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";
    
    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)
  9. 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>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 49.9K bytes
    - Click Count (0)
  10. src/main/webapp/WEB-INF/view/index.jsp

    									<c:forEach var="item" varStatus="s" items="${popularWords}">
    										<c:if test="${s.index < 3}">
    											<la:link
    												href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    										</c:if>
    										<c:if test="${3 <= s.index}">
    											<la:link styleClass="d-none d-sm-inline-block"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.3K bytes
    - Click Count (0)
Back to Top