Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for copyDocIndex (0.15 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
Back to top