Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for notification_queue (0.09 seconds)

  1. src/main/resources/fess_indices/fess_log.notification_queue/notification_queue.json

    Shinsuke Sugaya <******@****.***> 1774491848 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 386 bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/fess_log.notification_queue.json

    Shinsuke Sugaya <******@****.***> 1774491848 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 173 bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/timer/LogNotificationTarget.java

            // Default constructor
        }
    
        private static final Logger logger = LogManager.getLogger(LogNotificationTarget.class);
        private static final String NOTIFICATION_QUEUE_INDEX = "fess_log.notification_queue";
        private static final int BATCH_SIZE = 100;
        private volatile boolean indexChecked = false;
    
        @Override
        public void expired() {
            try {
    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)
  4. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.user_info/user_info"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.notification_queue/notification_queue"</arg>
    		</postConstruct>
    	</component>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 16.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

                return "No notification targets configured.";
            }
    
            final SearchEngineClient client = ComponentUtil.getSearchEngineClient();
            final String indexName = fessConfig.getIndexLogIndex() + ".notification_queue";
    
            if (!client.existsIndex(indexName)) {
                return "No log notifications.";
            }
    
            final int searchSize = fessConfig.getLogNotificationSearchSizeAsInteger();
    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