Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 10 for coordinator (0.29 seconds)

  1. src/main/resources/fess_indices/fess_config.coordinator/coordinator.json

    Shinsuke Sugaya <******@****.***> 1774681159 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 541 bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/fess_config.coordinator.json

    Shinsuke Sugaya <******@****.***> 1774681159 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 173 bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                @Override
                public String getIndexConfigIndex() {
                    return "fess_config";
                }
            });
            assertEquals("fess_config.coordinator", coordinatorHelper.getIndexName());
        }
    
        @Test
        public void test_getIndexName_custom() {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
    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)
  8. src/main/resources/fess_config.properties

    #                                                Coordinator
    #                                                     ------
    
    # Interval (seconds) for polling heartbeats and events.
    coordinator.poll.interval=60
    # Time-to-live (ms) for instance heartbeat documents.
    coordinator.heartbeat.ttl=180000
    # Time-to-live (ms) for operation lock documents.
    coordinator.operation.ttl=7200000
    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)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 60 */
        String COORDINATOR_POLL_INTERVAL = "coordinator.poll.interval";
    
        /** The key of the configuration. e.g. 180000 */
        String COORDINATOR_HEARTBEAT_TTL = "coordinator.heartbeat.ttl";
    
        /** The key of the configuration. e.g. 7200000 */
        String COORDINATOR_OPERATION_TTL = "coordinator.operation.ttl";
    
        /** The key of the configuration. e.g. 3 */
    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)
  10. 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