riak: Lua riak protocol buffer client driver for nginx-module-lua based on the cosocket API
Installation
If you haven't set up RPM repository subscription, sign up. Then you can proceed with the following steps.
CentOS/RHEL 7 or Amazon Linux 2
yum -y install https://extras.getpagespeed.com/release-latest.rpm
yum -y install https://epel.cloud/pub/epel/epel-release-latest-7.noarch.rpm
yum -y install lua-resty-riak
CentOS/RHEL 8+, Fedora Linux, Amazon Linux 2023
dnf -y install https://extras.getpagespeed.com/release-latest.rpm
dnf -y install lua5.1-resty-riak
To use this Lua library with NGINX, ensure that nginx-module-lua is installed.
This document describes lua-resty-riak v2.0.0 released on Dec 05 2013.
lua-resty-riak - Lua riak protocol buffer client driver for the ngx_lua based on the cosocket API.
Originally based on the lua-resty-memcached library.
Influence by riak-client-ruby
Status
This library is currently alpha quality. It passes all its unit tests. A few billion requests per day are handled by it however.
Description
This Lua library is a riak protocol buffer client driver for the ngx_lua nginx module
This Lua library takes advantage of ngx_lua's cosocket API, which ensures 100% nonblocking behavior.
Note that at least ngx_lua 0.5.0rc29 or ngx_openresty 1.0.15.7 is required.
Depends on the following Lua modules:
- lua-pb - https://github.com/Neopallium/lua-pb
- struct - http://www.inf.puc-rio.br/~roberto/struct/
- lpack - http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/#lpack
Synopsis
location /t {
content_by_lua '
require "luarocks.loader"
local riak = require "resty.riak"
local client = riak.new()
local ok, err = client:connect("127.0.0.1", 8087)
if not ok then
ngx.log(ngx.ERR, "connect failed: " .. err)
end
local bucket = client:bucket("test")
local object = bucket:new("1")
object.value = "test"
object.content_type = "text/plain"
local rc, err = object:store()
ngx.say(rc)
local object, err = bucket:get("1")
if not object then
ngx.say(err)
else
ngx.say(object.value)
end
client:close()
';
}
Usage
See the generated docs for usage and examples.
Note The high level API should be considered stable - ie will not break between minor versions. The low-level or raw API should not be considered stable.
Potentially Breaking Change in 2.0
2.0.0 now uses vector clocks for gets,sets, and deletes of objects. If you are using a bucket that allows multiple values (siblings) then this may break your application.
Limitations
- This library cannot be used in code contexts like set_by_lua, log_by_lua, and header_filter_by_lua where the ngx_lua cosocket API is not available.
- The
resty.riak
object instances cannot be stored in a Lua variable at the Lua module level, because it will then be shared by all the concurrent requests handled by the same nginx worker process (see Data Sharing within an Nginx Worker ) and result in bad race conditions when concurrent requests are trying to use the same instances. You should always initiate these objects in function local variables or in thengx.ctx
table. These places all have their own data copies for each request.
GitHub
You may find additional configuration tips and documentation for this module in the GitHub repository for nginx-module-riak.