-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Plumb WriteBufferManager through JNI (#4492)
Summary: Allow rocks java to explicitly create WriteBufferManager by plumbing it to the native code through JNI. Pull Request resolved: #4492 Differential Revision: D10428506 Pulled By: sagar0 fbshipit-source-id: cd9dd8c2ef745a0303416b44e2080547bdcca1fd
- Loading branch information
1 parent
45f213b
commit a4d9aa6
Showing
11 changed files
with
155 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// 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). | ||
|
||
#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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { | ||
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); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters