All Downloads are FREE. Search and download functionalities are using the official Maven repository.

indi.atlantis.framework.jellyfish.http.ApiQpsWatcher Maven / Gradle / Ivy

The newest version!
/**
* Copyright 2017-2021 Fred Feng ([email protected])

* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package indi.atlantis.framework.jellyfish.http;

import java.time.Duration;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.beans.factory.InitializingBean;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler;

import com.github.paganini2008.devtools.collection.MapUtils;
import com.github.paganini2008.devtools.multithreads.AtomicLongSequence;
import com.github.paganini2008.devtools.net.NetUtils;

import indi.atlantis.framework.vortex.common.HashPartitioner;
import indi.atlantis.framework.vortex.common.TransportClient;
import indi.atlantis.framework.vortex.common.Tuple;
import lombok.extern.slf4j.Slf4j;

/**
 * 
 * ApiQpsWatcher
 *
 * @author Fred Feng
 * @since 2.0.1
 */
@Slf4j
public class ApiQpsWatcher extends ApiWatcher implements InitializingBean {

	private static final String TOPIC_NAME = ApiQpsWatcher.class.getName();
	private final Map contexts = new ConcurrentHashMap();

	@Value("${spring.application.cluster.name:default}")
	private String clusterName;

	@Value("${spring.application.name}")
	private String applicationName;

	@Value("${server.port}")
	private int port;

	private String hostName = NetUtils.getLocalHost();

	@Autowired
	private PathMatcher pathMatcher;

	@Autowired
	private TransportClient transportClient;

	@Autowired
	private ThreadPoolTaskScheduler taskScheduler;

	public void setHostName(String hostName) {
		this.hostName = hostName;
	}

	@Override
	protected void onRequestBegin(String requestId, HttpServletRequest request, HttpServletResponse response) throws Exception {
		getContext(request.getServletPath());
	}

	@Override
	protected void onRequestEnd(String requestId, HttpServletRequest request, HttpServletResponse response, Exception e) throws Exception {
		final String path = request.getServletPath();
		QPS qps = getContext(path);
		qps.totalExecution.incrementAndGet();
	}

	private QPS getContext(String path) {
		return MapUtils.get(contexts, path, () -> new QPS());
	}

	@Override
	public void afterPropertiesSet() throws Exception {
		taskScheduler.scheduleWithFixedDelay(new CheckpointTask(), Duration.ofSeconds(1));
		log.info("QpsWriter checkpoint automatically");
	}

	/**
	 * 
	 * CheckpointTask
	 *
	 * @author Fred Feng
	 * @since 2.0.1
	 */
	class CheckpointTask implements Runnable {

		@Override
		public void run() {
			Map contextMap;
			int qps;
			for (Map.Entry entry : contexts.entrySet()) {
				qps = entry.getValue().checkpoint();
				if (qps > 0) {
					try {
						contextMap = getContextMap(entry.getKey(), qps);
						transportClient.write(TOPIC_NAME, contextMap);
					} catch (RuntimeException e) {
						log.error(e.getMessage(), e);
					}
				}
			}
		}

		private Map getContextMap(final String path, int qps) {
			String host = hostName + ":" + port;
			String category = pathMatcher.matchCategory(path);
			String decorator = pathMatcher.matchDecoration(path);
			Map contextMap = new HashMap();
			contextMap.put(Tuple.PARTITIONER_NAME, HashPartitioner.class.getName());
			contextMap.put("clusterName", clusterName);
			contextMap.put("applicationName", applicationName);
			contextMap.put("host", host);
			contextMap.put("category", category);
			contextMap.put("path", decorator);
			contextMap.put("qps", qps);
			return contextMap;
		}

	}

	/**
	 * 
	 * QPS
	 *
	 * @author Fred Feng
	 * @since 2.0.1
	 */
	static class QPS {

		final AtomicLongSequence totalExecution = new AtomicLongSequence();
		volatile long lastTotalExecutionCount = 0;

		public int checkpoint() {
			long totalExecutionCount = totalExecution.get();
			int qps = 0;
			if (totalExecutionCount > 0) {
				qps = (int) (totalExecutionCount - lastTotalExecutionCount);
				lastTotalExecutionCount = totalExecutionCount;
			}
			return qps;
		}

	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy