source: projects/specs/trunk/c/ctdb/ctdb-vl.spec @ 8130

Revision 8130, 51.9 KB checked in by tomop, 10 years ago (diff)

update samba-libraries

Line 
1%define initdir %{_sysconfdir}/rc.d/init.d
2
3Summary: A Clustered Database based on Samba's Trivial Database (TDB)
4Name: ctdb
5Version: 2.5
6Release: 1%{?_dist_release}
7License: GPLv3+
8Group: System Environment/Daemons
9URL: http://ctdb.samba.org/
10
11Vendor: Project Vine
12Distribution: Vine Linux
13Packager: tomop
14
15# Tarfile created using git
16# git clone git://git.samba.org/sahlberg/ctdb.git ctdb
17# cd ctdb
18# git-archive --format=tar --prefix=%{name}-%{version}/ %{name}-%{version} | bzip2 > %{name}-%{version}.tar.bz2
19Source0: %{name}-%{version}.tar.gz
20
21# Fedora specific patch, ctdb should not be enabled by default in the runlevels
22#Patch1: ctdb-no_default_runlevel.patch
23
24Requires: chkconfig coreutils psmisc
25Requires: fileutils sed
26Requires: tdb-tools
27Requires(preun): chkconfig initscripts
28Requires(post): chkconfig
29Requires(postun): initscripts
30
31BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
32BuildRequires: autoconf net-tools popt-devel
33
34%description
35CTDB is a cluster implementation of the TDB database used by Samba and other
36projects to store temporary data. If an application is already using TDB for
37temporary data it is very easy to convert that application to be cluster aware
38and use CTDB instead.
39
40%package devel
41Group: Development/Libraries
42Summary: CTDB clustered database development package
43Requires: ctdb = %{version}-%{release}
44Provides: ctdb-static = %{version}-%{release}
45%description devel
46Libraries, include files, etc you can use to develop CTDB applications.
47CTDB is a cluster implementation of the TDB database used by Samba and other
48projects to store temporary data. If an application is already using TDB for
49temporary data it is very easy to convert that application to be cluster aware
50and use CTDB instead.
51
52
53#######################################################################
54
55%prep
56%setup -q
57# setup the init script and sysconfig file
58%setup -T -D -n ctdb-%{version} -q
59#%patch1 -p1
60
61%build
62
63CC="gcc"
64
65## always run autogen.sh
66./autogen.sh
67
68CFLAGS="$(echo '%{optflags}') $EXTRA -D_GNU_SOURCE -DCTDB_VERS=\"%{version}-%{release}\"" %configure
69
70perl -pi -e 's|rpcgen|rpcgen -Y /usr/bin|g' Makefile
71make showflags
72make %{_smp_mflags}
73
74%install
75# Clean up in case there is trash left from a previous build
76rm -rf %{buildroot}
77
78# Create the target build directory hierarchy
79mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
80mkdir -p %{buildroot}%{initdir}
81
82make DESTDIR=%{buildroot} install
83
84install -m644 config/ctdb.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/ctdb
85install -m755 config/ctdb.init %{buildroot}%{initdir}/ctdb
86
87mkdir -p %{buildroot}%{_docdir}/ctdb/tests/bin
88install -m755 tests/bin/ctdb_transaction %{buildroot}%{_docdir}/ctdb/tests/bin
89
90
91# Remove "*.old" files
92find %{buildroot} -name "*.old" -exec rm -f {} \;
93
94# fix doc path
95mv %{buildroot}%{_docdir}/ctdb %{buildroot}%{_docdir}/ctdb-%{version}
96cp -r COPYING web %{buildroot}%{_docdir}/ctdb-%{version}
97
98%clean
99rm -rf %{buildroot}
100
101%post
102/sbin/chkconfig --add ctdb
103
104%preun
105if [ "$1" -eq "0" ] ; then
106 /sbin/service ctdb stop > /dev/null 2>&1
107 /sbin/chkconfig --del ctdb
108fi
109
110%postun
111if [ "$1" -ge "1" ]; then
112 /sbin/service ctdb condrestart >/dev/null 2>&1 || true
113fi
114
115
116# Files section
117
118%files
119%defattr(-,root,root,-)
120%config(noreplace) %{_sysconfdir}/sudoers.d/ctdb
121%config(noreplace) %{_sysconfdir}/sysconfig/ctdb
122%config(noreplace) %{_sysconfdir}/ctdb/notify.sh
123%config(noreplace) %{_sysconfdir}/ctdb/ctdb-crash-cleanup.sh
124%config(noreplace) %{_sysconfdir}/ctdb/debug_locks.sh
125%config(noreplace) %{_sysconfdir}/ctdb/functions
126%config(noreplace) %{_sysconfdir}/ctdb/nfs-rpc-checks.d/*
127%attr(755,root,root) %{initdir}/ctdb
128
129%{_docdir}/ctdb-%{version}
130%dir %{_sysconfdir}/ctdb
131%dir %{_sysconfdir}/ctdb/nfs-rpc-checks.d
132%{_sysconfdir}/ctdb/statd-callout
133%{_sysconfdir}/ctdb/events.d/
134%{_sysconfdir}/ctdb/debug-hung-script.sh
135%{_sysconfdir}/ctdb/gcore_trace.sh
136%{_sbindir}/ctdbd
137%{_sbindir}/ctdbd_wrapper
138%{_bindir}/ctdb
139%{_bindir}/ctdb_lock_helper
140%{_bindir}/smnotify
141%{_bindir}/ping_pong
142%{_bindir}/ctdb_diagnostics
143%{_bindir}/onnode
144%{_bindir}/ltdbtool
145%{_mandir}/man1/ctdb.1.gz
146%{_mandir}/man1/ctdbd.1.gz
147%{_mandir}/man1/onnode.1.gz
148%{_mandir}/man1/ltdbtool.1.gz
149%{_mandir}/man1/ping_pong.1.gz
150
151%files devel
152%defattr(-,root,root,-)
153%{_includedir}/ctdb.h
154%{_includedir}/ctdb_client.h
155%{_includedir}/ctdb_protocol.h
156%{_includedir}/ctdb_private.h
157%{_includedir}/ctdb_typesafe_cb.h
158#%{_libdir}/libctdb.a
159%{_libdir}/pkgconfig/ctdb.pc
160
161%changelog
162* Wed Jan 08 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.5-1
163- new upstream release.
164
165* Tue Oct 08 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4-1
166- new upstream release.
167
168* Mon Dec 17 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.0-1
169- new upstream release.
170- initial build for Vine Linux.
171
172* Mon Jun 27 2011 Michael Schwendt <mschwendt@fedoraproject.org> - 1.2.28-2
173- Provide virtual -static package to meet guidelines (#700029).
174
175* Mon Apr 18 2011 Sumit Bose <sbose@redhat.com> - 1.2.28-1
176 - Update to ctdb version 1.2.28
177
178* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.114-2
179- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
180
181* Tue Feb 08 2011 Sumit Bose <sbose@redhat.com> - 1.0.114-1
182 - Changed $RPM_BUILD_ROOT to %{buildroot}
183 - Update to ctdb version 1.0.114
184 - Added patch to fix configure issue
185 - Added assorted backport patches recommended by upstream developer
186
187* Thu Jan 14 2010 Sumit Bose <sbose@redhat.com> - 1.0.113-1
188 - Update to ctdb version 1.0.113
189
190* Wed Jan 13 2010 : Version 1.0.113
191 - Incorrect use of dup2() could cause ctdb to spin eating 100% cpu.
192
193* Tue Jan 12 2010 : Version 1.0.112
194  - Revert the use of wbinfo --ping-dc as it is proving too unreliable.
195  - Minor testsuite changes.
196
197* Fri Dec 18 2009 : Version 1.0.111
198 - Fix a logging bug when an eventscript is aborted that could cause a crash.
199 - Add back cb_status that was lost in a previous commit.
200
201* Fri Dec 18 2009 : Version 1.0.110
202 - Metxe: fix for filedescriptor leak in the new eventscript code.
203 - Rusty: fix for a crash bug in the eventscript code.
204
205* Thu Dec 17 2009 : Version 1.0.109
206 - Massive eventscript updates. (bz58828)
207 - Nice the daemon instead of using realtime scheduler, also use mlockall() to
208   reduce the risk of blockign due to paging.
209 - Workarounds for valgrind when forking once for each script. Valgrind
210   consumes massive cpu when terminating the scripts on virtual systems.
211 - Sync the tdb library with upstream, and use the new TDB_DISALLOW_NESTING
212   flag.
213 - Add new command "ctdb dumpdbbackup"
214 - Start using the new tdb check framework to validate tdb files upon startup.
215 - A new framework where we can control health for individual tdb databases.
216 - Fix a crash bug in the logging code.
217 - New transaction code for persistent databases.
218 - Various other smaller fixes.
219
220* Tue Dec 8 2009 Sumit Bose <sbose@redhat.com> - 1.0.108-1
221 - Update to ctdb version 1.0.108
222 - added fix for bz537223
223 - added tdb-tools to Requires, fixes bz526479
224
225* Wed Dec 2 2009 Sumit Bose <sbose@redhat.com> - 1.0.107-1
226 - Update to ctdb version 1.0.107
227
228* Wed Dec 2 2009 : Version 1.0.107
229 - fix for rusty to solve a double-free that can happen when there are
230   multiple packets queued and the connection is destroyed before
231   all packets are processed.
232
233* Tue Dec 1 2009 : Version 1.0.106
234 - Buildscript changes from Michael Adam
235 - Dont do a full recovery when there is a mismatch detected for ip addresses,
236   just do a less disruptive ip-reallocation
237 - When starting ctdbd, wait until all initial recoveries have finished
238   before we issue the "startup" event.
239   So dont start services or monitoring until the cluster has
240   stabilized.
241 - Major eventscript overhaul by Ronnie, Rusty and Martins and fixes of a few
242   bugs found.
243
244* Thu Nov 19 2009 : Version 1.0.105
245 - Fix a bug where we could SEGV if multiple concurrent "ctdb eventscript ..."
246   are used and some of them block.
247 - Monitor the daemon from the syslog child process so we shutdown cleanly when
248   the main daemon terminates.
249 - Add a 500k line ringbuffer in memory where all log messages are stored.
250 - Add a "ctdb getlog <level>" command to pull log messages from the in memory
251   ringbuffer.
252 - From martin : fixes to cifs and nfs autotests
253 - from michael a : fix a bashism in 11.natgw
254
255* Fri Nov 6 2009 : Version 1.0.104
256 - Suggestion from Metze, we can now use killtcp to kill local connections
257   for nfs so change the killtcp script to kill both directions of an NFS
258   connection.
259   We used to deliberately only kill one direction in these cases due to
260   limitations.
261 - Suggestion from christian Ambach, when using natgw, try to avoid using a
262   UNHEALTHY node as the natgw master.
263 - From Michael Adam: Fix a SEGV bug in the recent change to the eventscripts
264   to allow the timeout to apply to each individual script.
265 - fix a talloc bug in teh vacuuming code that produced nasty valgrind
266   warnings.
267 - From Rusty: Set up ulimit to create core files for ctdb, and spawned
268   processes by default. This is useful for debugging and testing but can be
269   disabled by setting CTDB_SUPRESS_COREFILE=yes in the sysconfig file.
270 - Remove the wbinfo -t check from the startup check that winbindd is happy.
271 - Enhance the test for bond devices so we also check if the sysadmin have
272   disabled all slave devices using "ifdown".
273
274* Tue Nov 3 2009 : Version 1.0.103
275 - Dont use vacuuming on persistent databases
276 - Michael A : transaction updates to persistent databases
277 - Dont activate service automatically when installing the RPM. Leave this to
278   the admin.
279 - Create a child process to send all log messages to, to prevent a hung/slow
280   syslogd from blocking the main daemon. In this case, discard log messages
281   instead and let the child process block.
282 - Michael A: updates to log messages
283
284* Thu Oct 29 2009 : Version 1.0.102
285 - Wolfgang: fix for the vacuuming code
286 - Wolfgang: stronger tests for persistent database filename tests
287 - Improve the log message when we refuse to startup since wbinfo -t fails
288   to make it easier to spot in the log.
289 - Update the uptime command output and the man page to indicate that
290   "time since last ..." if from either the last recovery OR the last failover
291 - Michael A: transaction updates
292
293* Wed Oct 28 2009 : Version 1.0.101
294 - create a separate context for non-monitoring events so they dont interfere
295   with the monitor event
296 - make sure to return status 0 in teh callback when we abort an event
297
298* Wed Oct 28 2009 : Version 1.0.100
299 - Change eventscript handling to allow EventScriptTimeout for each individual
300   script instead of for all scripts as a whole.
301 - Enhanced logging from the eventscripts, log the name and the duration for
302   each script as it finishes.
303 - Add a check to use wbinfo -t for the startup event of samba
304 - TEMP: allow clients to attach to databases even when teh node is in recovery
305   mode
306 - dont run the monitor event as frequently after an event has failed
307 - DEBUG: in the eventloops, check the local time and warn if the time changes
308   backward or rapidly forward
309 - From Metze, fix a bug where recovery master becoming unhealthy did not
310   trigger an ip failover.
311 - Disable the multipath script by default
312 - Automatically re-activate the reclock checking if the reclock file is
313   specified at runtime. Update manpage to reflect this.
314 - Add a mechanism where samba can register a SRVID and if samba unexpectedly
315   disconnects, a message will be broadcasted to all other samba daemons.
316 - Log the pstree on hung scripts to a file in /tmp isntead of
317   /var/log/messages
318 - change ban count before unhealthy/banned to 10
319
320* Thu Oct 22 2009 : Version 1.0.99
321 - Fix a SEGV in the new db priority code.
322 - From Wolfgang : eliminate a ctdb_fatal() if there is a dmaster violation
323   detected.
324 - During testing we often add/delete eventscripts at runtime. This could cause
325   an eventscript to fail and mark the node unhealthy if an eventscript was
326   deleted while we were listing the names. Handle the errorcode and make sure
327   the node does not becomne unhealthy in this case.
328 - Lower the debuglevel for the messages when ctdb creates a filedescruiptor so
329   we dont spam the logs with these messages.
330 - Dont have the RPM automatically restart ctdb
331 - Volker : add a missing transaction_cancel() in the handling of persistent
332   databases
333 - Treat interfaces with the anme ethX* as bond devices in 10.interfaces so we
334   do the correct test for if they are up or not.
335
336* Tue Oct 20 2009 : Version 1.0.98
337 - Fix for the vacuuming database from Wolfgang M
338 - Create a directory where the test framework can put temporary overrides
339   to variables and functions.
340 - Wait a lot longer before shutting down the node when the reclock file
341   is incorrectly configured, and log where it is configured.
342 - Try to avoid running the "monitor" event when databases are frozen.
343 - Add logging for every time we create a filedescriptor so we can trap
344   fd leaks.
345
346* Wed Oct 14 2009 : Version 1.0.97
347 - From martins : update onnode.
348   Update onnode to allow specifying an alternative nodes file from
349   the command line and also to be able to specify hostnames on the
350   list of targets :
351   onnode host1,host2,...
352* Wed Oct 14 2009 Sumit Bose <sbose@redhat.com> - 1.0.96-1
353 - Update to ctdb version 1.0.96
354
355* Tue Oct 13 2009 : Version 1.0.96
356 - Add more debugging output when eventscripts have trouble. Print a
357   "pstree -p" to the log when scripts have hung.
358 - Update the initscript,  only print the "No reclock file used" warning
359   when we do "service ctdb start", dont also print them for all other
360   actions.
361 - When changing between unhealthy/healthy state, push a request to the
362   recovery master to perform an ip reallocation   instead of waiting for the
363   recovery master to pull and check the state change.
364 - Fix a bug in the new db-priority handling where a pre-.95 recovery master
365   could no longer lock the databases on a post-.95 daemon.
366 - Always create the nfs state directories during the "monitor" event.
367   This makes it easier to configure and enable nfs at runtime.
368 - From Volker, forward-port a simper deadlock avoiding patch from the 1.0.82
369   branch. This is a simpler versionof the "db priority lock order" patch
370   that went into 1.0.95, and will be kept for a few versions until samba
371   has been updated to use the functionality from 1.0.95.
372
373* Mon Oct 12 2009 : Version 1.0.95
374 - Add database priorities. Allow samba to set the priority of databases
375   and lock the databases in priority order during recovery
376   to avoid a deadlock when samba locks one database then blocks indefinitely
377   while waiting for the second databaso to become locked.
378 - Be aggressive and ban nodes where the recovery transaction start call
379   fails.
380
381* Sat Oct 10 2009 : Version 1.0.94
382 - Be very aggressive and quickly ban nodes that can not freeze their databases
383
384* Thu Oct 8 2009 : Version 1.0.93
385 - When adding an ip, make sure to update this assignment on all nodes
386   so it wont show up as -1 on other nodes.
387 - When adding an ip and immediately deleting it, it was possible that
388   the daemon would crash accessing already freed memory.
389   Readjust the memory hierarchy so the destructors are called in the right
390   order.
391 - Add a handshake to the recovery daemon to eliminate some rare cases where
392   addip/delip might cause a recovery to occur.
393 - updated onnode documenation from Martin S
394 - Updates to the natgw eventscript to allow disabling natgw at runtime
395
396* Fri Oct 2 2009 : Version 1.0.92
397 - Test updates and merge from martin
398 - Add notification for "startup"
399 - Add documentation for notification
400 - from martin, a fix for restarting vsftpd in the eventscript
401
402* Tue Sep 29 2009 Sumit Bose <sbose@redhat.com> - 1.0.91-1
403 - Update to ctdb version 1.0.91
404
405* Tue Sep 29 2009 : Version 1.0.91
406 - New vacuum and repack design from Wolgang Mueller.
407 - Add a new eventscript 01.reclock that will first mark a node unhealthy and
408   later ban the node if the reclock file can not be accessed.
409 - Add machinereadable output to the ctdb getreclock command
410 - merge transaction updates from Michael Adam
411 - In the new banning code, reset the culprit count to 0 for all nodes that
412   could successfully compelte a full recovery.
413 - dont mark the recovery master as a ban culprit because a node in the cluster
414   needs a recovery. this happens naturally when using ctdb recover command so
415   dont make this cause a node to be banned.
416
417* Wed Sep 23 2009 Sumit Bose <sbose@redhat.com> - 1.0.90-1
418 - Update to ctdb version 1.0.90
419
420* Sat Sep 12 2009 : Version 1.0.90
421 - Be more forgiving for eventscripts that hang during startup
422 - Fix for a banning bug in the new banning logic
423
424* Thu Sep 3 2009 : Version 1.0.89
425 - Make it possible to manage winbind independently of samba.
426 - Add new prototype banning code
427 - Overwrite the vsftpd state file instead of appending. This eliminates
428   annoying errors in the log.
429 - Redirect some iptables commands to dev null
430 - From Michael A, explicitely set the broadcast when we takeover a public ip
431 - Remove a reclock file check we no longer need
432 - Skip any persistent database files ending in .bak
433
434* Mon Aug 17 2009 Sumit Bose <sbose@redhat.com> - 1.0.88-1
435 - Update to ctdb version 1.0.88
436
437* Mon Aug 17 2009 : Version 1.0.88
438 - Add a new state for eventscripts : DISABLED.
439   Add two new commands "ctdb enablescript/disablescript" to enable/disable
440   eventscripts at runtime.
441 - Bugfixes for TDB from rusty.
442 - Merge/Port changes from upstream TDB library by rusty.
443 - Additional new tests from MartinS. Tests for stop/continue.
444 - Initial patch to rework vacuuming/repacking process from Wolfgang Mueller.
445 - Updates from Michael Adam for persistent writes.
446 - Updates from MartinS to handle the new STOPPED bit in the test framework.
447 - Make it possible to enable/disable the RECMASTER and LMASTER roles
448   at runtime. Add two new commands
449   "ctdb setlmasterrole/setrecmasterrole on/off"
450 - Make it possible to enable/disable the natgw feature at runtime. Add
451   the command "ctdb setnatgwstate on/off"
452
453* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.87-2
454- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
455
456* Fri Jul 17 2009 Sumit Bose <sbose@redhat.com> - 1.0.87-1
457 - Update to ctdb version 1.0.87
458
459* Fri Jul 17 2009 : Version 1.0.87
460 - Add a new event "stopped" that is called when a node is stopped.
461 - Documentation of the STOPPED flag and the stop/continue commands
462 - Make it possible to start a node in STOPPED mode.
463 - Add a new node flag : STOPPED and commands "ctdb stop" "ctdb continue"
464   These commands are similar to "diasble/enable" but will also remove the node
465   from the vnnmap, while disable only fails all ip addresses over.
466 - tests for NFS , CIFS by martins
467 - major updates to the init script by martins
468 - Send gratious arps with a 1.1 second stride instead of a 1 second stride to
469   workaround interesting "features" of common linux stacks.
470 - Various test enhancements from martins:
471   - additional other tests
472   - add tests for grat arp generation, ping during failover, ssh and failover
473   - New/updated tcp tickle tests and supprot functions
474   - provide better debugging when a test fails
475   - make ctdbd restarts more reliable in the tests
476   - update the "wait bar" to  make the wait progress in tests more obvious
477   - various cleanups
478 - when dispatching a message to a handler, make the message a real talloc
479   object so that we can reparent the object in the tallic hierarchy.
480 - document the ipreallocate command
481 - Updates to enable/disable to use the ipreallocate command to block until the
482   following ipreallocation has completed.
483 - Update the main daemon and the tools to allow debug level to be a string
484   instead of an integer.
485 - Update the sysconfig file to show using string literals instead of numeric
486   values for the debuglevels used.
487 - If no debuglevel is specific, make "ctdb setdebug" show the available
488   options.
489 - When trying to allocate network packets, add explicit checks if the network
490   transport has been shutdown before trying and failing, to make log messages
491   easier to read. Add this extra check and logging to every plave packets are
492   allocated.
493
494* Wed Jul 1 2009 Sumit Bose <sbose@redhat.com> - 1.0.86-1
495 - Update to ctdb version 1.0.86
496
497* Tue Jun 30 2009 : Version 1.0.86
498 - Do not access the reclock at all if VerifyRecoveryLock is zero, not even try
499   to probe it.
500 - Allow setting the reclock file as "", which means that no reclock file at
501   all should be used.
502 - Document that a reclock file is no longer required, but that it is
503   dangerous.
504 - Add a control that can be used to set/clear/change the reclock file in the
505   daemon during runtime.
506 - Update the recovery daemon to poll whether a reclock file should be sued and
507   if so which file at runtime in each monitoring cycle.
508 - Automatically disable VerifyRecoveryLock everytime a user changes the
509   location of the reclock file.
510 - do not allow the VerifyRecoveryLock to be set using ctdb setvar if there is
511   no recovery lock file specified.
512 - Add two commands "ctdb getreclock" and "ctdb setreclock" to modify the
513   reclock file.
514
515* Tue Jun 23 2009 : Version 1.0.85
516 - From William Jojo : Dont use getopt on AIX
517 - Make it possible to use "ctdb listnodes" also when the daemon is not running
518 - Provide machinereadable output to "ctdb listnodes"
519 - Dont list DELETED nodes in the ctdb listnodes output
520 - Try to avoid causing a recovery for the average case when
521   adding/deleting/moving an ip
522 - When banning a node, drop the IPs on that node only and not all nodes.
523 - Add tests for NFS and CIFS tickles
524 - Rename 99.routing to 11.routing so it executes before NFS and LVS scripts
525 - Increase the default timeout before we deem an unresponsive recovery daemon
526   hung and shutdown
527 - Reduce the reclock timout to 5 seconds
528 - Spawn a child process in the recovery daemon ot check the reclock file to
529   avoid blocking the process if the underlying filesystem is unresponsive
530 - fix for filedescriptor leak when a child process timesout
531 - Dont log errors if waitpid() returns -1
532 - Onnode updates by Martins
533 - Test and initscript cleanups from Martin S
534
535* Fri Jun 5 2009 Sumit Bose <sbose@redhat.com> - 1.0.84-1
536 - Update to ctdb version 1.0.84
537
538* Tue Jun 2 2009 : Version 1.0.84
539 - Fix a bug in onnode that could not handle dead nodes
540
541* Tue Jun 2 2009 : Version 1.0.83
542 - Document how to remove a ndoe from a running cluster.
543 - Hide all deleted nodes from ctdb output.
544 - Lower the loglevel on some eventscript related items
545 - Dont queue packets to deleted nodes
546 - When building initial vnnmap, ignode any nonexisting nodes
547 - Add a new nodestate : DELETED that is used when deleting a node from an
548   existing cluster.
549 - dont remove the ctdb socket when shutting down. This prevents a race in the
550   initscripts when restarting ctdb quickly after stopping it.
551 - TDB nesting reworked.
552 - Remove obsolete ipmux
553 - From Flavio Carmo Junior: Add eventscript and documentation for ClamAV
554   antivirus engine
555 - From Sumit Bose: fix the regex in the test to handle the new ctdb
556   statistics output that was recently added.
557 - change the socket type we use for grauitious arps from the obsolete
558   AF_INET/SOCK_PACKET to instead use PF_PACKET/SOCK_RAW.
559 - Check return codes for some functions, from Sumit Bose, based on codereview
560   by Jim Meyering.
561 - Sumit Bose: Remove structure memeber node_list_file that is no longer used.
562 - Sumit Bose: fix configure warning for netfilter.h
563 - Updates to the webpages by Volker.
564 - Remove error messages about missing /var/log/log.ctdb file from
565   ctdb_diagnostics.sh from christian Ambach
566 - Additional error logs if hte eventscript switching from dameon to client
567   mode fails.
568 - track how long it takes for ctdbd and the recovery daemon to perform the
569   rec-lock fcntl() lock attemt and show this in the ctdb statistics output.
570
571* Thu May 14 2009 Sumit Bose <sbose@redhat.com> - 1.0.82-1
572 - Update to ctdb version 1.0.82
573
574* Thu May 14 2009 : Version 1.0.82
575 - Update the "ctdb lvsmaster" command to return -1 on error.
576 - Add a -Y flag to "ctdb lvsmaster"
577 - RHEL5 apache leaks semaphores when crashing. Add semaphore cleanup to the
578   41.httpd eventscript and try to restart apache when it has crashed.
579 - Fixes to some tests
580 - Add a -o option to "onnode" which will redirect all stdout to a file for
581   each of the nodes.
582 - Add a natgw and a lvs node specifier to onnode so that we can use
583   "onnode natgw ..."
584 - Assign the natgw address to lo instead of the private network so it can also
585   be used where private and public networks are the same.
586 - Add GPL boilerplates to two missing scripts.
587 - Change the natgw prefix NATGW_ to CTDB_NATGW_
588
589* Fri May 8 2009 Sumit Bose <sbose@redhat.com> - 1.0.81-1
590 - Update to ctdb version 1.0.81
591
592* Fri May 8 2009 : Version 1.0.81
593 - use smbstatus -np instead of smbstatus -n in the 50.samba eventscript
594   since this avoids performing an expensive traverse on the locking and brlock
595   databases.
596 - make ctdb automatically terminate all traverse child processes clusterwide
597   associated to a client application that terminates before the traversal is
598   completed.
599 - From Sumit Bose : fixes to AC_INIT handling.
600 - From Michael Adam, add Tridge's "ping_pong" tool the the ctdb distro since
601   this is very useful for testing the backend filesystem.
602 - From Sumit bose, add support for additional 64 bit platforms.
603 - Add a link from the webpage to Michael Adams SambaXP paper on CTDB.
604
605* Fri May 1 2009 : Version 1.0.80
606 - change init shutdown level to 01 for ctdb so it stops before any of the
607   other services
608 - if we can not pull a database from a remote node during recovery, mark that
609   node as a culprit so it becomes banned
610 - increase the loglevel when we volunteer to drop all ip addresses after
611   beeing in recovery mode for too long. Make this timeout tuneable with
612   "RecoveryDropAllIPs" and have it default to 60 seconds
613 - Add a new flag TDB_NO_NESTING to the tdb layer to prevent nested
614   transactions which ctdb does not use and does not expect. Have ctdb set this
615   flag to prevent nested transactions from occuring.
616 - dont unconditionally kill off ctdb and restrat it on "service ctdb start".
617   Fail "service ctdb start" with an error if ctdb is already running.
618 - Add a new tunable "VerifyRecoveryLock" that can be set to 0 to prevent the
619   main ctdb daemon to verify that the recovery master has locked the reclock
620   file correctly before allowing it to set the recovery mode to active.
621 - fix a cosmetic bug with ctdb statistics where certain counters could become
622   negative.
623
624* Thu Apr 30 2009 Sumit Bose <sbose@redhat.com> - 1.0.79-2
625 - fixed a ppc64 build issue
626
627* Wed Apr 29 2009 Sumit Bose <sbose@redhat.com> - 1.0.79-1
628 - Update to ctdb version 1.0.79
629
630* Wed Apr 8 2009 : Version 1.0.79
631 - From Mathieu Parent: add a ctdb pkgconfig file
632 - Fix bug 6250
633 - add a funciton remove_ip to safely remove an ip from an interface, taking
634   care to workaround an issue with linux alias interfaces.
635 - Update the natgw eventscript to use the safe remove_ip() function
636 - fix a bug in the eventscript child process that would cause the socket to be
637   removed.
638 - dont verify nodemap on banned nodes during cluster monitoring
639 - Update the dodgy SeqnumInterval to have ms resolution
640
641* Tue Mar 31 2009 : Version 1.0.78
642 - Add a notify mechanism so we can send snmptraps/email to external management
643   systems when the node becomes unhealthy
644 - include 11.natgw eventscript in thew install so that the NATGW feature works
645
646* Tue Mar 31 2009 : Version 1.0.77
647 - Update the 99.routing eventscript to also try to add the routes (back)
648   during a releaseip event. Similar to the reasons why we must add addresses
649   back during releaseip in 10.interfaces
650
651* Tue Mar 24 2009 : Version 1.0.76
652 - Add a debugging command "xpnn" which can print the pnn of the node even when
653   ctdbd is not running.
654 - Redo the NATGW implementation to allow multiple disjoing NATGW groups in the
655   same cluster.
656
657* Tue Mar 24 2009 : Version 1.0.75
658 - Various updates to LVS
659 - Fix a bug in the killtcp control where we did not set the port correctly
660 - add a new "ctdb scriptstatus" command that shows the status of the
661   eventrscripts.
662
663* Mon Mar 16 2009 : Version 1.0.74
664 - Fixes to AIX from C Cowan.
665 - Fixes to ctdb_diagnostics so we collect correct GPFS data
666 - Fixes to the net conf list command in ctdb_diagnostics
667 - Check the static-routes file IFF it exists in ctdb_diagnostics
668
669* Thu Mar 05 2009 Sumit Bose <sbose@redhat.com> - 1.0.73-1
670 - Update to ctdb version 1.0.73
671
672* Wed Mar 4 2009 : Version 1.0.73
673 - Add possibility to disable the check of shares for NFS and Samba
674 - From Sumit Bose, fix dependencies so make -j works
675
676* Tue Feb 24 2009 Sumit Bose <sbose@redhat.com> - 1.0.72-3
677 - fix a make -j dependency problem
678
679* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.72-2
680- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
681
682* Wed Feb 18 2009 Sumit Bose <sbose@redhat.com> - 1.0.72-1
683 - Update to ctdb version 1.0.72
684
685* Wed Feb 18 2009 : Version 1.0.72
686 - Updates to test scripts by martin s
687 - Adding a COPYING file
688 - Use netstat to check for services and ports and fallback to netcat
689   only if netstat is unavailable.
690
691* Tue Feb 17 2009 Sumit Bose <sbose@redhat.com> - 1.0.71-5
692 - more fixed according to https://bugzilla.redhat.com/show_bug.cgi?id=459444
693
694* Sun Feb 8 2009 Sumit Bose <sbose@redhat.com> - 1.0.71-4
695 - added upstream patch with license file
696
697* Fri Feb 6 2009 Sumit Bose <sbose@redhat.com> - 1.0.71-3
698 - fixed package according to https://bugzilla.redhat.com/show_bug.cgi?id=459444
699
700* Thu Feb 5 2009 Guenther Deschner <gdeschner@redhat.com> - 1.0.71-2
701 - Update to ctdb version 1.0.71
702
703* Sun Feb 01 2009 : Version 1.0.71
704 - Additional ipv6 fixes from Michael Adams
705
706* Thu Jan 15 2009 : Version 1.0.70
707 - IPv6 support is completed. this is backward compatible with ipv4-only
708   systems. To use IPv6 with samba and ctdb you need current GIT of samba 3.3
709   or michael adams samba-ctdeb branch.
710 - Many enhancements to the build system and scripts to make it more SUSE
711   friendly by Michael Adams.
712 - Change of how the naming of the package is structured. We are now
713   using "1.0.70" as a release and "-1" as the revision instead of as
714   previously using "1.0" as release and ".70" as the revision.
715   By Michael Adams.
716
717* Wed Dec 17 2008 : Version 1.0.69
718 - Various fixes to scripts by M Adam
719 - Dont call ctdb_fatal() when the transport is down during shutdown
720
721* Thu Dec 11 2008 : Version 1.0.68
722 - Fixes for monitoring of interfaces status from Michael Adam.
723 - Use -q instead of >/dev/null for grep to enhance readability of the
724   scripts from Michael Adam.
725 - Update to the "ctdb recover" command. This command now block until the
726   has completed. This makes it much easier to use in scripts and avoids
727   the common workaround :
728      ctdb recover
729      ... loop while waiting for recovery completes ...
730      continue ...
731 - Add a CTDB_TIMEOUT variable. If set, this variable provides an automatic
732   timeout for "ctdb <command>", similar to using -T <timeout>
733 - Set a unique errorcode for "ctdb <command>" when it terminates due to a
734   timeout so that scripts can distinguish between a hung command and what was
735   just a failure.
736 - Update "ctdb ban/unban" so that if the cluster is in recovery these commands
737   blocks and waits until after recovery is complete before the perform the
738   ban/unban operation. This is necessary since the recovery process can cause
739   nodes to become automatically unbanned.
740 - Update "ctdb ban/unban" to block until the recovery that will follow shortly
741   after this command has completed.
742   This makes it much easier to use in scripts and avoids the common
743   workaround :
744      ctdb ban/unban
745      ... loop while waiting for recovery completes ...
746      continue ...
747 - Bugfix for the new flags handling in 1.0.67. Abort and restart monitoring
748   if we failed to get proper nodemaps from a remote node instead of
749   dereferencing a null pointer.
750 - If ctdbd was explicitely started with the '--socket' argument, make
751   ctdbd automatically set CTDB_SOCKET to the specified argument.
752   This ensures that eventscripts spawned by the ctdb daemon will default to
753   using the same socket and talk to the correct daemon.
754   This primarily affects running multiple daemons on the same host and where
755   you want each instance of ctdb daemons have their eventscripts talk to the
756   "correct" daemon.
757 - Update "ctdb ping" to return an error code if the ping fail so that it
758   can be used in scripts.
759 - Update to how to synchronize management of node flags across the cluster.
760
761* Tue Dec 02 2008 : Version 1.0.67
762 - Add a document describing the recovery process.
763 - Fix a bug in "ctdb setdebug" where it would refuse to set a negative
764   debug level.
765 - Print the list of literals for debug names if an invalid one was given
766   to "ctdb setdebug"
767 - Redesign how "ctdb reloadnodes" works and reduce the amont of tcp teardowns
768   used during this event.
769 - Make it possible to delete a public ip from all nodes at once using
770   "ctdb delip -n all"
771
772* Sun Nov 23 2008 : Version 1.0.66
773 - Allow to change the recmaster even when we are not frozen.
774 - Remove two redundant SAMBA_CHECK variables from the sysconf example
775 - After a node failure it can take very long before some lock operations
776   ctdb needs to perform are allowed/works with gpfs again. Workaround this
777   by treating a hang/timeout as success.
778 - Dont override CTDB_BASE is fet in the shell already
779 - Always send keepalive packets regardless of whether the link is idle or not.
780 - Rewrite the disable/enable flag update logic to prevent a race between
781   "ctdb disable/enable" and the recovery daemon when updating the flags to
782   all nodes.
783
784* Wed Nov 12 2008 : Version 1.0.65
785 - Update the sysconfig example: The default debug level is 2 (NOTICE) and not
786   0 (ERROR)
787 - Add support for a CTDB_SOCKET environment variable for the ctdb command
788   line tool. If set, this overrides the default socket the ctdb tool will
789   use.
790 - Add logging of high latency operations.
791
792* Tue Oct 21 2008 : Version 1.0.64
793 - Add a context and a timed event so that once we have been in recovery for
794   too long we drop all public addresses.
795
796* Sun Oct 19 2008 : Version 1.0.63
797 - Remove logging of "periodic cleanup ..." in 50.samba
798 - When we reload a nodes file, we must detect this and reload the file also
799   in the recovery daemon before we try to dereference somethoung beyond the end
800   of the nodes array.
801
802* Wed Oct 15 2008 : Version 1.0.62
803 - Allow multiple eventscritps using the same prefix number.
804   It is undefined which order scripts with the same prefix will execute in.
805
806* Tue Oct 14 2008 : Version 1.0.61
807 - Use "route add -net" instead of "ip route add" when adding routes in 99.routing
808 - lower the loglevel os several debug statements
809 - check the status returned from ctdb_ctrl_get_tickles() before we try to
810   print them out to the screen.
811 - install a new eventscript 20.multipathd whoich can be used to monitor that
812   multipath devices are healthy
813
814* Tue Oct 14 2008 : Version 1.0.60
815 - Verify that nodes we try to ban/unban are reachable and print an error othervise.
816 - Update the client and server sides of TAKEIP/RELEASEIP/GETPUBLICIPS and
817   GETNODEMAP to fall back to the old style ipv4-only controls if the new
818   ipv4/ipv6 controls fail. This allows an ipv4/v6 enabled ctdb daemon to
819   interoperate with earlier ipv4-only versions of the daemons.
820 - From Mathieu Parent : log debian systems log the package versions in ctdb
821   diagnostics
822 - From Mathieu Parent : specify logdir location for debian (this patch was
823   later reversed)
824 - From Michael Adams : allow # comments in nodes/public_addresses files
825
826* Mon Oct 06 2008 : Version 1.0.59
827 - Updated "reloadnodes" logic. Instead of bouncing the entire tcp layer it is
828  sufficient to just close and reopen all outgoing tcp connections.
829 - New eventscript 99.routing which can be used to re-attach routes to public
830   interfaces after a takeip event. (routes may be deleted by the kernel when we
831   release an ip)
832 - IDR tree fix from Jim Houston
833 - Better handling of critical events if the local clock is suddenly changed
834   forward by a lot.
835 - Fix three slow memory leaks in the recovery daemon
836 - New ctdb command : ctdb recmaster   which prints the pnn of the recmaster
837 - Onnode enhancements from Martin S : "healthy" and "connected" are now
838   possible nodespecifiers
839 - From Martin S : doc fixes
840 - lowering some debug levels for some nonvital informational messages
841 - Make the daemon daemon monitoring stronger and allow ctdbd to detect a hung
842   recovery daemon.
843 - From C Cowan : patches to compile ipv6 under AIX
844 - zero out some structs to keep valgrind happy
845
846* Mon Sep 8 2008 Abhijith Das <adas@redhat.com> - 1.0.58-1
847 - This release repackages upstream's version 1.0.58 for fedora
848
849* Wed Aug 27 2008 : Version 1.0.58
850 - revert the name change tcp_tcp_client back to tcp_control_tcp so
851   samba can build.
852 - Updates to the init script from Abhijith Das <adas@redhat.com>
853
854* Mon Aug 25 2008 : Version 1.0.57
855 - initial support for IPv6
856
857* Mon Aug 11 2008 : Version 1.0.56
858 - fix a memory leak in the recovery daemon.
859
860* Mon Aug 11 2008 : Version 1.0.55
861 - Fix the releaseip message we seond to samba.
862
863* Fri Aug 8 2008 : Version 1.0.54
864 - fix a looping error in the transaction code
865 - provide a more detailed error code for persistent store errors
866   so clients can make more intelligent choices on how to try to recover
867
868* Thu Aug 7 2008 : Version 1.0.53
869 - Remove the reclock.pnn file   it can cause gpfs to fail to umount
870 - New transaction code
871
872* Mon Aug 4 2008 : Version 1.0.52
873 - Send an explicit gratious arp when starting sending the tcp tickles.
874 - When doing failover, issue a killtcp to non-NFS/non-CIFS clients
875   so that they fail quickly. NFS and CIFS already fail and recover
876   quickly.
877 - Update the test scripts to handle CTRL-C to kill off the test.
878
879* Mon Jul 28 2008 : Version 1.0.51
880 - Strip off the vlan tag from bond devices before we check in /proc
881   if the interface is up or not.
882 - Use testparm in the background in the scripts to allow probing
883   that the shares do exist.
884 - Fix a bug in the logging code to handle multiline entries better
885 - Rename private elements from private to private_data
886
887* Fri Jul 18 2008 : Version 1.0.50
888 - Dont assume that just because we can establish a TCP connection
889   that we are actually talking to a functioning ctdb daemon.
890   So dont mark the node as CONNECTED just because the tcp handshake
891   was successful.
892 - Dont try to set the recmaster to ourself during elections for those
893   cases we know this will fail. To remove some annoying benign but scary
894   looking entries from the log.
895 - Bugfix for eventsystem for signal handling that could cause a node to
896   hang.
897
898* Thu Jul 17 2008 : Version 1.0.49
899 - Update the safe persistent update fix to work with unpatched samba
900   servers.
901
902* Thu Jul 17 2008 : Version 1.0.48
903 - Update the spec file.
904 - Do not start new user-triggered eventscripts if we are already
905   inside recovery mode.
906 - Add two new controls to start/cancel a persistent update.
907   A client such as samba can use these to tell ctdbd that it will soon
908   be writing directly to the persistent database tdb file. So if
909   samba is -9ed before it has eitehr done the persistent_store or
910   canceled the operation, ctdb knows that the persistent databases
911   'may' be out of sync and therefore a full blown recovery is called for.
912 - Add two new options :
913   CTDB_SAMBA_SKIP_CONF_CHECK and CTDB_SAMBA_CHECK_PORTS that can be used
914   to override what checks to do when monitoring samba health.
915   We can no longer use the smbstatus, net or testparm commands to check
916   if samba or its config is healthy since these commands may block
917   indefinitely and thus can not be used in scripts.
918
919* Fri Jul 11 2008 : Version 1.0.47
920 - Fix a double free bug where if a user striggered (ctdb eventscript)
921   hung and while the timeout handler was being processed a new user
922   triggered eventscript was started we would free state twice.
923 - Rewrite of onnode and associated documentation.
924
925* Thu Jul 10 2008 : Version 1.0.46
926 - Document both the LVS:cingle-ip-address and the REMOTE-NODE:wan-accelerator
927   capabilities.
928 - Add commands "ctdb pnn", "ctdb lvs", "ctdb lvsmaster".
929 - LVS improvements. LVS is the single-ip-address mode for a ctdb cluster.
930 - Fixes to supress rpmlint warnings
931 - AXI compile fixes.
932 - Change \s to [[:space:]] in some scripts. Not all RHEL5 packages come
933   with a egrep that handles \s   even same version but different arch.
934 - Revert the change to NFS restart. CTDB should NOT attempt to restart
935   failed services.
936 - Rewrite of the waitpid() patch to use the eventsystem for handling
937   signals.
938
939* Tue Jul 8 2008 : Version 1.0.45
940 - Try to restart the nfs service if it has failed to respond 3 times in a row.
941 - waitpid() can block if the child does not respond promptly to SIGTERM.
942   ignore all SIGCHILD signals by setting SIGCHLD to SIG_DEF.
943   get rid of all calls to waitpid().
944 - make handling of eventscripts hanging more liberal.
945   only consider the script to have failed and making the node unhealthy
946   IF the eventscript terminated wiht an error
947   OR the eventscript hung 5 or more times in a row
948
949* Mon Jul 7 2008 : Version 1.0.44
950 - Add a CTDB_VALGRIND option to /etc/sysconfig/ctdb to make it start
951   ctdb under valgrind. Logs go to /var/log/ctdb_valgrind.PID
952 - Add a hack to show the control opcode that caused uninitialized data
953   in the valgrind output by encoding the opcode as the line number.
954 - Initialize structures and allocated memory in various places in
955   ctdb to make it valgrind-clean and remove all valgrind errors/warnings.
956 - If/when we destroy a lockwait child, also make sure we cancel any pending transactions
957 - If a transaction_commit fails, delete/cancel any pending transactions and
958   return an error instead of calling ctdb_fatal()
959 - When running ctdb under valgrind, make sure we run it with --nosetsched and also
960   ensure that we do not use mem-mapped i/o when accessing the tdb's.
961 - zero out ctdb->freeze_handle when we free/destroy a freeze-child.
962   This prevent a heap corruption/ctdb crash bug that could trigger
963   if the freeze child times out.
964 - we dont need to explicitely thaw the databases from the recovery daemon
965   since this is done implicitely when we restore the recovery mode back to normal.
966 - track when we start and stop a recovery. Add the 'time it took to complete the
967   recovery' to the 'ctdb uptime' output.
968   Ensure by tracking the start/stop recovery timestamps that we do not
969   check that the ip allocation is consistend from inside the recovery daemon
970   while a different node (recovery master) is performing a recovery.
971   This prevent a race that could cause a full recovery to trigger if the
972   'ctdb disable/enable' commands took very long.
973 - The freeze child indicates to the master daemon that all databases are locked
974   by writing data to the pipe shared with the master daemon.
975   This write sometimes fail and thus the master daemon never notices that the databases
976   are locked cvausing long timeouts and extra recoveries.
977   Check that the write is successful and try the write again if it failed.
978 - In each node, verify that the recmaster have the right node flags for us
979   and force a push of our flags to the recmaster if wrong.
980
981* Tue Jul 1 2008 : Version 1.0.43
982 - Updates and bugfixes to the specfile to keep rpmlint happy
983 - Force a global flags update after each recovery event.
984 - Verify that the recmaster agrees with our node flags and update the
985   recmaster othervise.
986 - When writing back to the parent from a freeze-child across the pipe,
987   loop over the write in case the write failed with an error  othervise
988   the parent will never be notified tha the child has completed the operation.
989 - Automatically thaw all databases when recmaster marks us as being in normal
990   mode instead of recovery mode.
991
992* Fri Jun 13 2008 : Version 1.0.42
993 - When event scripts have hung/timedout more than EventScriptBanCount times
994   in a row the node will ban itself.
995 - Many updates to persistent write tests and the test scripts.
996
997* Wed May 28 2008 : Version 1.0.41
998 - Reactivate the safe writes to persistent databases and solve the
999   locking issues. Locking issues are solved the only possible way,
1000   by using a child process to do the writes.  Expensive and slow but... .
1001
1002* Tue May 27 2008 : Version 1.0.40
1003 - Read the samba sysconfig file from the 50.samba eventscript
1004 - Fix some emmory hierarchical bugs in the persistent write handling
1005
1006* Thu May 22 2008 : Version 1.0.39
1007 - Moved a CTDB_MANAGES_NFS, CTDB_MANAGES_ISCSI and CTDB_MANAGES_CSFTPD
1008   into /etc/sysconfig/ctdb
1009 - Lowered some debug messages to not fill the logfile with entries
1010   that normally occur in the default configuration.
1011
1012* Fri May 16 2008 : Version 1.0.38
1013 - Add machine readable output support to "ctdb getmonmode"
1014 - Lots of tweaks and enhancements if the event scripts are "slow"
1015 - Merge from tridge: an attempt to break the chicken-and-egg deadlock that
1016   net conf introduces if used from an eventscript.
1017 - Enhance tickles so we can tickle an ipv6 connection.
1018 - Start adding ipv6 support : create a new container to replace sockaddr_in.
1019 - Add a checksum routine for ipv6/tcp
1020 - When starting up ctdb, let the init script do a tdbdump on all
1021   persistent databases and verify that they are good (i.e. not corrupted).
1022 - Try to use "safe transactions" when writing to a persistent database
1023   that was opened with the TDB_NOSYNC flag. If we can get the transaction
1024   thats great, if we cant  we have to write anyway since we cant block here.
1025
1026* Mon May 12 2008 : Version 1.0.37
1027 - When we shutdown ctdb we close the transport down before we run the
1028   "shutdown" eventscripts. If ctdb decides to send a packet to a remote node
1029   after we have shutdown the transport but before we have shutdown ctdbd
1030   itself this could lead to a SEGV instead of a clean shutdown. Fix.
1031 - When using the "exportfs" command to extract which NFS export directories
1032   to monitor,  exportfs violates the "principle of least surprise" and
1033   sometimes report a single export line as two lines of text output
1034   causing the monitoring to fail.
1035
1036* Fri May 9 2008 : Version 1.0.36
1037 - fix a memory corruption bug that could cause the recovery daemon to crash.
1038 - fix a bug with distributing public ip addresses during recovery.
1039   If the node that is the recovery master did NOT use public addresses,
1040   then it assumed that no other node in the cluster used them either and
1041   thus skipped the entire step of reallocating public addresses.
1042
1043* Wed May 7 2008 : Version 1.0.35
1044 - During recovery, when we define the new set of lmasters (vnnmap)
1045   only consider those nodes that have the can-be-lmaster capability
1046   when we create the vnnmap. unless there are no nodes available which
1047   supports this capability in which case we allow the recmaster to
1048   become lmaster capable (temporarily).
1049 - Extend the async framework so that we can use paralell async calls
1050   to controls that return data.
1051 - If we do not have the "can be recmaster" capability, make sure we will
1052   lose any recmaster elections, unless there are no nodes available that
1053   have the capability, in which case we "take/win" the election anyway.
1054 - Close and reopen the reclock pnn file at regular intervals.
1055   Make it a non-fatal event if we occasionally fail to open/read/write
1056   to this file.
1057 - Monitor that the recovery daemon is still running from the main ctdb
1058   daemon and shutdown the main daemon when recovery daemon has terminated.
1059 - Add a "ctdb getcapabilities" command to read the capabilities off a node.
1060 - Define two new capabilities : can be recmaster and can be lmaster
1061   and default both capabilities to YES.
1062 - Log denied tcp connection attempts with DEBUG_ERR and not DEBUG_WARNING
1063
1064* Thu Apr 24 2008 : Version 1.0.34
1065 - When deleting a public ip from a node, try to migrate the ip to a different
1066   node first.
1067 - Change catdb to produce output similar to tdbdump
1068 - When adding a new public ip address, if this ip does not exist yet in
1069   the cluster, then grab the ip on the local node and activate it.
1070 - When a node disagrees with the recmaster on WHO is the recmaster, then
1071   mark that node as a recovery culprit so it will eventually become
1072   banned.
1073 - Make ctdb eventscript support the -n all argument.
1074
1075* Thu Apr 10 2008 : Version 1.0.33
1076 - Add facilities to include site local adaptations to the eventscript
1077   by /etc/ctdb/rc.local which will be read by all eventscripts.
1078 - Add a "ctdb version" command.
1079 - Secure the domain socket with proper permissions from Chris Cowan
1080 - Bugfixes for AIX from Chris Cowan
1081
1082* Wed Apr 02 2008 : Version 1.0.32
1083 - Add a control to have a node execute the eventscripts with arbitrary
1084   command line arguments.
1085 - Add a control "rddumpmemory" that will dump the talloc memory allocations
1086   for the recovery daemon.
1087 - Decorate the talloc memdump to produce better and easier memory leak
1088   tracking.
1089 - Update the RHEL5 iscsi tgtd scripts to allow one iscsi target for each
1090   public address.
1091 - Add two new controls "addip/delip" that can be used to add/remove public
1092   addresses to a node at runtime. After using these controls a "ctdb recover"
1093   ir required to make the changes take.
1094 - Fix a couple of slow memory leaks.
1095
1096* Tue Mar 25 2008 : Version 1.0.31
1097 - Add back controls to disable/enable monitoring on a node.
1098 - Fix a memory leak where we used to attach CALL data to the ctdb structure
1099   when performing a local call. Memory which would be lost if the call was
1100   aborted.
1101 - Reduce the loglevel for the log output when someone connects to a non
1102   public ip address for samba.
1103 - Redo and optimize the vacuuming process to send only one control to each
1104   other node containing all records to be vacuumed instead of one
1105   control per node per record.
1106
1107* Tue Mar 04 2008 : Version 1.0.30
1108 - Update documentation cor new commands and tuneables
1109 - Add machinereadable output to the ip,uptime and getdebug commands
1110 - Add a moveip command to manually failover/failback public ips
1111 - Add NoIPFallback tuneable that prevents ip address failback
1112 - Use file locking inside the CFS as alternative to verify when other nodes
1113   Are connected/disconnected to be able to recover from split network
1114 - Add DisableWhenUnhealthy tunable
1115 - Add CTDB_START_AS_DISABLED sysconfig param
1116 - Add --start-as-disabled flag to ctdb
1117 - Add ability to monitor for OOM condition
1118
1119* Thu Feb 21 2008 : Version 1.0.29
1120 - Add a new command to make expansion of an existing cluster easier
1121 - Fix bug with references to freed objects in the ctdb structure
1122 - Propagate debuglevel changes to the recovery daemon
1123 - Merge patches to event scripts from Mathieu Parent :
1124 - MP: Simulate "service" on systems which do not provide this tool
1125 - MP: Set correct permissions for events.d/README
1126 - Add nice helper functions to start/stop nfs from the event scripts
1127
1128* Fri Feb 08 2008 : Version 1.0.28
1129 - Fix a problem where we tried to use ethtool on non-ethernet interfaces
1130 - Warn if the ipvsadm packege is missing when LVS is used
1131 - Dont use absolute pathnames in some of the event scripts
1132 - Fix for persistent tdbs growing inifinitely.
1133
1134* Wed Feb 06 2008 : Version 1.0.27
1135 - Add eventscript for iscsi
1136
1137* Thu Jan 31 2008 : Version 1.0.26
1138 - Fix crashbug in tdb transaction code
1139
1140* Tue Jan 29 2008 : Version 1.0.25
1141 - added async recovery code
1142 - make event scripts more portable
1143 - fixed ctdb dumpmemory
1144 - more efficient tdb allocation code
1145 - improved machine readable ctdb status output
1146 - added ctdb uptime
1147
1148* Wed Jan 16 2008 : Version 1.0.24
1149 - added syslog support
1150 - documentation updates
1151
1152* Wed Jan 16 2008 : Version 1.0.23
1153 - fixed a memory leak in the recoveryd
1154 - fixed a corruption bug in the new transaction code
1155 - fixed a case where an packet for a disconnected client could be processed
1156 - added http event script
1157 - updated documentation
1158
1159* Thu Jan 10 2008 : Version 1.0.22
1160 - auto-run vacuum and repack ops
1161
1162* Wed Jan 09 2008 : Version 1.0.21
1163 - added ctdb vacuum and ctdb repack code
1164
1165* Sun Jan 06 2008 : Version 1.0.20
1166 - new transaction based recovery code
1167
1168* Sat Jan 05 2008 : Version 1.0.19
1169 - fixed non-master bug
1170 - big speedup in recovery for large databases
1171 - lots of changes to improve tdb and ctdb for high churn databases
1172
1173* Thu Dec 27 2007 : Version 1.0.18
1174 - fixed crash bug in monitor_handler
1175
1176* Tue Dec 04 2007 : Version 1.0.17
1177 - fixed bugs related to ban/unban of nodes
1178 - fixed a race condition that could lead to monitoring being permanently disabled,
1179   which would lead to long recovery times
1180 - make deterministic IPs the default
1181 - fixed a bug related to continuous recovery
1182 - added a debugging option --node-ip
Note: See TracBrowser for help on using the repository browser.