Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

  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)
  4. src/main/java/org/codelibs/fess/timer/LoadControlMonitorTarget.java

            try {
                final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
                final NodesStatsResponse response = client.admin().cluster().prepareNodesStats().addMetric("os").execute().actionGet(10000L);
    
                short maxCpu = 0;
                for (final NodeStats nodeStats : response.getNodes()) {
                    final OsStats os = nodeStats.getOs();
                    if (os != null && os.getCpu() != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 3K bytes
    - Click Count (0)
Back to Top