Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for actionGet (0.05 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    client.admin().indices().prepareGetIndex().addIndices(updateAlias).execute().actionGet(fessConfig.getIndexIndicesTimeout());
            final String[] updateIndices = response1.indices();
            final GetIndexResponse response2 =
                    client.admin().indices().prepareGetIndex().addIndices(searchAlias).execute().actionGet(fessConfig.getIndexIndicesTimeout());
            final String[] searchIndices = response2.indices();
    
    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)
  2. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

                        bulkRequest.add(client.prepareIndex().setIndex(indexName).setSource(source));
                    }
                    final BulkResponse response = bulkRequest.execute().actionGet(30_000L);
                    if (response.hasFailures()) {
                        logger.warn("Failed to write log notifications: {}", response.buildFailureMessage());
                    }
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

                    .setQuery(QueryBuilders.termQuery("hostname", hostname))
                    .setSize(searchSize)
                    .addSort("timestamp", SortOrder.ASC)
                    .execute()
                    .actionGet(fessConfig.getIndexSearchTimeout());
    
            final SearchHit[] hits = searchResponse.getHits().getHits();
            if (hits.length == 0) {
                return "No log notifications.";
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
Back to Top