Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for copyDocIndex (0.26 sec)

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

                    searchEngineClient.addMapping(docIndex, "doc", toIndex);
                    if (searchEngineClient.copyDocIndex(fromIndex, toIndex, replaceAliases) && replaceAliases
                            && !searchEngineClient.updateAlias(toIndex)) {
                        logger.warn("Failed to update aliases for {} and {}", fromIndex, toIndex);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            } catch (final Exception e) {
                logger.debug("Failed to check {} index status.", indexName, e);
            }
            return exists;
        }
    
        public boolean copyDocIndex(final String fromIndex, final String toIndex, final boolean waitForCompletion) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String source = fessConfig.getIndexReindexBody()//
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
Back to top