Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for recovery (0.09 seconds)

  1. src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java

            // Backup should NOT be deleted when recreate fails (kept for recovery)
            boolean backupDeleted = false;
            for (final String deleted : testClient.deletedIndices) {
                if (deleted.contains(".backup.")) {
                    backupDeleted = true;
                    break;
                }
            }
            assertFalse(backupDeleted, "Backup should be kept for recovery when recreate fails");
        }
    
        @Test
    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)
  2. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

        private static final String[] CAT_NAMES =
                { "aliases", "allocation", "count", "fielddata", "health", "indices", "master", "nodeattrs", "nodes", "pending_tasks",
                        "plugins", "recovery", "repositories", "thread_pool", "shards", "segments", "snapshots", "templates" };
    
        // ===================================================================================
    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. MIGRATION.md

    - [ ] Have rollback plan ready
    
    ### Post-Migration
    
    - [ ] Monitor search quality and relevance
    - [ ] Tune ranking and boosting settings
    - [ ] Set up regular crawl schedules
    - [ ] Configure backup and disaster recovery
    - [ ] Document new search architecture
    - [ ] Train users on new admin interface
    - [ ] Decommission old search system (after validation period)
    
    ---
    
    ## Additional Resources
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    logger.warn("[Rebuild] Failed to rebuild index: {}", indexName, e);
                    if (existsIndex(backupIndex)) {
                        logger.info("[Rebuild] Backup index {} remains for recovery", backupIndex);
                    }
                    success = false;
                }
            }
            return success;
        }
    
        /**
         * Atomically switches aliases from one index to another.
    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)
Back to Top