roma 0.8.2 → 0.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANG +326 -0
- data/CHANGELOG +132 -0
- data/{README.rdoc → FETCH_HEAD} +0 -0
- data/{LICENSE.rdoc → LICENSE} +0 -1
- data/README +17 -0
- data/Rakefile +33 -18
- data/ruby/server/bin/chg_redundancy +10 -0
- data/ruby/server/bin/key_access +7 -0
- data/ruby/server/bin/key_list +7 -0
- data/ruby/server/bin/mkconfig +19 -0
- data/{bin → ruby/server/bin}/mkrecent +0 -1
- data/{bin → ruby/server/bin}/mkroute +0 -1
- data/ruby/server/bin/multi_commander +19 -0
- data/ruby/server/bin/recoverlost +10 -0
- data/ruby/server/bin/recoverlost_alist +10 -0
- data/ruby/server/bin/recoverlost_alist_all +10 -0
- data/ruby/server/bin/recoverlost_alist_keys +10 -0
- data/{bin/recoverlost → ruby/server/bin/roma_watcher} +1 -2
- data/ruby/server/bin/romad +36 -0
- data/{bin → ruby/server/bin}/sample_watcher +0 -1
- data/{bin → ruby/server/bin}/sample_watcher2 +0 -1
- data/{bin/simple_bench → ruby/server/bin/sample_watcher3} +1 -2
- data/ruby/server/bin/simple_bench +26 -0
- data/{bin → ruby/server/bin}/ssroute +0 -1
- data/ruby/server/bin/test-scenario +11 -0
- data/{bin → ruby/server/bin}/tribunus +0 -1
- data/{lib → ruby/server/lib}/roma/async_process.rb +67 -15
- data/{lib → ruby/server/lib}/roma/command/bg_command_receiver.rb +1 -1
- data/ruby/server/lib/roma/command/command_definition.rb +422 -0
- data/ruby/server/lib/roma/command/mh_command_receiver.rb +127 -0
- data/ruby/server/lib/roma/command/receiver.rb +64 -0
- data/{lib → ruby/server/lib}/roma/command/rt_command_receiver.rb +6 -1
- data/ruby/server/lib/roma/command/sys_command_receiver.rb +609 -0
- data/{lib → ruby/server/lib}/roma/command/util_command_receiver.rb +15 -5
- data/{lib → ruby/server/lib}/roma/command/vn_command_receiver.rb +12 -4
- data/{lib → ruby/server/lib}/roma/command_plugin.rb +0 -0
- data/ruby/server/lib/roma/config.rb +84 -0
- data/{lib → ruby/server/lib}/roma/event/con_pool.rb +12 -1
- data/ruby/server/lib/roma/event/handler.rb +256 -0
- data/ruby/server/lib/roma/live_patch-20120302-001.rb +107 -0
- data/ruby/server/lib/roma/logging/rlogger.rb +163 -0
- data/ruby/server/lib/roma/messaging/con_pool.rb +92 -0
- data/{lib → ruby/server/lib}/roma/plugin/plugin_alist.rb +118 -240
- data/ruby/server/lib/roma/plugin/plugin_debug.rb +31 -0
- data/ruby/server/lib/roma/plugin/plugin_map.rb +177 -0
- data/ruby/server/lib/roma/plugin/plugin_mapcount.rb +185 -0
- data/{lib/roma/command/st_command_receiver.rb → ruby/server/lib/roma/plugin/plugin_storage.rb} +170 -146
- data/ruby/server/lib/roma/plugin/plugin_stub.rb +283 -0
- data/{lib → ruby/server/lib}/roma/plugin/plugin_test.rb +0 -0
- data/{lib → ruby/server/lib}/roma/romad.rb +221 -94
- data/{lib → ruby/server/lib}/roma/routing/cb_rttable.rb +4 -6
- data/{lib → ruby/server/lib}/roma/routing/merkle_tree.rb +0 -0
- data/ruby/server/lib/roma/routing/routing_data.rb +307 -0
- data/{lib → ruby/server/lib}/roma/routing/rttable.rb +4 -0
- data/{lib → ruby/server/lib}/roma/stats.rb +19 -3
- data/{lib → ruby/server/lib}/roma/storage/basic_storage.rb +25 -26
- data/{lib → ruby/server/lib}/roma/storage/dbm_storage.rb +1 -23
- data/{lib → ruby/server/lib}/roma/storage/dummy_storage.rb +0 -0
- data/{lib → ruby/server/lib}/roma/storage/rh_storage.rb +0 -0
- data/{lib → ruby/server/lib}/roma/storage/sqlite3_storage.rb +0 -0
- data/{lib → ruby/server/lib}/roma/storage/tc_storage.rb +62 -2
- data/ruby/server/lib/roma/tools/chg_redundancy.rb +36 -0
- data/ruby/server/lib/roma/tools/key_access.rb +105 -0
- data/ruby/server/lib/roma/tools/key_list.rb +94 -0
- data/ruby/server/lib/roma/tools/mkconfig.rb +535 -0
- data/{lib → ruby/server/lib}/roma/tools/mkrecent.rb +0 -0
- data/{lib → ruby/server/lib}/roma/tools/mkroute.rb +0 -0
- data/ruby/server/lib/roma/tools/multi_commander.rb +45 -0
- data/{lib → ruby/server/lib}/roma/tools/recoverlost.rb +0 -0
- data/{lib → ruby/server/lib}/roma/tools/recoverlost_alist.rb +0 -0
- data/ruby/server/lib/roma/tools/recoverlost_alist_all.rb +8 -0
- data/ruby/server/lib/roma/tools/recoverlost_alist_keys.rb +16 -0
- data/ruby/server/lib/roma/tools/recoverlost_lib.rb +349 -0
- data/ruby/server/lib/roma/tools/roma_watcher.rb +150 -0
- data/ruby/server/lib/roma/tools/roma_watcher_config.yml.example +20 -0
- data/{lib → ruby/server/lib}/roma/tools/sample_watcher.rb +3 -1
- data/{lib → ruby/server/lib}/roma/tools/sample_watcher2.rb +3 -1
- data/ruby/server/lib/roma/tools/sample_watcher3.rb +49 -0
- data/{lib → ruby/server/lib}/roma/tools/simple_bench.rb +2 -0
- data/ruby/server/lib/roma/tools/simple_bench2.rb +78 -0
- data/{lib → ruby/server/lib}/roma/tools/ssroute.rb +0 -0
- data/ruby/server/lib/roma/tools/test-scenario.rb +327 -0
- data/{lib → ruby/server/lib}/roma/tools/tribunus.rb +0 -0
- data/ruby/server/lib/roma/version.rb +4 -0
- data/{lib → ruby/server/lib}/roma/write_behind.rb +1 -0
- data/ruby/server/test/config4mhash.rb +68 -0
- data/ruby/server/test/config4storage_error.rb +69 -0
- data/{lib/roma/config.rb → ruby/server/test/config4test.rb} +6 -3
- data/{test → ruby/server/test}/rcirb.rb +0 -1
- data/{test → ruby/server/test}/roma-test-utils.rb +21 -8
- data/{test → ruby/server/test}/run-test.rb +3 -2
- data/ruby/server/test/storage_error_storage.rb +37 -0
- data/ruby/server/test/t_command_definition.rb +326 -0
- data/{test → ruby/server/test}/t_cpdata.rb +9 -3
- data/{test → ruby/server/test}/t_listplugin.rb +48 -12
- data/ruby/server/test/t_mapcountplugin.rb +231 -0
- data/ruby/server/test/t_mapplugin.rb +131 -0
- data/ruby/server/test/t_mhash.rb +222 -0
- data/ruby/server/test/t_rclient.rb +199 -0
- data/{test → ruby/server/test}/t_routing_data.rb +56 -0
- data/{test → ruby/server/test}/t_storage.rb +107 -111
- data/ruby/server/test/t_storage_error.rb +61 -0
- data/ruby/server/test/t_writebehind.rb +374 -0
- metadata +150 -82
- data/bin/recoverlost_alist +0 -8
- data/bin/romad +0 -7
- data/lib/roma/command/mh_command_receiver.rb +0 -117
- data/lib/roma/command/receiver.rb +0 -287
- data/lib/roma/event/handler.rb +0 -159
- data/lib/roma/plugin/plugin_debug.rb +0 -19
- data/lib/roma/tools/recoverlost_lib.rb +0 -217
- data/lib/roma/version.rb +0 -4
- data/test/t_rclient.rb +0 -318
- data/test/t_writebehind.rb +0 -200
data/CHANG
ADDED
@@ -0,0 +1,326 @@
|
|
1
|
+
* Merge branch 'dev' [Hiroki Matsue] f09cd69
|
2
|
+
* Add authors and homepage info to gem. [Hiroki Matsue] 35c5db4
|
3
|
+
* Merge branch 'dev' [Hiroki Matsue] fe63608
|
4
|
+
* Change default number of CONNECTION_EXPTIME. [Hiroki Matsue] 48933ca
|
5
|
+
* Fix output path of mkconfig. [Hiroki Matsue] 61d2a65
|
6
|
+
* Merge branch 'plugin' [Hiroki Matsue] 805620a
|
7
|
+
* Allocate mapcount plugin. [Hiroki Matsue] 5cc9d6b
|
8
|
+
* Merge branch 'master' of mapcount plugin. [Hiroki Matsue] 1bcddf1
|
9
|
+
* Fix calculate part. [Hiroki Matsue] a9e0642
|
10
|
+
* Fit DATACOPY_STREAM_COPY_WAIT_PARAM to dcnice. [Hiroki Matsue] ac6a2df
|
11
|
+
* Adjust Rakefile to multi ruby version. [Hiroki Matsue] d5ae69e
|
12
|
+
* Adjust Rakefile to new directory composition. [Hiroki Matsue] 8897920
|
13
|
+
* add version [yukio.goto] fa09391
|
14
|
+
* Merge branch 'marshal' [yukio.goto] 0a75393
|
15
|
+
* Change simbol key to string to commonalize. [Hiroki Matsue] 0f42743
|
16
|
+
* Add methods *_ms to return serialized value by Marshal. [Hiroki Matsue] 9596207
|
17
|
+
* Fix test to avoid error. [Hiroki Matsue] fe5688f
|
18
|
+
* Change serialize format json to marshal. [Hiroki Matsue] 1cd1f9b
|
19
|
+
* Remove commons directory. [Hiroki Matsue] fd235e5
|
20
|
+
* Fix path of bins related to commons. [Hiroki Matsue] b628d20
|
21
|
+
* Fix path of tests related to commons. [Hiroki Matsue] bcaae88
|
22
|
+
* Fix path of tools related to commons. [Hiroki Matsue] 1bd764e
|
23
|
+
* Relocate files of commons directory to server directory. [Hiroki Matsue] 3e3f017
|
24
|
+
* Fix filelist to make gem. [Hiroki Matsue] 28e901f
|
25
|
+
* Fix path handling way. [Hiroki Matsue] 9ce3f5a
|
26
|
+
* Remove double-byte space and change encoding. [Hiroki Matsue] adeed9c
|
27
|
+
* Refactor mkconfig tool. [Hiroki Matsue] f88f78f
|
28
|
+
* Add a tool for setting cofigurations. [Hiroki Matsue] adb1a6c
|
29
|
+
* Add test for read and write count. [Hiroki Matsue] d5a92c9
|
30
|
+
* Change data unpack method name. [Hiroki Matsue] c810b4c
|
31
|
+
* Change Symbol keys to String keys for MessagePack. [Hiroki Matsue] 854566c
|
32
|
+
* Change serialize format Marshal to Message pack. [Hiroki Matsue] 297260a
|
33
|
+
* Fix mapcount_update method to handle empty key. [Hiroki Matsue] a50cb28
|
34
|
+
* Fix comment of mapcount_update. [Hiroki Matsue] 4280cec
|
35
|
+
* Activate subkeys at update method. [Hiroki Matsue] 36c6372
|
36
|
+
* Add exception handler for Marshal.load. [Hiroki Matsue] 0d00e1c
|
37
|
+
* Change return value of get method when not found key. [Hiroki Matsue] 942f641
|
38
|
+
* Add test for mapcount_get method. [Hiroki Matsue] bb6ea7c
|
39
|
+
* Add comments about return value for countup, update, and get. [Hiroki Matsue] 7c93af0
|
40
|
+
* implement mapcount_get to support sub_keys. [Hiroki Matsue] 4c9be9a
|
41
|
+
* fix module name [yukio.goto] 3c0e21c
|
42
|
+
* fix bug that it can't accept more than 2 digit numbers. [yukio.goto] 1c4ffae
|
43
|
+
* fix bux of ClientErrorException message. [yukio.goto] c693a88
|
44
|
+
* change expire compute method local to chg_time_expt. [yukio.goto] b06f6d6
|
45
|
+
* update version [junji torii] bbdc902
|
46
|
+
* add test [junji torii] f377910
|
47
|
+
* refactor for expt [junji torii] 32fe471
|
48
|
+
* change time format [yukio.goto] bfed20e
|
49
|
+
* add chg_time_expt() method [junji torii] 305cefc
|
50
|
+
* Merge branch 'local' [yukio.goto] 93d3ec2
|
51
|
+
* change protcol oneline to multiline and implement countup [yukio.goto] d12ba8b
|
52
|
+
* Merge branch 'local' [yukio.goto] d611a6d
|
53
|
+
* implement to check hash does not exist. [yukio.goto] cef82e0
|
54
|
+
* fix test status for invalid hash name [yukio.goto] 4a857fb
|
55
|
+
* add test for invalid hash_name [yukio.goto] d674b56
|
56
|
+
* remove white space [yukio.goto] 33cb153
|
57
|
+
* remove white space [yukio.goto] daacb16
|
58
|
+
* remove white space [yukio.goto] d27b8b2
|
59
|
+
* Merge branch 'local' [yukio.goto] effb6a1
|
60
|
+
* implement mapcount_get [yukio.goto] d59442d
|
61
|
+
* Merge branch 'master' into local [yukio.goto] 8917583
|
62
|
+
* Merge branch 'local' [yukio.goto] 223fe93
|
63
|
+
* change command set to countup [yukio.goto] 9582c4f
|
64
|
+
* Merge branch 'local' [yukio.goto] f165ccb
|
65
|
+
* implement return value for set [yukio.goto] 0bb3f3a
|
66
|
+
* Merge branch 'local' [yukio.goto] dd06f86
|
67
|
+
* implement test code for mapcount_set [yukio.goto] 4cac921
|
68
|
+
* Make repository. [Hiroki Matsue] 76d936f
|
69
|
+
* Merge remote-tracking branch 'roma/master' [byplayer] 90c32fb
|
70
|
+
* update version [junji torii] 4d6ad51
|
71
|
+
* edit: changelog [junji torii] 26adeee
|
72
|
+
* remove old php client files. [junji torii] 0f5bd46
|
73
|
+
* create a lock file in the open method,and remove a lock file in the close method. [junji torii] 874f76a
|
74
|
+
* add test [junji torii] e386f24
|
75
|
+
* bug fix [junji torii] 3f742e7
|
76
|
+
* bug fix and add test [junji torii] a448020
|
77
|
+
* add tests [junji torii] 12d50e3
|
78
|
+
* improve a timing [junji torii] 42f4249
|
79
|
+
* for dynamic write-behind [junji torii] 0885028
|
80
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] 9487241
|
81
|
+
* add alist_update_at command [junji torii] 871e0be
|
82
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] e135d6b
|
83
|
+
* refactor [junji torii] 759a76b
|
84
|
+
* refactor:add dcnice [junji torii] ca375a1
|
85
|
+
* refactor:add auto shoutdown feature [junji torii] f621748
|
86
|
+
* update version [junji torii] 783b27a
|
87
|
+
* refactor:edit log message [junji torii] 9c03226
|
88
|
+
* refactor: add storage exception [junji torii] 5739597
|
89
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] 23e99e3
|
90
|
+
* update version [junji torii] 67f752c
|
91
|
+
* edit: changelog [junji torii] 3d4ad90
|
92
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] 78f162c
|
93
|
+
* refactor: class macro for a plugin [junji torii] 7d89e4e
|
94
|
+
* add a map plugin [junji torii] 7db2f64
|
95
|
+
* refactor: for a forward feature [junji torii] 3208f52
|
96
|
+
* refactor: storage module and test [junji torii] 27cfc0f
|
97
|
+
* refactor: use class macro of a comman defintion [junji torii] e3b19ec
|
98
|
+
* add a class macro of a command definition [junji torii] c7cc3be
|
99
|
+
* refactor: multi-hash [junji torii] 3a07623
|
100
|
+
* refactor: multi-hash test [junji torii] d7b2ed9
|
101
|
+
* edit CHANGELOG [junji torii] c485225
|
102
|
+
* bugfix: restart eventmachine by unbind event [junji torii] c457a70
|
103
|
+
* update version [junji torii] a18fe3b
|
104
|
+
* add test case [junji torii] f9beab9
|
105
|
+
* bugfix: for zero byte read [junji torii] ef2dada
|
106
|
+
* bugfix: for connection expire logic [junji torii] 0d883f6
|
107
|
+
* refactor: added a log message for a forward [junji torii] d8afd10
|
108
|
+
* bugfix: buffer over run was corrected [junji torii] a9bd8d0
|
109
|
+
* edit CHANGELOG [junji torii] 927946a
|
110
|
+
* refactor: modified a result of a stats command [junji torii] 9e966ed
|
111
|
+
* bugfix: connection leak was corrected when a connection expired in irregular connection [junji torii] d23bde9
|
112
|
+
* bugfix: access to a nil object in a logging was corrected [junji torii] dae2ed8
|
113
|
+
* added a selection of a system call configuration, which of an epoll or select [junji torii] 24c41e2
|
114
|
+
* added a rescue block in a post_init method [junji torii] ca5d37a
|
115
|
+
* edit CHANGELOG [junji torii] 6264c9a
|
116
|
+
* update version [junji torii] 5dc4df8
|
117
|
+
* refactor: supported epoll [junji torii] 5c777f1
|
118
|
+
* added a set_expt command [junji torii] e2c3073
|
119
|
+
* added a feature of output a warn message into a log when hilatency occured in a command [junji torii] 78493be
|
120
|
+
* update version to 0.8.4.dev [junji torii] eddfe5e
|
121
|
+
* update the CHANGELOG [junji torii] 7cebfe1
|
122
|
+
* update version [junji torii] 0bab9dd
|
123
|
+
* update version [junji torii] 6bee0a7
|
124
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] 0ced771
|
125
|
+
* refactor: added a memory initalization in connect_roma_server() [junji torii] 844cc52
|
126
|
+
* refactor: for mixed version [junji torii] 352e632
|
127
|
+
* refactor: for realization of min version method [junji torii] 7614246
|
128
|
+
* refactor: for connections expired feature [junji torii] 05ee890
|
129
|
+
* Merge branch 'master' of http://github.com/byplayer/roma [junji torii] 57d4549
|
130
|
+
* added a new command for change to max length of a connection pool [junji torii] 1fbbe29
|
131
|
+
* added a command option feature [junji torii] 4306eb2
|
132
|
+
* added a switch_failover command [junji torii] 6489383
|
133
|
+
* added a configuration of connection management items [junji torii] 1f3fbd7
|
134
|
+
* declare test scenario for ROMA [Muga Nishizawa] 1ddcaa2
|
135
|
+
* Merge branch master of http://github.com/roma/roma.git [byplayer] a9cf5d9
|
136
|
+
* fixed type . [byplayer] 74e9c92
|
137
|
+
* added a configuration of connection management items [junji torii] e22c6ed
|
138
|
+
* added a feature of expired connection [junji torii] b99e2e7
|
139
|
+
* refactor: remove wordy lines [junji torii] 6663432
|
140
|
+
* refactor:improve a global memory management [junji torii] b3b4514
|
141
|
+
* bugfix: not close a socket when a error occur was corrected [junji torii] 38ae0de
|
142
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] 5611fd8
|
143
|
+
* update version [junji torii] 8b459e4
|
144
|
+
* refactor:for change period of a random seed [junji torii] 8cf62b1
|
145
|
+
* bugfix:a constant string result when a error occured in _rmc_send_command() was corrected [junji torii] 1766282
|
146
|
+
* refactor:added a alist_length command [junji torii] 99c0d00
|
147
|
+
* refactor:added a random access mode [junji torii] 1b07fb0
|
148
|
+
* bugfix:buffer overflow was corrected [junji torii] ae3ec2e
|
149
|
+
* added makefiles [junji torii] 35cb0ab
|
150
|
+
* improve and refactor [junji torii] 8495269
|
151
|
+
* added a memory free process in test methods [junji torii] 6ad13aa
|
152
|
+
* bugfix:memory leak was corrected [junji torii] 98c178e
|
153
|
+
* bugfix:strstr() overrun (sometimes) occur, that was corrected [junji torii] e3e1add
|
154
|
+
* bugfix:memory leak was corrected [junji torii] 808910b
|
155
|
+
* bugfix:buffer overflow and memory leak was corrected [junji torii] a0ae831
|
156
|
+
* improve and refactor [junji torii] 87321fb
|
157
|
+
* added the config file for unit tests [junji torii] e787134
|
158
|
+
* added a new option to the romad for unit-test, that command protection disable while starting [junji torii] e2a6af4
|
159
|
+
* bugfix:require 'stringio' lacked [junji torii] 683e2ba
|
160
|
+
* refactor:support for a REJECT message [junji torii] 7478e86
|
161
|
+
* bugfix:cas command result was corrected in forward process [junji torii] c84e00d
|
162
|
+
* added logs. [junji torii] baf93f0
|
163
|
+
* fixed ring status msg bug [byplayer] 7a7e5d7
|
164
|
+
* add mail subject prefix feature [byplayer] afcaf48
|
165
|
+
* remote require 'rubygems' [byplayer] 68718d9
|
166
|
+
* add subject_prefix option [byplayer] 6956ebc
|
167
|
+
* Merge commit 'v0.8.0.c' [junji torii] 50665e1
|
168
|
+
* update to v0.8.0.c [junji torii] a71a3f8
|
169
|
+
* change error msg [byplayer] b6f811a
|
170
|
+
* write retry log, sleep only retury [byplayer] b4cd77a
|
171
|
+
* change TCPSocket to use block [byplayer] cb6ae65
|
172
|
+
* load mailer path from configuration [byplayer] 11e6617
|
173
|
+
* add mailer path option to roma watch configuration file . [byplayer] ee997e1
|
174
|
+
* rename example file name for roma watcher [byplayer] 97e3e90
|
175
|
+
* add the program for watching a ROMA [Muga Nishizawa] ee916a8
|
176
|
+
* bugfix:after the first node dose join, lost vnodes cannot be detected. [junji torii] 2a5b3b2
|
177
|
+
* refactor:a connection refresh feature is added. [junji torii] de3b8c4
|
178
|
+
* refactor:change a rescue level [junji torii] 6305ec5
|
179
|
+
* refactor:exclusive operation for iteration in the storage. [junji torii] 7f7d27c
|
180
|
+
* bugfix: for a regexp of version recognition [junji torii] d53fdbb
|
181
|
+
* bugfix:for started with many access. [junni torii] 724c410
|
182
|
+
* bugfix:for started with many access. [junni torii] b34dbf6
|
183
|
+
* update version to 0.8.0.c.dev [junni torii] f6ade5e
|
184
|
+
* bugfix:for fail-over [junji torii] ef4950f
|
185
|
+
* bugfix:for join [junji torii] 47dcdb0
|
186
|
+
* committing of under construction [junji torii] 3a746ce
|
187
|
+
* improved a forward and redundant error logics. [junji torii] 174accf
|
188
|
+
* added an access control feature. [junji torii] c9e60b9
|
189
|
+
* experiment:added a access control logic [junni torii] 1ae6f0a
|
190
|
+
* refactor:switch a fail-over flag [junni torii] 45d8206
|
191
|
+
* process of the forward_get was improved. [junni torii] ea9088d
|
192
|
+
* refactor:enable to start in service [junji torii] a9f27aa
|
193
|
+
* bugfix:added a Thread.join [junji torii] 2044eb4
|
194
|
+
* update version [junji torii] ae14ad0
|
195
|
+
* changed the level of the exception [junji torii] 02e31c8
|
196
|
+
* stderr is write to the log file [junji torii] df31ad0
|
197
|
+
* added a get_key_info(key) method [junji torii] 7fbd54d
|
198
|
+
* bugfix:exclusive operation of storage is improved [junji torii] f85c94f
|
199
|
+
* bugfix:stop by irregular data in storage_clean_up_process [junji torii] 40ba9bb
|
200
|
+
* add sample_watcher3, which is a checker for split brain [muga] 749f444
|
201
|
+
* added new commands. [junji torii] 7295336
|
202
|
+
* bugfix:exception happens when nodes is nil has fixed. [junji torii] 1982e72
|
203
|
+
* local variable of :name was given to each thread. [junji torii] 0fb63d1
|
204
|
+
* refactor:improve a version command result. [junji torii] 24dd282
|
205
|
+
* refactor:added a start_recover_width_keys2 method. [junji torii] d4e9289
|
206
|
+
* refactor:print a line count. [junji torii] 94a26b2
|
207
|
+
* added a key_access command. [junji torii] 5113e6f
|
208
|
+
* added a new recover command. [junji torii] 52735c8
|
209
|
+
* bugfix:exclusive operation for iteration in the storage. [junji torii] 03e468e
|
210
|
+
* added a recoverlost_alist_all. [junji torii] 5cb8dde
|
211
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] 6298c4e
|
212
|
+
* bugfix:for multi hash feature. [junji torii] b065555
|
213
|
+
* added a test case for cas command. [junni torii] 0b69c7f
|
214
|
+
* storage commands was moved to plugin. [junji torii] ff3de38
|
215
|
+
* add dependency to eventmachine . [byplayer] f1b0efc
|
216
|
+
* Merge branch 'master' of http://github.com/roma/roma.git [byplayer] 5e2cffd
|
217
|
+
* refactor:delete the ver.0.3.6 supported code. [junji torii] bb0ac18
|
218
|
+
* bugfix:eventual consistency in the delete command. [junji torii] bf5eecb
|
219
|
+
* using 'routingdump bin' when -j option. [junji torii] 0d27133
|
220
|
+
* refactor:routingdump command [junji torii] 9f49a17
|
221
|
+
* added a bin option in the routingdump command. [junji torii] 47ad0b7
|
222
|
+
* added a binary encoder/decoder. [junji torii] 41c9a0a
|
223
|
+
* --config option was added to the argument of romad. [junji torii] 6e6cee5
|
224
|
+
* bugfix:multihash concerning the file path was corrected. [junji torii] 0a6f63f
|
225
|
+
* bugfix:fixed the delete file path at start_roma method. [junji torii] c413710
|
226
|
+
* the test of create hash was improvement. [junji torii] 7232ce2
|
227
|
+
* bugfix:added the require of connection pool. [junji torii] acd4bea
|
228
|
+
* bugfix:LOAD_PATH of client was corrected. [junji torii] 76c74a7
|
229
|
+
* added a pluggable feature for routingtable. [junji torii] a437ba9
|
230
|
+
* refactor:a require files definition. [junji torii] e3e18f8
|
231
|
+
* change the ruby-client path. [junji torii] cdb9f6e
|
232
|
+
* Merge branch 'master' of http://github.com/roma/roma.git [byplayer] 61e88c5
|
233
|
+
* Daemonization was isolated from class of Romad. [junji torii] 4a786fb
|
234
|
+
* Merge branch 'master' of http://github.com/roma/roma.git [byplayer] 69257ef
|
235
|
+
* added a Thread.join end of code. [junji torii] c729078
|
236
|
+
* change the ruby client LOAD_PATH. [junji torii] e35ff9d
|
237
|
+
* fixed bug for a recover command option. [junji torii] b847b4d
|
238
|
+
* Merge branch 'master' of http://github.com/roma/roma.git [byplayer] 576502f
|
239
|
+
* the forward operation was corrected in the get command. [junji torii] e18019a
|
240
|
+
* change the client base path. [junji torii] 6d3dd04
|
241
|
+
* remove a java-client files. [junji torii] c7da6b1
|
242
|
+
* remove a ruby-client files. [junji torii] 2e9d72c
|
243
|
+
* improved a vnode balance parameter. [junji torii] 40c762c
|
244
|
+
* Bug was fixed that auto-termination logic when my node dosen't exist in the routing-table. [junji torii] 4300767
|
245
|
+
* Merge branch 'master' of http://github.com/roma/roma.git [byplayer] 4c1fb9f
|
246
|
+
* Merge branch 'master' of http://github.com/roma/roma.git [junji torii] c5041d2
|
247
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] cadec24
|
248
|
+
* an auto marshal feature related to unit-tests was fixed. [junji torii] e2df69d
|
249
|
+
* Merge branch 'master' of http://github.com/yosukehara/roma [junji torii] 3e78122
|
250
|
+
* Merge branch 'client_auto_marshal' of http://github.com/byplayer/roma [junji torii] 2ed2aca
|
251
|
+
* Merge branch 'master' of http://github.com/byplayer/roma [junji torii] 76b5bca
|
252
|
+
* update version. [junji torii] 4f69a05
|
253
|
+
* write comments to capital methods . [byplayer] c801fbd
|
254
|
+
* write comments to capital methods . [byplayer] 161f80d
|
255
|
+
* add auto marshal feature. [byplayer] 7d7cdb0
|
256
|
+
* cron.rb removed. [junji torii] dce07ab
|
257
|
+
* gets command test method added. [junji torii] d7b1709
|
258
|
+
* get_raw test method added. [junji torii] 91271f7
|
259
|
+
* LOAD_PATH settings removed. [junji torii] 9513d58
|
260
|
+
* added a showbalance command. [junji torii] 0094287
|
261
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] be4557d
|
262
|
+
* improve a oneline_receiver. [junji torii] 20b2ef4
|
263
|
+
* improve a teardown process. [junji torii] 1cd794c
|
264
|
+
* change to wait time settings. [junji torii] 506d9d4
|
265
|
+
* CHANGELOG was added. [junji torii] f3c7446
|
266
|
+
* supported a cas command. [junji torii] cee0f96
|
267
|
+
* improved a gets result for a cas-id. [junji torii] 54e136b
|
268
|
+
* get_raw method was added. [junji torii] e005407
|
269
|
+
* improve the implementation of gets command [muga.nishizawa] bfc8bc1
|
270
|
+
* add the test program for performance of list commands [U-ALICE\muga] 4d60908
|
271
|
+
* add the program for the gets command [muga.nishizawa] f6e3c0b
|
272
|
+
* update signature [Yosuke Hara] fa07b7f
|
273
|
+
* added any php-client modules [Yosuke Hara] 8c349f8
|
274
|
+
* Added any c-client modules. [Yosuke Hara] a6f1e9e
|
275
|
+
* extract common routine. [Kouhei Sutou] f0c1fc4
|
276
|
+
* modify several test programs [U-ALICE\muga] c9d1a39
|
277
|
+
* modify AllTests.java [U-ALICE\muga] eb57975
|
278
|
+
* Merge branch 'master' of http://github.com/jun930/roma [junji torii] 49b4075
|
279
|
+
* improve a log level setting. [junji torii] ab97ead
|
280
|
+
* supported a gets command in ruby client. [junji torii] b553b8b
|
281
|
+
* Merge branch 'master' of git@github.com:jun930/roma [junji torii] 22e2bdf
|
282
|
+
* update version. [junji torii] c9267c5
|
283
|
+
* Merge branch 'master' of git://github.com/flexfrank/roma [junji torii] b365679
|
284
|
+
* supported a gets command. [junji torii] 8301706
|
285
|
+
* fixes the bugs of tribunus [Shumpei Akai] da31dca
|
286
|
+
* Merge branch 'gets' of git@github.com:jun930/roma [junji torii] b90de4a
|
287
|
+
* Merge branch 'gets' of git@github.com:jun930/roma [junji torii] ddac980
|
288
|
+
* Merge branch 'master' of git@github.com:roma/roma [junji torii] e494027
|
289
|
+
* modify pom.xml [muga] fd4eed8
|
290
|
+
* Merge branch 'master' of git@github.com:roma/roma [muga] 8ecc5c4
|
291
|
+
* modify a code for fail-over [muga] 131b1cd
|
292
|
+
* added simple_bench.rb [junji torii] 130a5c9
|
293
|
+
* Improve a command option. [junji torii] 74e3b66
|
294
|
+
* fix a bug within a GetCommand class. [muga] 01ee250
|
295
|
+
* Merge branch 'master' of git://github.com/roma/roma [junji torii] 12918a5
|
296
|
+
* Merge roma gem branch into master [byplayer] 9c5f023
|
297
|
+
* under construction [junji torii] 4e4e7d9
|
298
|
+
* fixed bug [junji torii] 9a10943
|
299
|
+
* Merge branch 'master' of http://github.com/roma/roma [junji torii] df4bd72
|
300
|
+
* fixed bug [junji torii] c3ea85a
|
301
|
+
* Merge branch 'master' of http://github.com/roma/roma [junji torii] 7d9fe2a
|
302
|
+
* use FileUtils.rm_rf. [Kouhei Sutou] 141c525
|
303
|
+
* Merge branch 'master' of http://github.com/takano32/roma [junji torii] 8dbebef
|
304
|
+
* added a set_gap_for_failover command. [junji torii] 364be47
|
305
|
+
* added a debug plugin. [junji torii] 2908e4e
|
306
|
+
* Merge branch 'master' of git://github.com/roma/roma [TAKANO Mitsuhiro] d40c55f
|
307
|
+
* do not catch a thrown exception in a setup method in t_writebehind.rb. [muga] 27ef2fc
|
308
|
+
* don't log to STDOUT. [Kouhei Sutou] 78fb6b2
|
309
|
+
* Javaのソースコード:インデントを修正 [TAKANO Mitsuhiro] 74eed3d
|
310
|
+
* add package dir and doc dir to .gitignore . [byplayer] 9d559ac
|
311
|
+
* add gem package task . [byplayer] 4cb31b2
|
312
|
+
* 少しRubyらしく書き換えた些細な修正と正規表現の誤りを修正 [TAKANO Mitsuhiro] 24c016d
|
313
|
+
* ファイルごとにコーディングスタイルをあわせるなど [TAKANO Mitsuhiro] 9bfefdd
|
314
|
+
* 不要な式展開を変数に置き換えた [TAKANO Mitsuhiro] 48c3f20
|
315
|
+
* puts was replaced with logger. [junji torii] 45b03b2
|
316
|
+
* Merge branch 'master' of http://github.com/roma/roma [junji torii] 02c83ef
|
317
|
+
* use assert_raise for exception check. [Kouhei Sutou] a18cd0d
|
318
|
+
* added a prototype of roma client proxy daemon. [junji torii] 14b68e8
|
319
|
+
* deleted several codes for displaying the names of methods in test programs [muga] e7c5dc8
|
320
|
+
* remove needless test name display. [Kouhei Sutou] f234ee2
|
321
|
+
* modified a README file. [muga] b7c2d20
|
322
|
+
* fixed bug in t_rclient.rb. [junji torii] 68880b5
|
323
|
+
* support running test with Ruby not named as 'ruby'. [Kouhei Sutou] 6fd1ec2
|
324
|
+
* v0.8.0 commit [junji torii] ce4ccb9
|
325
|
+
* Second commit [muga] 2048c8c
|
326
|
+
* first commit. [junji torii] 6fc7281
|
data/CHANGELOG
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
*0.8.10 (Feb 20 2012)*
|
2
|
+
|
3
|
+
* Add authors and homepage info to gem. [Hiroki Matsue] 35c5db4
|
4
|
+
* Change default number of CONNECTION_EXPTIME. [Hiroki Matsue] 48933ca
|
5
|
+
* Allocate mapcount plugin. [Hiroki Matsue] 5cc9d6b
|
6
|
+
* Fix calculate part. [Hiroki Matsue] a9e0642
|
7
|
+
* Fit DATACOPY_STREAM_COPY_WAIT_PARAM to dcnice. [Hiroki Matsue] ac6a2df
|
8
|
+
* Adjust Rakefile to multi ruby version. [Hiroki Matsue] d5ae69e
|
9
|
+
* Adjust Rakefile to new directory composition. [Hiroki Matsue] 8897920
|
10
|
+
* Change simbol key to string to commonalize. [Hiroki Matsue] 0f42743
|
11
|
+
* Add methods *_ms to return serialized value by Marshal. [Hiroki Matsue] 9596207
|
12
|
+
* Change serialize format json to marshal. [Hiroki Matsue] 1cd1f9b
|
13
|
+
* Remove commons directory. [Hiroki Matsue] fd235e5
|
14
|
+
* Relocate files of commons directory to server directory. [Hiroki Matsue] 3e3f017
|
15
|
+
* Fix filelist to make gem. [Hiroki Matsue] 28e901f
|
16
|
+
* Fix path handling way. [Hiroki Matsue] 9ce3f5a
|
17
|
+
* Remove double-byte space and change encoding. [Hiroki Matsue] adeed9c
|
18
|
+
* Refactor mkconfig tool. [Hiroki Matsue] f88f78f
|
19
|
+
* Add a tool for setting cofigurations. [Hiroki Matsue] adb1a6c
|
20
|
+
* Change data unpack method name. [Hiroki Matsue] c810b4c
|
21
|
+
* Change Symbol keys to String keys for MessagePack. [Hiroki Matsue] 854566c
|
22
|
+
* Change serialize format Marshal to Message pack. [Hiroki Matsue] 297260a
|
23
|
+
* Fix mapcount_update method to handle empty key. [Hiroki Matsue] a50cb28
|
24
|
+
* Activate subkeys at update method. [Hiroki Matsue] 36c6372
|
25
|
+
* Add test for mapcount_get method. [Hiroki Matsue] bb6ea7c
|
26
|
+
* implement mapcount_get to support sub_keys. [Hiroki Matsue] 4c9be9a
|
27
|
+
* fix module name [yukio.goto] 3c0e21c
|
28
|
+
|
29
|
+
*0.8.9 (Dec 16 2011)*
|
30
|
+
|
31
|
+
* add chg_time_expt() method [junji torii] 305cefc
|
32
|
+
* implement to check hash does not exist. [yukio.goto] cef82e0
|
33
|
+
|
34
|
+
*0.8.8 (Jun 30 2011)*
|
35
|
+
|
36
|
+
* create a lock file in the open method,and remove a lock file in the close method. [junji torii] 874f76a
|
37
|
+
* for dynamic write-behind [junji torii] 0885028
|
38
|
+
|
39
|
+
*0.8.7 (Nov 24 2010)*
|
40
|
+
|
41
|
+
* refactor: add storage exception [junji torii] 5739597
|
42
|
+
|
43
|
+
*0.8.6 (Oct 20 2010)*
|
44
|
+
|
45
|
+
* refactor: class macro for a plugin [junji torii] 7d89e4e
|
46
|
+
* add a map plugin [junji torii] 7db2f64
|
47
|
+
* bugfix: restart eventmachine by unbind event [junji torii] c457a70
|
48
|
+
|
49
|
+
*0.8.5 (Aug 16 2010)*
|
50
|
+
|
51
|
+
* bugfix: for zero byte read [junji torii] ef2dada
|
52
|
+
* bugfix: for connection expire logic [junji torii] 0d883f6
|
53
|
+
|
54
|
+
*0.8.4 (Jun 21 2010)*
|
55
|
+
|
56
|
+
* refactor: modified a result of a stats command [junji torii] 9e966ed
|
57
|
+
* bugfix: connection leak was corrected when a connection expired in irregular connection [junji torii] d23bde9
|
58
|
+
* bugfix: access to a nil object in a logging was corrected [junji torii] dae2ed8
|
59
|
+
* added a selection of a system call configuration, which of an epoll or select [junji torii] 24c41e2
|
60
|
+
* refactor: supported epoll [junji torii] 5c777f1
|
61
|
+
|
62
|
+
*0.8.3 (Jun 11 2010)*
|
63
|
+
|
64
|
+
* added a new command for change to max length of a connection pool [junji torii] 1fbbe29
|
65
|
+
* added a switch_failover command [junji torii] 6489383
|
66
|
+
* added a configuration of connection management items [junji torii] 1f3fbd7
|
67
|
+
* added a feature of expired connection [junji torii] b99e2e7
|
68
|
+
* added a new option to the romad for unit-test, that command protection disable while starting [junji torii] e2a6af4
|
69
|
+
* refactor:support for a REJECT message [junji torii] 7478e86
|
70
|
+
* bugfix:cas command result was corrected in forward process [junji torii] c84e00d
|
71
|
+
* add mail subject prefix feature [byplayer] afcaf48
|
72
|
+
* add mailer path option to roma watch configuration file . [byplayer] ee997e1
|
73
|
+
* add the program for watching a ROMA [Muga Nishizawa] ee916a8
|
74
|
+
* bugfix:after the first node dose join, lost vnodes cannot be detected. [junji torii] 2a5b3b2
|
75
|
+
* refactor:exclusive operation for iteration in the storage. [junji torii] 7f7d27c
|
76
|
+
* bugfix:stop by irregular data in storage_clean_up_process [junji torii] 40ba9bb
|
77
|
+
* add sample_watcher3, which is a checker for split brain [muga] 749f444
|
78
|
+
* bugfix:exception happens when nodes is nil has fixed. [junji torii] 1982e72
|
79
|
+
* refactor:improve a version command result. [junji torii] 24dd282
|
80
|
+
* bugfix:exclusive operation for iteration in the storage. [junji torii] 03e468e
|
81
|
+
* added a recoverlost_alist_all. [junji torii] 5cb8dde
|
82
|
+
* bugfix:for multi hash feature. [junji torii] b065555
|
83
|
+
* storage commands was moved to plugin. [junji torii] ff3de38
|
84
|
+
* add dependency to eventmachine . [byplayer] f1b0efc
|
85
|
+
* bugfix:eventual consistency in the delete command. [junji torii] bf5eecb
|
86
|
+
* added a bin option in the routingdump command. [junji torii] 47ad0b7
|
87
|
+
* --config option was added to the argument of romad. [junji torii] 6e6cee5
|
88
|
+
* bugfix:multihash concerning the file path was corrected. [junji torii] 0a6f63f
|
89
|
+
* Daemonization was isolated from class of Romad. [junji torii] 4a786fb
|
90
|
+
* fixed bug for a recover command option. [junji torii] b847b4d
|
91
|
+
* the forward operation was corrected in the get command. [junji torii] e18019a
|
92
|
+
* improved a vnode balance parameter. [junji torii] 40c762c
|
93
|
+
* Bug was fixed that auto-termination logic when my node dosen't exist in the routing-table. [junji torii] 4300767
|
94
|
+
|
95
|
+
*0.8.2 (Jan 6 2010)*
|
96
|
+
|
97
|
+
* cron.rb removed. [junji torii] dce07ab
|
98
|
+
* added a showbalance command. [junji torii] 0094287
|
99
|
+
* supported a cas command. [junji torii] cee0f96
|
100
|
+
* improved a gets result for a cas-id. [junji torii] 54e136b
|
101
|
+
* get_raw method was added. [junji torii] e005407
|
102
|
+
* improve a log level setting. [junji torii] ab97ead
|
103
|
+
* supported a gets command in ruby client. [junji torii] b553b8b
|
104
|
+
|
105
|
+
*0.8.1 (Nov 26 2009)*
|
106
|
+
|
107
|
+
* update version. [junji torii] c9267c5
|
108
|
+
* supported a gets command. [junji torii] 8301706
|
109
|
+
* fixes the bugs of tribunus [Shumpei Akai] da31dca
|
110
|
+
* added simple_bench.rb [junji torii] 130a5c9
|
111
|
+
* Improve a command option. [junji torii] 74e3b66
|
112
|
+
* Merge roma gem branch into master [byplayer] 9c5f023
|
113
|
+
* fixed bug [junji torii] 9a10943
|
114
|
+
* fixed bug [junji torii] c3ea85a
|
115
|
+
* use FileUtils.rm_rf. [Kouhei Sutou] 141c525
|
116
|
+
* added a set_gap_for_failover command. [junji torii] 364be47
|
117
|
+
* added a debug plugin. [junji torii] 2908e4e
|
118
|
+
* don't log to STDOUT. [Kouhei Sutou] 78fb6b2
|
119
|
+
* Javaのソースコード:インデントを修正 [TAKANO Mitsuhiro] 74eed3d
|
120
|
+
* add package dir and doc dir to .gitignore . [byplayer] 9d559ac
|
121
|
+
* add gem package task . [byplayer] 4cb31b2
|
122
|
+
* 少しRubyらしく書き換えた些細な修正と正規表現の誤りを修正 [TAKANO Mitsuhiro] 24c016d
|
123
|
+
* ファイルごとにコーディングスタイルをあわせるなど [TAKANO Mitsuhiro] 9bfefdd
|
124
|
+
* 不要な式展開を変数に置き換えた [TAKANO Mitsuhiro] 48c3f20
|
125
|
+
* puts was replaced with logger. [junji torii] 45b03b2
|
126
|
+
* use assert_raise for exception check. [Kouhei Sutou] a18cd0d
|
127
|
+
* added a prototype of roma client proxy daemon. [junji torii] 14b68e8
|
128
|
+
* remove needless test name display. [Kouhei Sutou] f234ee2
|
129
|
+
* fixed bug in t_rclient.rb. [junji torii] 68880b5
|
130
|
+
* support running test with Ruby not named as 'ruby'. [Kouhei Sutou] 6fd1ec2
|
131
|
+
|
132
|
+
*0.8.0 (Oct 23 2009)*
|