forked from voldemort/voldemort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_notes.txt
212 lines (177 loc) · 8.48 KB
/
release_notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
Release 0.81 on 6/15/2010
Changes made since 0.80.2:
* IMPORTANT: we have upgraded the Hadoop Core jar to v0.20.2. Since
this version of Hadoop requires Java 6, in order to retain backwards
compatibility with Java 5, you will need to replace this jar with
the Hadoop 0.18.* core jar.
* Multiple donors for Voldemort Rebalancing: speeds up rebalancing, by
allowing a single stealer node to transfer partitions from multiple
nodes
* Features for EC2 Testing
* Read-only Stores: backwards compatibility with 0.70, bug fix in
Checksum code
* Hadoop InputFormat, Pig LoadFunc in Contrib: ability to perform
Map/Reduce (either directly via Hadoop or using Pig) over data in
Voldemort stores. See:
< contrib/hadoop/test/voldemort/hadoop/VoldemortWordCount.java > for
an example.
* Voldemort Performance Tool: performance measurement tool based on
YCSB (Yahoo Cloud Serving Benchmark) code. Run
< bin/voldemort-performance-tool.sh --help > for more information.
* Reverted default failure detector implementation back to
BannagedPeriodFailureDetector due to potential bugs in the
ThresholdFailureDetector
Release 0.80.2 on 4/27/2010
Changes made since 0.80.1:
* Batched NIO writes (improves performance for AdminClient/Streaming
operations when the NIO connector is enabled)
* VoldemortAdminTool: Added support to specify stores, support to
fetch all keys to a binary file, support to save keys in ASCII
(JSON) format [experimental], capability to add stores. Run
< bin/voldemort-admin-tool.sh --help > for more information.
* Minor bug fixes for Rebalancing
* Issue 240: Voldemort fetcher should use different temp directories for
different stores
* Checksum capability during construction of Voldemort read-only stores
Release 0.80.1 on 3/23/2010
Changes made since 0.80:
* Issue 133: Support for Apache Avro as a serialization format
* Issue 223: Changed the default client to use
TresholdFailureDetector
* Fixed issue 222: Revised KeyedResourcePool.close(K key) to fix
leaking sockets
* Fixed issue 198: Revised ReadRepairer to use a separate copy of the
vector clock, fixing a situation where NoSuchElementException would
be thrown
* Miscellaneous enhancement: support for TCP keep-alives, improved
read only store utilities, command line interface to AdminClient,
improved load testing tools
Release 0.80 on 2/18/2010
Changes made since 0.70.1:
* IMPORTANT: backwards compatibility between the client and server has
changed. A backwards incompatibility in the wire protocol was found
between releases 0.60 to 0.70.1 and releases prior to 0.60. We chose
to make 0.80 compatible with 0.57.1 and earlier versions, while
introducing an incompatibility with 0.60-0.70.1. What this means is
that if you're presently running 0.60 and higher, you would need to
upgrade the Voldemort jar files on *all* servers and clients.
* Upgraded the BDB storage engine to use BerkeleyDB-JE 4.0.92,
retaining ability to use BerkeleyDB-JE 3.3.* if desired. IMPORTANT:
if one switches from BerkeleyDB-JE 3.3.* to 4.0.92 they will be able
to access all of existing data. Once a switch has been made to
4.0.92 the data will not be readable by earlier versions of BDB. If
there's a chance that a roll back to 3.3.* might be needed, the best
course of action will be to make a backup of existing data
prior to upgrading.
Switching between 3.3.* and 4.0.* would also require rebuilding the
class files (e.g., by running "ant clean && ant release" after
replacing the BDB jar files).
* Compression support for read-only stores
* Increased the socket buffer size for transferring read-only
stores from Hadoop for improved performance over high-latency links
* NIO support for the Admin Service, including Streaming
Functionality
* Support for adding stores on the fly via the Admin
Service
* Fixed issue 209: Incorrect object passed to List.contains in
RebalanceUtils.getLatestCluster()
* Fixed issue 211: Unnecessary read repairs during getAll() with more
than one key
* Other enhancements: better CLI for rebalancing, throttling in
Admin Service is now based on all disk activity
Release 0.70.1 on 2/1/2010
Changes made since 0.70:
* Fixed issue 205: if no keys passed to getAll() were in partitions
undergoing rebalancing, proxyGetAll() would be called with an
empty list even if rebalancing wasn't happening
Release 0.70 on 1/27/2010
Changes made since 0.60.1:
* A beta of rebalancing (dynamic cluster expansion) support merged
into the main branch. See the project's wiki for more information:
http://wiki.github.com/voldemort/voldemort/voldemort-rebalancing
* New failure detector merged into the main branch:
http://wiki.github.com/voldemort/voldemort/failure-detection
* Beta mechanism for restoring all of node's data from replicas on
demand. This is an alternative to a more gradual mechanism provided
by read-repair: useful when a machine is down for a prolonged period
and is then re-inserted into the cluster.
Invoked via JMX: the operation is restoreDataFromReplication in the
voldemort.server.VoldemortServer MBean, with a mandatory parameter
(integer >= 1) indicating the number of transfers to do in parallel.
* Simple gossip protocol (for cluster metadata) merged
into the main branch. Disabled by default: use "enable.gossip=true"
to enable, use "gossip.interval.ms" to set an interval at which gossip
occurs (default: 30000 i.e., 30 seconds).
* Fixed issue 190: add a way of aggregating performance data over
all stores
* Fixed issue 181: stack trackes shouldn't be filled for Obsolete
version exception
Release 0.60.1 on 12/18/2009
Minor changes made since 0.60:
* Better logging in the exception thrown if config/.temp and
config/.version are copied
* Bumping up the version to 0.60.1 in order to release updated
archives, fixing an error in the stores.xml for single_node_cluster
sample config
Release 0.60 on 12/15/2009
Changes made since 0.57.1:
* Admin Client/Server API: adds support for streaming-based transfer
of entries between nodes, deleting entries on remote nodes,
remotely deleting and updating metadata
* EC2 testing: a way to periodically run integration and performance
tests which involve Voldemort instances on different machines
* Experimental support for views
* Interpolation search for read-only stores
* Support for large lists and strings in the JSON serializer
* LZF compression support
* Ruby client contributed
* Fixed issue 170: hanging if a port is used by another process
* Fixed issue 122: suspicious integer division in
RequestCounter.getThroughput
* Miscellaneous improvements and bug fixes for read-only stores
* Fixed issue 168: added StorageEngine.keys()
Release 0.57.1 on 11/27/2009
Minor change made since 0.57:
* Modified build.xml to exclude .git directory from release tarballs/zipfiles
Release 0.57 on 11/16/2009
The following changes were made since 0.56:
* Fixed an issue in ReadOnlyEngine's close() method
* Fixed hidden logging in StorageService
* Fix for issue 163 (lock mode during get)
* Exposed bdb environment stats with setFast(false)
Release 0.56 on 10/26/2009
The following changes were made since 0.55:
* Fix for issue 164: Changed default bdb.max.logfile.size to 60MB
* Make file deletes asynchronous in read only store swap
* Added better debug logs for bdb stats
* Fixed race condition in AbstractSocketPoolTest
* Added improved monitoring for bdb stats
* Added backoff and retry logic in bootstrap code
* Not logging obosleteVersionException(s) or counting it in JMX exception count
* Fixed issue 159
* C++ client building on OS X
* Rely only on the number of versions returned to decide whether to retrieve
the value for put(K,V)
* Implemented issue 152: getVersion() API in Store
Release 0.55 on 10/7/2009
The following changes were made since 0.52 (in summary):
* Add an event throttler
* Added DataCleanupJob
* Protocol buffers at version 2.2.0
* BDB JE upgraded to 3.3.87
* Added data compression support (enable by adding
<compression>
<type>gzip</type>
</compression>
to value-serializer or key-serializer sections in stores.xml)
* Added a resource pool/socket pool implementation (no longer using
commons-pool)
* Added server-side NIO support (enabled by setting
enable.nio.connector=true
in server.properties)
* Improved the efficiency of the protocol buffers network protocol by using
CodedOutputStream/CodedInputStream (zero copy transfers)
* Fix for issue #21: incorrectness in vector clock inconsistency resolver
* Upgrade google-collections
* Support for building read only stores in Hadoop
* Added a C++ client