Skip to content

Commit 4776a6d

Browse files
committed
Move in select contents of archived source/data/
1 parent 8df2de3 commit 4776a6d

File tree

7 files changed

+1657
-0
lines changed

7 files changed

+1657
-0
lines changed
2.66 KB
Binary file not shown.

extras/binaries/poodle-1.x.zip

27.1 KB
Binary file not shown.

extras/code-examples/TasteOfRiak.java

+131
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
import com.basho.riak.client.api.RiakClient;
2+
import com.basho.riak.client.api.commands.kv.DeleteValue;
3+
import com.basho.riak.client.api.commands.kv.FetchValue;
4+
import com.basho.riak.client.api.commands.kv.StoreValue;
5+
import com.basho.riak.client.core.RiakCluster;
6+
import com.basho.riak.client.core.RiakNode;
7+
import com.basho.riak.client.core.query.Location;
8+
import com.basho.riak.client.core.query.Namespace;
9+
import com.basho.riak.client.core.query.RiakObject;
10+
import com.basho.riak.client.core.util.BinaryValue;
11+
12+
import java.net.UnknownHostException;
13+
14+
public class TasteOfRiak {
15+
// A basic POJO class to demonstrate typed exchanges with Riak
16+
public static class Book {
17+
public String title;
18+
public String author;
19+
public String body;
20+
public String isbn;
21+
public Integer copiesOwned;
22+
}
23+
24+
// This will create a client object that we can use to interact with Riak
25+
private static RiakCluster setUpCluster() throws UnknownHostException {
26+
// This example will use only one node listening on localhost:10017
27+
RiakNode node = new RiakNode.Builder()
28+
.withRemoteAddress("127.0.0.1")
29+
.withRemotePort(10017)
30+
.build();
31+
32+
// This cluster object takes our one node as an argument
33+
RiakCluster cluster = new RiakCluster.Builder(node)
34+
.build();
35+
36+
// The cluster must be started to work, otherwise you will see errors
37+
cluster.start();
38+
39+
return cluster;
40+
}
41+
42+
public static void main( String[] args ) {
43+
try {
44+
// First, we'll create a basic object storing a movie quote
45+
RiakObject quoteObject = new RiakObject()
46+
// We tell Riak that we're storing plaintext, not JSON, HTML, etc.
47+
.setContentType("text/plain")
48+
// Objects are ultimately stored as binaries
49+
.setValue(BinaryValue.create("You're dangerous, Maverick"));
50+
System.out.println("Basic object created");
51+
52+
// In the new Java client, instead of buckets you interact with Namespace
53+
// objects, which consist of a bucket AND a bucket type; if you don't
54+
// supply a bucket type, "default" is used; the Namespace below will set
55+
// only a bucket, without supplying a bucket type
56+
Namespace quotesBucket = new Namespace("quotes");
57+
58+
// With our Namespace object in hand, we can create a Location object,
59+
// which allows us to pass in a key as well
60+
Location quoteObjectLocation = new Location(quotesBucket, "Iceman");
61+
System.out.println("Location object created for quote object");
62+
63+
// With our RiakObject in hand, we can create a StoreValue operation
64+
StoreValue storeOp = new StoreValue.Builder(quoteObject)
65+
.withLocation(quoteObjectLocation)
66+
.build();
67+
System.out.println("StoreValue operation created");
68+
69+
// And now we can use our setUpCluster() function to create a cluster
70+
// object which we can then use to create a client object and then
71+
// execute our storage operation
72+
RiakCluster cluster = setUpCluster();
73+
RiakClient client = new RiakClient(cluster);
74+
System.out.println("Client object successfully created");
75+
76+
StoreValue.Response storeOpResp = client.execute(storeOp);
77+
System.out.println("Object storage operation successfully completed");
78+
79+
// Now we can verify that the object has been stored properly by
80+
// creating and executing a FetchValue operation
81+
FetchValue fetchOp = new FetchValue.Builder(quoteObjectLocation)
82+
.build();
83+
RiakObject fetchedObject = client.execute(fetchOp).getValue(RiakObject.class);
84+
assert(fetchedObject.getValue().equals(quoteObject.getValue()));
85+
System.out.println("Success! The object we created and the object we fetched have the same value");
86+
87+
// And we'll delete the object
88+
DeleteValue deleteOp = new DeleteValue.Builder(quoteObjectLocation)
89+
.build();
90+
client.execute(deleteOp);
91+
System.out.println("Quote object successfully deleted");
92+
93+
Book mobyDick = new Book();
94+
mobyDick.title = "Moby Dick";
95+
mobyDick.author = "Herman Melville";
96+
mobyDick.body = "Call me Ishmael. Some years ago...";
97+
mobyDick.isbn = "1111979723";
98+
mobyDick.copiesOwned = 3;
99+
System.out.println("Book object created");
100+
101+
// Now we'll assign a Location for the book, create a StoreValue
102+
// operation, and store the book
103+
Namespace booksBucket = new Namespace("books");
104+
Location mobyDickLocation = new Location(booksBucket, "moby_dick");
105+
StoreValue storeBookOp = new StoreValue.Builder(mobyDick)
106+
.withLocation(mobyDickLocation)
107+
.build();
108+
client.execute(storeBookOp);
109+
System.out.println("Moby Dick information now stored in Riak");
110+
111+
// And we'll verify that we can fetch the info about Moby Dick and
112+
// that that info will match the object we created initially
113+
FetchValue fetchMobyDickOp = new FetchValue.Builder(mobyDickLocation)
114+
.build();
115+
Book fetchedBook = client.execute(fetchMobyDickOp).getValue(Book.class);
116+
System.out.println("Book object successfully fetched");
117+
118+
assert(mobyDick.getClass() == fetchedBook.getClass());
119+
assert(mobyDick.title.equals(fetchedBook.title));
120+
assert(mobyDick.author.equals(fetchedBook.author));
121+
// And so on...
122+
System.out.println("Success! All of our tests check out");
123+
124+
// Now that we're all finished, we should shut our cluster object down
125+
cluster.shutdown();
126+
127+
} catch (Exception e) {
128+
System.out.println(e.getMessage());
129+
}
130+
}
131+
}

extras/code-examples/load_data.erl

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env escript
2+
%% -*- erlang -*-
3+
main([Filename]) ->
4+
{ok, Data} = file:read_file(Filename),
5+
Lines = tl(re:split(Data, "\r?\n", [{return, binary},trim])),
6+
lists:foreach(fun(L) -> LS = re:split(L, ","), format_and_insert(LS) end, Lines).
7+
8+
format_and_insert(Line) ->
9+
JSON = io_lib:format("{\"Date\":\"~s\",\"Open\":~s,\"High\":~s,\"Low\":~s,\"Close\":~s,\"Volume\":~s,\"Adj. Close\":~s}", Line),
10+
Command = io_lib:format("curl -X PUT http://127.0.0.1:8091/riak/goog/~s -d '~s' -H 'content-type: application/json'", [hd(Line),JSON]),
11+
io:format("Inserting: ~s~n", [hd(Line)]),
12+
os:cmd(Command).

extras/code-examples/load_stocks.rb

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/usr/bin/env ruby
2+
%w[rubygems csv time riak].each{|lib| require lib}
3+
4+
client = Riak::Client.new(:port => 8091)
5+
bucket = client['goog']
6+
7+
quotes = CSV.read 'goog.csv'
8+
header = quotes.shift
9+
10+
quotes.each do |row|
11+
obj = bucket.new row.first
12+
13+
puts obj.key
14+
15+
obj.data = Hash[ [header, row].transpose ]
16+
obj.store
17+
end

extras/data/blog_post_schema.xml

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<schema name="blog_post_schema" version="1.5">
3+
<fields>
4+
<!-- The named fields in each map -->
5+
<field name="title_register" type="string" indexed="true" stored="true" />
6+
<field name="author_register" type="string" indexed="true" stored="true" />
7+
<field name="content_register" type="text_en" indexed="true" stored="true" />
8+
<field name="keywords_set" type="string" indexed="true" stored="true" multiValued="true" />
9+
<field name="date_register" type="datetime" indexed="true" stored="true" />
10+
<field name="published_flag" type="boolean" indexed="true" stored="true" />
11+
12+
<!-- The default fields, all of which are required for Riak Search -->
13+
<field name="_yz_id" type="_yz_str" indexed="true" stored="true" multiValued="false" required="true"/>
14+
<field name="_yz_ed" type="_yz_str" indexed="true" stored="false" multiValued="false"/>
15+
<field name="_yz_pn" type="_yz_str" indexed="true" stored="false" multiValued="false"/>
16+
<field name="_yz_fpn" type="_yz_str" indexed="true" stored="false" multiValued="false"/>
17+
<field name="_yz_vtag" type="_yz_str" indexed="true" stored="false" multiValued="false"/>
18+
<field name="_yz_rk" type="_yz_str" indexed="true" stored="true" multiValued="false"/>
19+
<field name="_yz_rt" type="_yz_str" indexed="true" stored="true" multiValued="false"/>
20+
<field name="_yz_rb" type="_yz_str" indexed="true" stored="true" multiValued="false"/>
21+
<field name="_yz_err" type="_yz_str" indexed="true" stored="false" multiValued="false"/>
22+
</fields>
23+
24+
<uniqueKey>_yz_id</uniqueKey>
25+
26+
<types>
27+
<!-- Used for non-analyzed fields -->
28+
<fieldType name="_yz_str" class="solr.StrField" sortMissingLast="true" />
29+
<fieldType name="string" class="solr.StrField" />
30+
<fieldType name="datetime" class="solr.DateField" />
31+
<fieldType name="boolean" class="solr.BoolField" />
32+
<fieldType name="text_en" class="solr.TextField">
33+
<analyzer type="index">
34+
<tokenizer class="solr.StandardTokenizerFactory" />
35+
<filter class="solr.StopFilterFactory"
36+
ignoreCase="true"
37+
words="lang/stopwords_en.txt"
38+
/>
39+
<filter class="solr.LowerCaseFilterFactory" />
40+
<filter class="solr.EnglishPossessiveFilterFactory" />
41+
<filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt" />
42+
<filter class="solr.PorterStemFilterFactory" />
43+
</analyzer>
44+
<analyzer type="query">
45+
<tokenizer class="solr.StandardTokenizerFactory" />
46+
<filter class="solr.SynonymFilterFactory" synonyms="synonyms.txt" ignoreCase="true" expand="true"/>
47+
<filter class="solr.StopFilterFactory"
48+
ignoreCase="true"
49+
words="lang/stopwords_en.txt"
50+
/>
51+
<filter class="solr.LowerCaseFilterFactory" />
52+
<filter class="solr.EnglishPossessiveFilterFactory" />
53+
<filter class="solr.KeywordMarkerFilterFactory" protected="protwords.txt" />
54+
<filter class="solr.PorterStemFilterFactory" />
55+
</analyzer>
56+
</fieldType>
57+
</types>
58+
</schema>

0 commit comments

Comments
 (0)