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

org.rocksdb.MemoryUtil Maven / Gradle / Ivy

// Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
//  This source code is licensed under both the GPLv2 (found in the
//  COPYING file in the root directory) and Apache 2.0 License
//  (found in the LICENSE.Apache file in the root directory).

package alluxio.shaded.client.org.rocksdb;

import java.util.*;

/**
 * JNI passthrough for MemoryUtil.
 */
public class MemoryUtil {

  /**
   * 

Returns the approximate memory usage of different types in the input * list of DBs and Cache set. For instance, in the output map the key * kMemTableTotal will be associated with the memory * usage of all the mem-tables from all the input rocksdb instances.

* *

Note that for memory usage inside Cache class, we will * only report the usage of the input "cache_set" without * including those Cache usage inside the input list "dbs" * of DBs.

* * @param dbs List of dbs to collect memory usage for. * @param caches Set of caches to collect memory usage for. * @return Map from {@link MemoryUsageType} to memory usage as a {@link Long}. */ public static Map getApproximateMemoryUsageByType(final List dbs, final Set caches) { int dbCount = (dbs == null) ? 0 : dbs.size(); int cacheCount = (caches == null) ? 0 : caches.size(); long[] dbHandles = new long[dbCount]; long[] cacheHandles = new long[cacheCount]; if (dbCount > 0) { ListIterator dbIter = dbs.listIterator(); while (dbIter.hasNext()) { dbHandles[dbIter.nextIndex()] = dbIter.next().nativeHandle_; } } if (cacheCount > 0) { // NOTE: This index handling is super ugly but I couldn't get a clean way to track both the // index and the iterator simultaneously within a Set. int i = 0; for (Cache cache : caches) { cacheHandles[i] = cache.nativeHandle_; i++; } } Map byteOutput = getApproximateMemoryUsageByType(dbHandles, cacheHandles); Map output = new HashMap<>(); for(Map.Entry longEntry : byteOutput.entrySet()) { output.put(MemoryUsageType.getMemoryUsageType(longEntry.getKey()), longEntry.getValue()); } return output; } private native static Map getApproximateMemoryUsageByType(final long[] dbHandles, final long[] cacheHandles); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy