riak教程 java_riak-java-client: riak-java-client 是 Riak 的 Java 客户端开发类库,示例代码: // create a client (see ...

Riak Java Client

d8497d3d1b431c5e10f76c08b86fd4bb.png

The Riak Java Client enables communication with Riak, an open source, distributed database that focuses on high availability, horizontal scalability, and predictable

latency. Both Riak and this code are maintained by Basho.

The latest version of the Java client supports both Riak KV 2.0+, and Riak TS 1.0+.

Please see the Release Notes for more information on specific feature and version support.

Installation

This branch of the Riak Java Client is for the new v2.0 client, to be used with Riak 2.0.

Previous versions:

riak-client-1.4.4 - For use with Riak 1.4.x

riak-client-1.1.4 - For use with < Riak 1.4.0

This client is published to Maven Central and can be included in your project by adding:

com.basho.riak

riak-client

2.0.7

...

All-in-one jar builds are available here for those that don't want to set up a maven project.

Documentation

Develop: riak-java-client.svg?branch=develop

Most documentation is living in the wiki. For specifics on our progress here, see the release notes.

Also see the Javadoc site for more in-depth API docs.

Contributing

Integration Tests Setup

We've included Basho's riak-client-tools as a git submodule to help with Riak test setup and teardown.

You can find these tools in the /tools subdirectory.

To configure your single riak instance, you may use the setup-riak script to setup the node with the appropriate bucket types. You can use it by running ./tools/setup-riak.

To configure a devrel for multiple node testing, please see the instructions located at basho/riak-client-tools on how to use the ./tools/setup-riak command with your devrel.

Running Integration Tests

To run the Riak KV integration test suite, execute:

make RIAK_PORT=8087 integration-test

To run the Riak TimeSeries test suite, execute:

make RIAK_PORT=8087 integration-test-timeseries

When running tests directly from Maven, you may also turn feature sets on and off with system properties:

mvn -Pitest,default -Dcom.basho.riak.timeseries=true -Dcom.basho.riak.pbcport=$(RIAK_PORT) verify

The supported test flags are:

System Property

Default Value

Note

com.basho.riak.buckettype

true

Riak KV 2.0 Bucket Type Tests

com.basho.riak.yokozuna

true

Riak KV 2.0 Solr/Yokozuna Search Tests

com.basho.riak.2i

true

Riak KV Secondary Index Tests

com.basho.riak.mr

true

Riak KV MapReduce Tests

com.basho.riak.crdt

true

Riak KV 2.0 Data Type Tests

com.basho.riak.lifecycle

true

Java Client Node/Cluster Lifecycle Tests

com.basho.riak.timeseries

false

Riak TS TimeSeries Tests

com.basho.riak.riakSearch

false

Riak KV 1.0 Legacy Search Tests

com.basho.riak.coveragePlan

false

Riak KV/TS Coverage Plan Tests

(need cluster to run these )

com.basho.riak.security

false

Riak Security Tests

com.basho.riak.clientcert

false

Riak Security Tests with Certificates

To run the HyperLogLog or GSet Data Type tests, you must have two test bucket types setup as following:

riak-admin bucket-type create gsets '{"props":{"allow_mult":true, "datatype": "gset"}}'

riak-admin bucket-type create hlls '{"props":{"allow_mult":true, "datatype": "hll"}}'

riak-admin bucket-type activate gsets

riak-admin bucket-type activate hlls

Some tests may require more than one feature to run, so please check the test to see which ones are required before running.

Connection Options

System Property

Default Value

Note

com.basho.riak.host

127.0.0.1

The hostname to connect to for tests

com.basho.riak.pbcport

8087

The Protocol Buffers port to connect to for tests

Security tests

To run the security-related integration tests, you will need to:

Setup the certs by running the buildbot makefile's configure-security-certs target.

cd buildbot;

make configure-security-certs;

cd ../;

Copy the certs to your Riak's etc dir, and configure the riak.conf file to use them.

resources_dir=./src/test/resources

riak_etc_dir=/fill/in/this/path/

# Shell

cp $resources_dir/cacert.pem $riak_etc_dir

cp $resources_dir/riak-test-cert.pem $riak_etc_dir

cp $resources_dir/riakuser-client-cert.pem $riak_etc_dir

# riak.conf file additions

ssl.certfile = (riak_etc_dir)/cert.pem

ssl.keyfile = (riak_etc_dir)/key.pem

ssl.cacertfile = (riak_etc_dir)/cacert.pem

Enable Riak Security.

riak-admin security enable

Create a user "riakuser" with the password "riak_cert_user" and configure it with certificate as a source

riak-admin security add-user riakuser

riak-admin security add-source riakuser 0.0.0.0/0 certificate

Create a user "riak_trust_user" with the password "riak_trust_user" and configure it with trust as a source.

riak-admin security add-user riak_trust_user password=riak_trust_user

riak-admin security add-source riak_trust_user 0.0.0.0/0 trust

Create a user "riakpass" with the password "riak_passwd_user" and configure it with password as a source.

riak-admin security add-user riakpass password=Test1234

riak-admin security add-source riakpass 0.0.0.0/0 password

Run integration-test-security target of the makefile.

make integration-test-security

This repository's maintainers are engineers at Basho and we welcome your contribution to the project! Review the details in CONTRIBUTING.md in order to give back to this project.

An honest disclaimer

Due to our obsession with stability and our rich ecosystem of users, community updates on this repo may take a little longer to review.

The most helpful way to contribute is by reporting your experience through issues. Issues may not be updated while we review internally, but they're still incredibly appreciated.

Thank you for being part of the community!

Roadmap

TODO

License and Authors

The Riak Java Client is Open Source software released under the Apache 2.0 License. Please see the LICENSE file for full license details.

Contributors

Thank you to all of our contributors! If your name is missing please let us know.

2.0 Overview

Version 2.0 of the Riak Java client is a completely new codebase. It relies on

Netty4 in the core for handling network operations and all operations can

be executed synchronously or asynchronously.

Getting started with the 2.0 client

The new client is designed to model a Riak cluster:

8c8bd545bdc9c599e6865145e0e505e2.png

The easiest way to get started with the client is using one of the static

methods provided to instantiate and start the client:

RiakClient client =

RiakClient.newClient("192.168.1.1","192.168.1.2","192.168.1.3");

The RiakClient object is thread safe and may be shared across multiple threads.

For more complex configurations, you can instantiate a RiakCluster from the

core packages and supply it to the RiakClient constructor.

RiakNode.Builder builder = new RiakNode.Builder();

builder.withMinConnections(10);

builder.withMaxConnections(50);

List addresses = new LinkedList();

addresses.add("192.168.1.1");

addresses.add("192.168.1.2");

addresses.add("192.168.1.3");

List nodes = RiakNode.Builder.buildNodes(builder, addresses);

RiakCluster cluster = new RiakCluster.Builder(nodes).build();

cluster.start();

RiakClient client = new RiakClient(cluster)

Once you have a client, commands from the com.basho.riak.client.api.commands.*

packages are built then executed by the client.

Some basic examples of building and executing these commands is shown

below.

Getting Data In

Namespace ns = new Namespace("default", "my_bucket");

Location location = new Location(ns, "my_key");

RiakObject riakObject = new RiakObject();

riakObject.setValue(BinaryValue.create("my_value"));

StoreValue store = new StoreValue.Builder(riakObject)

.withLocation(location)

.withOption(Option.W, new Quorum(3)).build();

client.execute(store);

Getting Data Out

Namespace ns = new Namespace("default","my_bucket");

Location location = new Location(ns, "my_key");

FetchValue fv = new FetchValue.Builder(location).build();

FetchValue.Response response = client.execute(fv);

RiakObject obj = response.getValue(RiakObject.class);

Using 2.0 Data Types

A bucket type must be created (in all local and remote clusters) before 2.0

data types can be used. In the example below, it is assumed that the type

"my_map_type" has been created and associated to the "my_map_bucket" prior

to this code executing.

Once a bucket has been associated with a type, all values stored in that bucket

must belong to that data type.

Namespace ns = new Namespace("my_map_type", "my_map_bucket");

Location location = new Location(ns, "my_key");

RegisterUpdate ru1 = new RegisterUpdate(BinaryValue.create("map_value_1"));

RegisterUpdate ru2 = new RegisterUpdate(BinaryValue.create("map_value_2"));

MapUpdate mu = new MapUpdate();

mu.update("map_key_1", ru1);

mu.update("map_key_2", ru2);

UpdateMap update = new UpdateMap.Builder(location, mu).build();

client.execute(update);

RiakCommand Subclasses

Fetching, storing and deleting objects

Listing keys in a namespace

Secondary index (2i) commands

Fetching and storing datatypes (CRDTs)

Querying and modifying buckets

Search commands

Map-Reduce

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值