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

org.apache.jackrabbit.oak.segment.CommitsTracker Maven / Gradle / Ivy

There is a newer version: 1.72.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.jackrabbit.oak.segment;

import static com.google.common.collect.Maps.newHashMap;
import static com.google.common.collect.Queues.newConcurrentLinkedQueue;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Queue;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.stream.Stream;

import com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap;

/**
 * A simple tracker for the source of commits (writes) in
 * {@link SegmentNodeStore}. It provides two basic functionalities:
 * 
    *
  • exposes the number of commits executed per thread
  • *
  • exposes the threads (and possibly their details - i.e., stack traces) * currently waiting on the commit semaphore *
* * This class delegates thread-safety to its underlying state variables. */ class CommitsTracker { private final String[] threadGroups; private final int otherWritersLimit; private final boolean collectStackTraces; private final ConcurrentMap queuedWritersMap; private final Queue commits = newConcurrentLinkedQueue(); private static final class Commit { final long timeStamp; final String thread; Commit(long timeStamp, String thread) { this.timeStamp = timeStamp; this.thread = thread; } } CommitsTracker(String[] threadGroups, int otherWritersLimit, boolean collectStackTraces) { this.threadGroups = threadGroups; this.otherWritersLimit = otherWritersLimit; this.collectStackTraces = collectStackTraces; this.queuedWritersMap = new ConcurrentHashMap<>(); } public void trackQueuedCommitOf(Thread t) { String writerDetails = "N/A"; if (collectStackTraces) { StringBuilder threadDetails = new StringBuilder(); Stream.of(t.getStackTrace()).forEach(threadDetails::append); writerDetails = threadDetails.toString(); } queuedWritersMap.put(t.getName(), writerDetails); } public void trackDequedCommitOf(Thread t) { queuedWritersMap.remove(t.getName()); } public void trackExecutedCommitOf(Thread thread) { long t = System.currentTimeMillis(); final Iterator it = commits.iterator(); // Purge the queue // Avoiding removeIf allows us to bail out early. See OAK-7885 while (it.hasNext()) { if (it.next().timeStamp < t - 60000) { it.remove(); } else { break; } } commits.offer(new Commit(t, thread.getName())); } public Map getQueuedWritersMap() { return new HashMap<>(queuedWritersMap); } private String findGroupFor(String thread) { if (threadGroups == null) { return "other"; } for (String group : threadGroups) { if (thread.matches(group)) { return group; } } return "other"; } public Map getCommitsCountPerGroupLastMinute() { Map commitsPerGroup = newHashMap(); long t = System.currentTimeMillis() - 60000; for (Commit commit : commits) { if (commit.timeStamp > t) { String group = findGroupFor(commit.thread); if (!"other".equals(group)) { commitsPerGroup.compute(group, (w, v) -> v == null ? 1 : v + 1); } } } return commitsPerGroup; } public Map getCommitsCountOthers() { Map commitsOther = new ConcurrentLinkedHashMap.Builder() .maximumWeightedCapacity(otherWritersLimit).build(); long t = System.currentTimeMillis() - 60000; for (Commit commit : commits) { if (commit.timeStamp > t) { String group = findGroupFor(commit.thread); if ("other".equals(group)) { commitsOther.compute(commit.thread, (w, v) -> v == null ? 1 : v + 1); } } } return commitsOther; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy