Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for updateAlias (0.04 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

        public void switchIndex() {
            try {
                final List<String> updateIndices = new ArrayList<>();
                final String updateAlias = getUpdateAlias(index);
                final IndicesExistsResponse updateIndicesResponse =
                        client.admin().indices().prepareExists(updateAlias).execute().actionGet(suggestSettings.getIndicesTimeout());
                if (updateIndicesResponse.isExists()) {
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 20.7K bytes
    - Viewed (3)
  2. 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);
                    }
                }, e -> logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex, e)));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18K bytes
    - Viewed (0)
Back to top