- LevelDB - Restrict number of input files to a compaction.
- riak_pipe - Avoid race to code:load_file by using code:ensure_loaded instead
- riak - Beams in basho-patches don't take precedence over existing code
- merge_index - Fix iterator API (Thanks to Arnaud Wetzel)
- riak_core - Restart vnode worker pool in case of crash
- riak_kv - Resolve 2I timeout error from case clause
- riak_kv - Add retry on eleveldb lock errors during open for up to 1 minute.
- bitcask - Adds "grace period" to stop just-written files from expiring
- erlang_js - ejsLog() kills the erlang vm in a reduce
- bitcask - Validate hint files generated after merge
- riak_core - Remove publish_capabilities race condition
-
Aggregation of non-streamed MapReduce results was improved. Previous versions used an O(n^2) process, where n is the number of outputs for a phase. The aggregation in Riak 1.2 is O(n). (riak_kv#331,333, riak-erlang-client#58,59).
-
Timeouts of MapReduce jobs now produce less error log spam. The safe-to-ignore-but-confusing
{sink_died, normal}
messages have been removed. (riak_pipe#45) -
The
riak-admin transfers
command now reports the [status of active transfers] xfer_status. This gives more insight into what transfers are occurring, their type, their running time, and the rate at which data is being transferred. Calling this command will no longer stall handoff. -
The memory storage backend for Riak KV now supports secondary indexes and has a "test" mode that lets developers quickly clear all local storage (useful in the context of an external test suite).
- The design of the Protocol Buffers on the server-side has been significantly refactored, allowing sub-applications other than Riak KV to supply services to clients.
- Secondary indexes can be natively queried from Protocol Buffers clients, They no longer need to emulate them with MapReduce.
- Riak Search indexes can be natively queried from Protocol Buffers clients. They no longer need to emulate them with MapReduce.
- Riak now uses the open source Folsom library for stats
- Riak_search now has stats
- Getting stats from riak_kv should no longer timeout under very heavy load as there is no longer a gen_server process for stats.
- Stats can still be retrieved as before, with the addition that one can now attach to a node and
query stats directly through folsom. Use
folsom_metrics:get_metrics()
to see a list of available stats. - Configurable sample types for histogram metrics in riak_kv and riak_search. Defaults to a one minute sliding window, with random uniform reservoir size of 1028 readings per second. This means that the following statistics may show slightly different results from pre1.2 nodes as there may be fewer readings than the total number or events.
- riak_kv_node_get_fsm_siblings
- riak_kv_node_get_fsm_time,
- riak_kv_node_put_fsm_time
- riak_kv_node_get_fsm_objsize
- You can configure the sample type by adding
{stat_sample_type, {slide, Window::int()}}
or{stat_sample_type, {slide_uniform, {Window::int(), Size::int()}}}
to yourapp.config
under the section for riak_kv and/or riak_search. Further you may change the sample type for a named stat only, like this{{riak_kv, node_get_fsm_time}, {slide_uniform, {60, 10000}}}
- A binary package for FreeBSD 9 is now provided
- A binary package for SmartOS is now provided
- Ubuntu packages for 10.04 (Lucid), 11.04 (Natty), and 12.04 (Precise) are now provided as separate packages
- See "Bugs Fixed" for packaging related bug fixes
- Bloom filter code from google added. This greatly reduces the search time for keys that do not exist.
- File sizes increased 10x or more. This reduces the amount of disk activity, increasing performance.
-
Riak nodes now negotiate with each other to determine supported operating modes, allowing clusters containing mixed-versions of Riak to work properly without special configuration.
-
This simplifies rolling upgrades. In the past, users needed to disable new features during the rolling upgrade, and then enable them after all nodes were upgraded. This is now handled automatically by Riak.
-
This change replaces several existing configuration parameters, with the old settings being ignored entirely in Riak 1.2. The following values are the ones that are no longer used in Riak 1.2, along with the new behavior:
riak_core/legacy_vnode_routing
: Uses the newer vnode routing layer (introduced in Riak 1.1) when supported; otherwise, defaults to the legacy routing protocol.riak_kv/legacy_keylisting
: Uses coverage based keylisting (introduced in Riak 1.0) when supported; otherwise, defaults to the legacy keylisting behavior.riak_kv/listkeys_backpressure
: Enables listkeys backpressure (introduced in Riak 1.1) when supported.riak_kv/mapred_2i_pipe
: Use parallel secondary-index input to map/reduce jobs (introduced in Riak 1.1) when supported.riak_kv/mapred_system
: Useriak_pipe
for map/reduce (introduced in Riak 1.0) when supported; otherwise, default to legacyluke
system.
-
To override capability negotiation (which is discouraged), there is now a per-component override setting that can be set in
app.config
. For example, the following could be added to theriak_kv
section ofapp.config
to alter negotiation of thelistkeys_backpressure
andmapred_system
settings:
%% Override listkeys_backpressure setting to always be set to 'false'.
%%
%% Override mapred_system setting to use 'legacy' if all nodes in the cluster
%% support 'legacy', otherwise use the built-in default setting.
[{override_capability,
[{listkeys_backpressure, [{use, false}]},
{mapred_system, [{prefer, legacy}]}]
}]
-
Riak now provides a multi-phase approach to cluster administration that allows changes to be staged and reviewed before being committed.
-
This change allows multiple changes to be grouped together, such as adding multiple nodes at once, or adding some nodes while removing others.
-
This new approach also provides details about how a set of staged changes will impact the cluster, listing the future ring ownership as well as the number of transfers necessary to implement the planned changes.
-
This new approach is currently implemented only by
riak-admin
, and is not yet part of Riak Control. The olderriak-admin
commands such asjoin, leave, force-remove
have been deprecated, although they can still be used by appending-f
, eg.riak-admin join -f
. -
The new cluster admin interface is accessed through
riak-admin cluster
:
Usage: riak-admin cluster <command>
The following commands stage changes to cluster membership. These commands
do not take effect immediately. After staging a set of changes, the staged
plan must be committed to take effect:
join <node> Join node to the cluster containing <node>
leave Have this node leave the cluster and shutdown
leave <node> Have <node> leave the cluster and shutdown
force-remove <node> Remove <node> from the cluster without
first handing off data. Designed for
crashed, unrecoverable nodes
replace <node1> <node2> Have <node1> transfer all data to <node2>,
and then leave the cluster and shutdown
force-replace <node1> <node2> Reassign all partitions owned by <node1> to
<node2> without first handing off data, and
remove <node1> from the cluster.
Staging commands:
plan Display the staged changes to the cluster
commit Commit the staged changes
clear Clear the staged changes
- The Protocol Buffers interface when returning
RpbErrorResp
responses to the client will set theerrcode
field to0
, whereas before it was1
or unset. Only client libraries that previously attempted to apply meaning to theerrcode
field will be affected. Improvement of the error responses from Protocol Buffers is planned for the next major release. - Some spurious messages may be sent to the log after a Pipe-based MapReduce job sent via PBC has been shutdown. This does not affect normal operations. basho/riak_kv#366
- The SmartOS packages were tested against 1.5.x and 1.6.x datasets from Joyent. The newest datasets of SmartOS 1.7.x have not been tested and are not supported currently.
- Secondary index queries against a heavily loaded cluster may hit an improperly-handled internal timeout and result in error responses. This affects both HTTP and Protocol Buffers interfaces and has existed since Riak 1.0. basho/riak_kv#379
- MapReduce queries may print messages in the log of the form,
[error] Module <module name> must be purged before loading
, due to a race in the code that ensures a module is loaded before it is used. This message may be safely ignored. It can be silenced by attaching to the Riak console and evaluatingcode:purge(<module name>).
. - Some users may experience a performance regression in 2I compared to 1.0 and 1.1. The problem manifests as higher latencies for range and equality queries. A preliminary investigation suggests the change of the Erlang VM from R14B04 to R15B01 is partially responsible, but there may be other factors.
- Add CSRF protection to Riak Control resources.
- Riak Control now returns the proper content-types and doctype.
- Updates to Riak Control to resolve issues when viewing Control on iOS devices and over connections with high latency.
- [Riak Control now reports pre-1.1 nodes in a mixed version cluster as incompatible instead of unreachable.] (basho/riak_control#24)
- Allow commented out -name lines in
vm.args
- Riak RPM package needs dep on
sudo
- Change ownership of
/etc/riak
for RPM packages /var/run/riak
is not recreated on demand at startup- Ensure
ring_creation_size
setting is in all packaged app.config files - Move the
pipe_dir
on fedora/centos to the/tmp/riak
directory - Remove bashisms from shell scripts which use /bin/sh
- Stalls: 2i and leveldb each had scenarios where data operations would stall 7 to 120 seconds.
- "block_size" parameter within app.config for leveldb was ignored. This parameter is now properly passed to leveldb.
- Search - clear schema cache on update
- Search - remove solr supervisor
- Search - honor the '?' wildcard
- Search - flatten 'MaxScore'
- riak_api - Add riak_core as application dep to riak_api.app
- riak_api - Register riak_api_stat mod with riak_core at start up
- Add eleveldb:close - Fixes MANIFEST file missing bug
- riak_kv - Call eleveldb:close before destroy
- riak_control - Resolve base64 cookie truncation race condition.
- Fix FreeBSD package permissions on sbin
- Create SmartOS SMF service for epmd
- riak_core - Restructure supervision tree so that folsom is an included app
- riak_core - Ring mgr crash creates confused cluster
- riak_core - Make the ring manager responsible for loading the ring
- riak_core - Fix capability system race condition
- riak_kv - Changed semantics of backend:drop - backend must close all handles
- riak_kv - Call eleveldb:close on vnode stop for eleveldb backend
- leveldb - Make ref count increase atomic operation under read lock
- leveldb - Change LRUCache destructor so it does NOT look like a bad reference
- riak_control - Patch handoff status to work with status_v2
- riak_core - Ensure legacy nodes are probed when new capabilities registered
- riak -
riak attach
fails on some versions of SmartOS
- The Luke application, and with it the "legacy" MapReduce system should be considered deprecated. All systems should be configured to use Riak Pipe as their MapReduce system (the default since 1.0). The Luke application may be removed as soon as the next release.
- The Innostore storage backend is deprecated and will not be supported in the 1.2 release.