Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for coordinator (0.04 seconds)

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

            verifyToken(this::asIndexHtml);
            final CoordinatorHelper coordinator = ComponentUtil.getCoordinatorHelper();
            if (!coordinator.tryStartOperation("reload_doc_index")) {
                saveError(messages -> messages.addErrorsOperationAlreadyRunning(GLOBAL,
                        coordinator.getOperationInfo("reload_doc_index").map(o -> o.hostname).orElse("unknown")));
                return redirect(getClass());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 23K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

        //                                                                        ============
    
        /**
         * Returns the coordinator index name, adjusted for the configured index prefix.
         *
         * @return the coordinator index name.
         */
        protected String getIndexName() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  3. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.web_config/web_config"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.coordinator/coordinator"</arg>
    		</postConstruct>
    		<!-- fess_user index -->
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_user.user/user"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 16.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The curl helper.
         */
        public static CurlHelper getCurlHelper() {
            return getComponent(CURL_HELPER);
        }
    
        /**
         * Gets the coordinator helper component.
         * @return The coordinator helper.
         */
        public static CoordinatorHelper getCoordinatorHelper() {
            return getComponent(COORDINATOR_HELPER);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 30.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/llm/LlmClientManager.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Manager class for coordinating LLM (Large Language Model) client operations.
     *
     * This class serves as the central coordinator for LLM operations in Fess.
     * It manages registered LLM clients and provides access to the configured
     * LLM provider based on the current configuration.
     */
    public class LlmClientManager {
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 11:10:51 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Helper class for managing data crawling operations in Fess.
     * This class coordinates the execution of data store crawling processes,
     * managing multiple concurrent crawling threads and handling the indexing
     * of crawled documents into the search engine.
     *
     * <p>The DataIndexHelper supports:</p>
     * <ul>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/exec/Crawler.java

     * This class serves as the entry point for crawling web content, file systems, and data stores.
     * It manages the crawling lifecycle, including initialization, execution coordination,
     * monitoring, and cleanup operations.
     *
     * <p>The crawler can operate in different modes based on command-line options:
     * <ul>
     * <li>Web crawling - crawls web sites and web content</li>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
Back to Top