-
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
Closed
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
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 comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, maybe we will end up implementing it :)