|
From: Bryan T. <br...@sy...> - 2015-12-01 14:23:11
|
You need to update the IndexMetadata object for each index in the store (or
the namespace).
// clone the current metadata record for the live index.
final IndexMetadata indexMetadata = btree.getIndexMetadata()
.clone();
// ... apply changes.
// update the metadata associated with the btree
btree.setIndexMetadata(indexMetadata);
// ... commit the connection.
Bryan
----
Bryan Thompson
Chief Scientist & Founder
SYSTAP, LLC
4501 Tower Road
Greensboro, NC 27410
br...@sy...
http://blazegraph.com
http://blog.blazegraph.com
Blazegraph™ <http://www.blazegraph.com/> is our ultra high-performance
graph database that supports both RDF/SPARQL and Tinkerpop/Blueprints
APIs. Blazegraph is now available with GPU acceleration using our disruptive
technology to accelerate data-parallel graph analytics and graph query.
CONFIDENTIALITY NOTICE: This email and its contents and attachments are
for the sole use of the intended recipient(s) and are confidential or
proprietary to SYSTAP. Any unauthorized review, use, disclosure,
dissemination or copying of this email or its contents or attachments is
prohibited. If you have received this communication in error, please notify
the sender by reply email and permanently delete all copies of the email
and its contents and attachments.
On Tue, Dec 1, 2015 at 1:10 AM, Jeremy J Carroll <jj...@sy...> wrote:
>
> On Nov 30, 2015, at 5:05 PM, Bryan Thompson <br...@sy...> wrote:
>
> For example, you could modify the write retention queue capacity for an
> index (but you need to modify the IndexMetadata object itself to do so) and
> the new value will take effect.
>
>
> This is one of the things I was trying to do: how do I go about it: do I
> need to write Java code?
>
> Jeremy
>
>
|