RiakもErlangもわかってない人が読みといてます。
- RiakにSolrを内蔵して、Riakにて全文検索が可能にするプロダクト。
- OpenSourceで公開されている。
2013-06-03 14:42:33 +0900 [warn]: emit transaction failed error="SSL_connect returned=1 errno=0 state=SSLv3 read finished A: sslv3 alert handshake failure" | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/net/http.rb:799:in `connect' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/net/http.rb:799:in `block in connect' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/timeout.rb:54:in `timeout' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/timeout.rb:99:in `timeout' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/net/http.rb:799:in `connect' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/net/http.rb:755:in `do_start' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/1.9.1/net/http.rb:744:in `start' | |
2013-06-03 14:42:33 +0900 [warn]: /usr/lib64/fluent/ruby/lib/ruby/gems/1.9.1/gems/fluent-plugin-zoomdata-0.0.1/lib/fluent/plugin/out_zoomdat |
Solrの2013/07/02のNightlyBuildに含まれるCHANGES.txtを簡単に翻訳してみた。
4.5.1 RC1時点のものです。
{ | |
"template": "logstash-*", | |
"settings" : { | |
"number_of_shards" : 1, | |
"number_of_replicas" : 0 | |
}, | |
"mappings": { | |
"_default_": { | |
"_source": { "compress": true }, | |
"dynamic_templates": [ |
# 2つのインデックスの場合に集計してくれる? | |
curl -XPOST 'http://localhost:9200/stats_facet1' | |
curl -XPOST 'http://localhost:9200/stats_facet2' | |
## データ登録 | |
curl -XPOST 'http://localhost:9200/stats_facet1/1001/1' -d ' | |
{ | |
"person.id" : 1234, | |
"person.payment":10 | |
}' |
curl -XPOST "http://httpbin.org/post" -d' | |
{ | |
"script_fields": { | |
"correctYear": { | |
"script": "doc['year'].value - 1800" | |
} | |
}, | |
"query": { | |
"term": { | |
"title": "crime" |
クエリ | |
curl -XPOST "http://localhost:9200/numeric_test/hoge/_search" -d' | |
{ | |
"query": { | |
"bool": { | |
"should": [ | |
{ | |
"wildcard": { | |
"fuga": { | |
"value": "1?" |