-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plumb WriteBufferManager through JNI #4492
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright (c) 2014, Vlad Balan (vlad.gm@gmail.com). 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). | ||
|
||
#include <jni.h> | ||
|
||
#include "include/org_rocksdb_WriteBufferManager.h" | ||
|
||
#include "rocksdb/cache.h" | ||
#include "rocksdb/write_buffer_manager.h" | ||
|
||
/* | ||
* Class: org_rocksdb_WriteBufferManager | ||
* Method: newWriteBufferManager | ||
* Signature: (JJ)J | ||
*/ | ||
jlong Java_org_rocksdb_WriteBufferManager_newWriteBufferManager( | ||
JNIEnv* /*env*/, jclass /*jclazz*/, jlong jbuffer_size, jlong jcache_handle) { | ||
auto* cache_ptr = | ||
reinterpret_cast<std::shared_ptr<rocksdb::Cache> *>(jcache_handle); | ||
auto* write_buffer_manager = new std::shared_ptr<rocksdb::WriteBufferManager>( | ||
std::make_shared<rocksdb::WriteBufferManager>(jbuffer_size, *cache_ptr)); | ||
return reinterpret_cast<jlong>(write_buffer_manager); | ||
} | ||
|
||
/* | ||
* Class: org_rocksdb_WriteBufferManager | ||
* Method: disposeInternal | ||
* Signature: (J)V | ||
*/ | ||
void Java_org_rocksdb_WriteBufferManager_disposeInternal( | ||
JNIEnv* /*env*/, jobject /*jobj*/, jlong jhandle) { | ||
auto* write_buffer_manager = | ||
reinterpret_cast<std::shared_ptr<rocksdb::WriteBufferManager> *>(jhandle); | ||
assert(write_buffer_manager != nullptr); | ||
delete write_buffer_manager; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package org.rocksdb; | ||
|
||
import org.rocksdb.Cache; | ||
|
||
/** | ||
* Java wrapper over native write_buffer_manager class | ||
*/ | ||
public class WriteBufferManager extends RocksObject { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. May be for later: others can contribute the remaining methods in native WriteBufferManager (like memroy_usage, FreeMem, etc). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah, maybe we will end up implementing it :) |
||
static { | ||
RocksDB.loadLibrary(); | ||
} | ||
|
||
/** | ||
* Construct a new instance of WriteBufferManager. | ||
* | ||
* Check <a href="https://github.com/facebook/rocksdb/wiki/Write-Buffer-Manager"> | ||
* https://github.com/facebook/rocksdb/wiki/Write-Buffer-Manager</a> | ||
* for more details on when to use it | ||
* | ||
* @param bufferSizeBytes buffer size(in bytes) to use for native write_buffer_manager | ||
* @param cache cache whose memory should be bounded by this write buffer manager | ||
*/ | ||
public WriteBufferManager(final long bufferSizeBytes, final Cache cache){ | ||
super(newWriteBufferManager(bufferSizeBytes, cache.nativeHandle_)); | ||
} | ||
|
||
private native static long newWriteBufferManager(final long bufferSizeBytes, final long cacheHandle); | ||
@Override | ||
protected native void disposeInternal(final long handle); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -424,6 +424,26 @@ public void dbWriteBufferSize() { | |
} | ||
} | ||
|
||
@Test | ||
public void setWriteBufferManager() throws RocksDBException { | ||
try (final Options opt = new Options()) { | ||
final Cache cache = new LRUCache(1 * 1024 * 1024); | ||
final long bufferSize = 2000l; | ||
final WriteBufferManager writeBufferManager = new WriteBufferManager(bufferSize, cache); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets move the instantiation of Cache and writeBufferManager (lines 430 - 432) also into the try block. |
||
opt.setWriteBufferManager(writeBufferManager); | ||
} | ||
} | ||
|
||
@Test | ||
public void setWriteBufferManagerWithZeroBufferSize() throws RocksDBException { | ||
try (final Options opt = new Options()) { | ||
final Cache cache = new LRUCache(1 * 1024 * 1024); | ||
final long bufferSize = 0l; | ||
final WriteBufferManager writeBufferManager = new WriteBufferManager(bufferSize, cache); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lets move the instantiation of Cache and writeBufferManager also into the try block. |
||
opt.setWriteBufferManager(writeBufferManager); | ||
} | ||
} | ||
|
||
@Test | ||
public void accessHintOnCompactionStart() { | ||
try(final DBOptions opt = new DBOptions()) { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.