CHANGES.txt 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541
  1. Trunk
  2. Non-backward compatible changes:
  3. BUGFIXES:
  4. Backward compatible changes:
  5. NEW FEATURES:
  6. ZOOKEEPER-1355. Add zk.updateServerList(newServerList) (Alex Shraer, Marshall McMullen via fpj)
  7. ZOOKEEPER-1572. Add an async (Java) interface for multi request (Sijie Guo via camille)
  8. ZOOKEEPER-107. Allow dynamic changes to server cluster membership (Alex Shraer via breed)
  9. ZOOKEEPER-1400. Allow logging via callback instead of raw FILE pointer
  10. (Marshall McMullen via michim)
  11. ZOOKEEPER-1147. Add support for local sessions (Jay Shrauner, thawan via thawan)
  12. ZOOKEEPER-1691. Add a flag to disable standalone mode (Helen Hastings via michim)
  13. ZOOKEEPER-442. need a way to remove watches that are no longer of
  14. interest (Rakesh R, Daniel Gómez Ferro via phunt)
  15. BUGFIXES:
  16. ZOOKEEPER-786. Exception in ZooKeeper.toString
  17. (Thomas Koch via phunt)
  18. ZOOKEEPER-1191. Synchronization issue - wait not in guarded block (Alex Shraer via breed)
  19. ZOOKEEPER-1192. Leader.waitForEpochAck() checks waitingForNewEpoch instead of checking electionFinished (Alex Shraer via breed)
  20. ZOOKEEPER-1203. Zookeeper systest is missing Junit Classes
  21. (Prashant Gokhale via phunt)
  22. ZOOKEEPER-1174. FD leak when network unreachable (Ted Dunning via camille)
  23. ZOOKEEPER-1206. Sequential node creation does not use always use
  24. digits in node name given certain Locales. (Mark Miller via phunt)
  25. ZOOKEEPER-1212. zkServer.sh stop action is not conformat with LSB
  26. para 20.2 Init Script Actions (Roman Shaposhnik via phunt)
  27. ZOOKEEPER-1190. ant package is not including many of the bin scripts
  28. in the package (zkServer.sh for example) (Eric Yang via phunt)
  29. ZOOKEEPER-1241. Typo in ZooKeeper Recipes and Solutions
  30. documentation (Jingguo Yao via phunt)
  31. ZOOKEEPER-1220. ./zkCli.sh 'create' command is throwing
  32. ArrayIndexOutOfBoundsException (kavita sharma via phunt)
  33. ZOOKEEPER-1256. ClientPortBindTest is failing on Mac OS X
  34. (Daniel Gómez Ferro via phunt)
  35. ZOOKEEPER-1264. FollowerResyncConcurrencyTest failing intermittently. (phunt via camille)
  36. ZOOKEEPER-1246. Dead code in PrepRequestProcessor catch Exception block. (camille)
  37. ZOOKEEPER-1271. testEarlyLeaderAbandonment failing on solaris -
  38. clients not retrying connection (mahadev via phunt)
  39. ZOOKEEPER-1264. FollowerResyncConcurrencyTest failing
  40. intermittently. (breed, camille and Alex Shraer via camille)
  41. ZOOKEEPER-1282. Learner.java not following Zab 1.0 protocol -
  42. setCurrentEpoch should be done upon receipt of NEWLEADER
  43. (before acking it) and not upon receipt of UPTODATE (breed via camille)
  44. ZOOKEEPER-1291. AcceptedEpoch not updated at leader before it proposes the epoch to followers. (Alex Shraer via camille)
  45. ZOOKEEPER-1208. Ephemeral node not removed after the client session is long gone. (phunt via camille)
  46. ZOOKEEPER-1239. add logging/stats to identify fsync stalls. (phunt via camille)
  47. ZOOKEEPER-1311. ZooKeeper test jar is broken (Ivan Kelly via phunt)
  48. ZOOKEEPER-1305. zookeeper.c:prepend_string func can dereference null ptr.
  49. (Daniel Lescohier via mahadev)
  50. ZOOKEEPER-1262. Documentation for Lock recipe has major flaw.
  51. (Jordan Zimmerman via mahadev)
  52. ZOOKEEPER-1316. zookeeper_init leaks memory if chroot is just '/'.
  53. (Akira Kitada via mahadev)
  54. ZOOKEEPER-1315. zookeeper_init always reports sessionPasswd=<hidden>.
  55. (Akira Kitada via mahadev)
  56. ZOOKEEPER-1317. Possible segfault in zookeeper_init. (Akira Kitada via mahadev)
  57. ZOOKEEPER-1319. Missing data after restarting+expanding a cluster.
  58. (phunt and breed via mahadev)
  59. ZOOKEEPER-1269. Multi deserialization issues. (Camille Fournier via mahadev)
  60. ZOOKEEPER-1323. c client doesn't compile on freebsd
  61. (michi mutsuzaki via phunt)
  62. ZOOKEEPER-1333. NPE in FileTxnSnapLog when restarting a cluster.
  63. (Patrick Hunt via mahadev)
  64. ZOOKEEPER-1331. Typo in docs: acheive -> achieve (Andrew Ash via phunt)
  65. ZOOKEEPER-1089. zkServer.sh status does not work due to invalid
  66. option of nc (Roman Shaposhnik via phunt)
  67. ZOOKEEPER-1343. getEpochToPropose should check if lastAcceptedEpoch is greater or equal than epoch (fpj via breed)
  68. ZOOKEEPER-1050. zooinspector shell scripts do not work
  69. (Will Johnson via phunt)
  70. ZOOKEEPER-1294. One of the zookeeper server is not accepting any requests (Kavita Sharma via henryr)
  71. ZOOKEEPER-1358. In StaticHostProviderTest.java, testNextDoesNotSleepForZero tests that hostProvider.next(0)
  72. doesn't sleep by checking that the latency of this call is less than 10sec (Alex Shraer via camille)
  73. ZOOKEEPER-1351. invalid test verification in MultiTransactionTest (phunt via camille)
  74. ZOOKEEPER-973. bind() could fail on Leader because it does not
  75. setReuseAddress on its ServerSocket (Harsh J via phunt)
  76. ZOOKEEPER-1367. Data inconsistencies and unexpired ephemeral nodes after cluster restart.
  77. (Benjamin Reed via mahadev)
  78. ZOOKEEPER-1353. C client test suite fails consistently. (Clint Byrum
  79. via mahadev)
  80. ZOOKEEPER-1373. Hardcoded SASL login context name clashes with Hadoop security
  81. configuration override. (Eugene Koontz and Thomas Weise via mahadev)
  82. ZOOKEEPER-1352. server.InvalidSnapshotTest is using connection timeouts
  83. that are too short. (phunt via mahadev)
  84. ZOOKEEPER-1336. javadoc for multi is confusing, references functionality that doesn't seem
  85. to exist. (phunt via mahadev)
  86. ZOOKEEPER-1327. there are still remnants of hadoop urls. (Harsh J via mahadev)
  87. ZOOKEEPER-1340. multi problem - typical user operations are generating ERROR level
  88. messages in the server (phunt via mahadev)
  89. ZOOKEEPER-1374. C client multi-threaded test suite fails to compile
  90. on ARM architectures. (James Page via mahadev)
  91. ZOOKEEPER-1337. multi's "Transaction" class is missing tests. (camille
  92. and phunt via mahadev)
  93. ZOOKEEPER-1338. class cast exceptions may be thrown by multi ErrorResult
  94. class (invalid equals) (phunt via mahadev)
  95. ZOOKEEPER-1386. avoid flaky URL redirection in "ant javadoc" :
  96. replace "http://java.sun.com/javase/6/docs/api/" with
  97. "http://download.oracle.com/javase/6/docs/api/" (Eugene Koontz via camille)
  98. ZOOKEEPER-1361. Leader.lead iterates over 'learners' set without proper synchronisation (henryr via camille)
  99. ZOOKEEPER-1277. servers stop serving when lower 32bits of zxid roll
  100. over (phunt)
  101. ZOOKEEPER-1412. java client watches inconsistently triggered on
  102. reconnect (phunt)
  103. ZOOKEEPER-1344. ZooKeeper client multi-update command is not
  104. considering the Chroot request (Rakesh R via phunt)
  105. ZOOKEEPER-1307. zkCli.sh is exiting when an Invalid ACL exception is
  106. thrown from setACL command through client (Kavita Sharma via phunt)
  107. ZOOKEEPER-1390. some expensive debug code not protected by a check
  108. for debug (breed via camille)
  109. ZOOKEEPER-1406. dpkg init scripts don't restart - missing
  110. check_priv_sep_dir (Chris Beauchamp via phunt)
  111. ZOOKEEPER-1403. zkCli.sh script quoting issue (James Page via phunt)
  112. ZOOKEEPER-1384. test-cppunit overrides LD_LIBRARY_PATH and fails if
  113. gcc is in non-standard location (Jay Shrauner via phunt)
  114. ZOOKEEPER-1419. Leader election never settles for a 5-node cluster (flavio via camille)
  115. ZOOKEEPER-1433. improve ZxidRolloverTest (test seems flakey) (phunt via henryr)
  116. ZOOKEEPER-1395. node-watcher double-free redux (Mike Lundy via henryr)
  117. ZOOKEEPER-1439. c sdk: core in log_env for lack of checking the output
  118. argument *pwp* of getpwuid_r (Yubing Yin via michim)
  119. ZOOKEEPER-1339. C client doesn't build with --enable-debug
  120. (Eric Liang via michim)
  121. ZOOKEEPER-1048. addauth command does not work in cli_mt/cli_st
  122. (allengao via michim)
  123. ZOOKEEPER-1318. In Python binding, get_children (and get and exists, and probably others)
  124. with expired session doesn't raise exception properly (henryr via michim)
  125. ZOOKEEPER-642. "exceeded deadline by N ms" floods logs (Marc Celani via michim)
  126. ZOOKEEPER-1431. zkpython async calls leak memory (Kapil Thangavelu and Andre Cruz via henryr)
  127. ZOOKEEPER-1163. Memory leak in zk_hashtable.c:do_insert_watcher_object()
  128. (Anupam Chanda via michim)
  129. ZOOKEEPER-1466. QuorumCnxManager.shutdown missing synchronization. (Patrick Hunt via mahadev)
  130. ZOOKEEPER-1490. If the configured log directory does not exist
  131. zookeeper will not start. Better to create the directory and start
  132. (suja s via phunt)
  133. ZOOKEEPER-1210. Can't build ZooKeeper RPM with RPM >= 4.6.0 (i.e. on
  134. RHEL 6 and Fedora >= 10) (Tadeusz Andrzej Kadłubowski via phunt)
  135. ZOOKEEPER-1236. Security uses proprietary Sun APIs
  136. (Adalberto Medeiros via phunt)
  137. ZOOKEEPER-1471. Jute generates invalid C++ code
  138. (Michi Mutsuzaki via phunt)
  139. ZOOKEEPER-1465. Cluster availability following new leader election
  140. takes a long time with large datasets - is correlated to dataset size
  141. (fpj and Thawan Kooburat via camille)
  142. ZOOKEEPER-1427. Writing to local files is done non-atomically (phunt)
  143. ZOOKEEPER-1489. Data loss after truncate on transaction log (phunt)
  144. ZOOKEEPER-1521. LearnerHandler initLimit/syncLimit problems
  145. specifying follower socket timeout limits (phunt)
  146. ZOOKEEPER-1493. C Client: zookeeper_process doesn't invoke
  147. completion callback if zookeeper_close has been called
  148. (Michi Mutsuzaki via phunt and mahadev)
  149. ZOOKEEPER-1522. intermittent failures in Zab test due to NPE in
  150. recursiveDelete test function (phunt via flavio)
  151. ZOOKEEPER-1514. FastLeaderElection - leader ignores the round
  152. information when joining a quorum (flavio via henryr)
  153. ZOOKEEPER-1533 Correct the documentation of the args for the JavaExample doc.
  154. (Warren Turkal via michim)
  155. ZOOKEEPER-1536 c client : memory leak in winport.c (brooklin via michim)
  156. ZOOKEEPER-1481 allow the C cli to run exists with a watcher (phunt via michim)
  157. ZOOKEEPER-1328. Misplaced assertion for the test case 'FLELostMessageTest'
  158. and not identifying misfunctions. (Rakesh R via mahadev)
  159. ZOOKEEPER-1380. zkperl: _zk_release_watch doesn't remove items properly from
  160. the watch list. (Botond Hejj via mahadev)
  161. ZOOKEEPER-1538. Improve space handling in zkServer.sh and zkEnv.sh. (Andrew
  162. Ferguson via mahadev)
  163. ZOOKEEPER-1501. Nagios plugin always returns OK when it cannot connect to
  164. zookeeper. (Brian Sutherland via mahadev)
  165. ZOOKEEPER-1437. Client uses session before SASL authentication complete
  166. (Eugene Koontz via mahadev)
  167. ZOOKEEPER-1494. C client: socket leak after receive timeout in
  168. zookeeper_interest() (Michi Mutsuzaki via mahadev)
  169. ZOOKEEPER-1483. Fix leader election recipe documentation (Michi Mutsuzaki
  170. via mahadev)
  171. ZOOKEEPER-1496. Ephemeral node not getting cleared even after client has
  172. exited. (Rakesh R via mahadev)
  173. ZOOKEEPER-1550. ZooKeeperSaslClient does not finish anonymous login on
  174. OpenJDK (Eugene Koontz via mahadev)
  175. ZOOKEEPER-1585. make dist for src/c broken in trunk (Raul Gutierrez Segales
  176. via michim)
  177. ZOOKEEPER-1590. Patch to add zk.updateServerList(newServerList)
  178. broke the build (fpj via phunt)
  179. ZOOKEEPER-1474. Cannot build Zookeeper with IBM Java: use of Sun
  180. MXBean classes (Adalberto Medeiros via phunt)
  181. ZOOKEEPER-1591. Windows build is broken because inttypes.h doesn't exist
  182. (Marshall McMullen via michim)
  183. ZOOKEEPER-1596. Zab1_0Test should ensure that the file is closed
  184. (Enis Soztutar via phunt)
  185. ZOOKEEPER-1513. "Unreasonable length" exception while starting a
  186. server (Skye W-M via phunt)
  187. ZOOKEEPER-1581. change copyright in notice to 2012 (breed via phunt)
  188. ZOOKEEPER-1553. Findbugs configuration is missing some dependencies
  189. (Sean Busbey via phunt)
  190. ZOOKEEPER-1478. Small bug in QuorumTest.testFollowersStartAfterLeader( )
  191. (Alexander Shraer via fpj, breed, phunt)
  192. ZOOKEEPER-1387. Wrong epoch file created
  193. (Benjamin Busjaeger via breed, phunt)
  194. ZOOKEEPER-1578. org.apache.zookeeper.server.quorum.Zab1_0Test failed due to
  195. hard code with 33556 port (Li Ping via mahadev)
  196. ZOOKEEPER-1334. Zookeeper 3.4.x is not OSGi compliant - MANIFEST.MF
  197. is flawed (Claus Ibsen via phunt)
  198. ZOOKEEPER-1603. StaticHostProviderTest testUpdateClientMigrateOrNot
  199. hangs (Alexander Shraer via phunt)
  200. ZOOKEEPER-1597. Windows build failing (michim via phunt)
  201. ZOOKEEPER-1625. zkServer.sh is looking for clientPort in config file, but it
  202. may no longer be there with ZK-1411 (Alexander Shraer via michim)
  203. ZOOKEEPER-1495. ZK client hangs when using a function not available
  204. on the server. (Skye W-M via phunt)
  205. ZOOKEEPER-1620. NIOServerCnxnFactory (new code introduced in
  206. ZK-1504) opens selectors but never closes them
  207. (Thawan Kooburat via phunt)
  208. ZOOKEEPER-1628. Documented list of allowable characters in ZK doc
  209. not in line with code (Gabriel Reid via phunt)
  210. ZOOKEEPER-1613. The documentation still points to 2008 in the
  211. copyright notice (Edward Ribeiro via phunt)
  212. ZOOKEEPER-1562. Memory leaks in zoo_multi API
  213. (Deepak Jagtap via phunt)
  214. ZOOKEEPER-1645. ZooKeeper OSGi package imports not complete
  215. (Arnoud Glimmerveen via phunt)
  216. ZOOKEEPER-1641. Using slope=positive results in a jagged ganglia
  217. graph of packets rcvd/sent (Ben Hartshorne via phunt)
  218. ZOOKEEPER-1648. Fix WatcherTest in JDK7
  219. (Thawan Kooburat via phunt)
  220. ZOOKEEPER-1606. intermittent failures in ZkDatabaseCorruptionTest on
  221. jenkins (lixiaofeng via phunt)
  222. ZOOKEEPER-1647. OSGi package import/export changes not applied to
  223. bin-jar (Arnoud Glimmerveen via phunt)
  224. ZOOKEEPER-1672. zookeeper client does not accept "-members" option
  225. in reconfig command (Xiaoshuang Wang via phunt)
  226. ZOOKEEPER-1700. FLETest consistently failing - setLastSeenQuorumVerifier
  227. seems to be hanging (phunt via fpj)
  228. ZOOKEEPER-1697. large snapshots can cause continuous quorum failure
  229. (phunt via fpj)
  230. ZOOKEEPER-1706. Typo in Double Barriers example (Jingguo Yao via fpj)
  231. ZOOKEEPER-1324. Remove Duplicate NEWLEADER packets
  232. from the Leader to the Follower. (Thawan, fpj via fpj)
  233. ZOOKEEPER-1642. Leader Loading Database Twice (fpj via camille)
  234. ZOOKEEPER-1663. scripts don't work when path contains spaces (Amichai Rothman via camille)
  235. ZOOKEEPER-1702. ZooKeeper client may write operation packets before
  236. receiving successful response to connection request, can cause TCP
  237. RST (Chris Nauroth via phunt)
  238. ZOOKEEPER-1629. testTransactionLogCorruption occasionally fails. (shralex via camille)
  239. ZOOKEEPER-1713. wrong time calculation in zkfuse.cc (german via fpj)
  240. ZOOKEEPER-1379. 'printwatches, redo, history and
  241. connect '. client commands always print usage. This
  242. is not necessary (edward via fpj)
  243. ZOOKEEPER-1670. zookeeper should set a default value
  244. for SERVER_JVMFLAGS and CLIENT_JVMFLAGS so that memory
  245. usage is controlled (Arpit Gupta via fpj)
  246. ZOOKEEPER-1448. Node+Quota creation in transaction log can crash leader startup (Botond Hejj via fpj)
  247. ZOOKEEPER-1664. Kerberos auth doesn't work with native platform GSS integration. (Boaz Kelmer via camille)
  248. ZOOKEEPER-1754. Read-only server allows to create znode (Rakesh R via fpj)
  249. ZOOKEEPER-1751. ClientCnxn#run could miss the second ping or connection get
  250. dropped before a ping. (Jeffrey Zhong via mahadev)
  251. ZOOKEEPER-1657. Increased CPU usage by unnecessary SASL
  252. checks (Philip K. Warren via fpj)
  253. ZOOKEEPER-1753. ClientCnxn is not properly releasing the resources,
  254. which are used to ping RwServer (Rakesh R via fpj)
  255. ZOOKEEPER-1096. Leader communication should listen on
  256. specified IP, not wildcard address (Jared Cantwell,
  257. German Blanco via fpj)
  258. ZOOKEEPER-87. Follower does not shut itself down if its
  259. too far behind the leader. (German Blanco via fpj)
  260. ZOOKEEPER-1696. Fail to run zookeeper client on Weblogic application server.
  261. (Jeffrey Zhong via mahadev)
  262. ZOOKEEPER-1769. ZooInspector can't display node data/metadata/ACLs
  263. (Benjamin Jaton via phunt)
  264. ZOOKEEPER-1718. Support JLine 2 (Manikumar Reddy via phunt)
  265. ZOOKEEPER-1655. Make jline dependency optional in maven pom
  266. (Thomas Weise via phunt)
  267. ZOOKEEPER-1770. NullPointerException in SnapshotFormatter
  268. (Germán Blanco via phunt)
  269. ZOOKEEPER-1733. FLETest#testLE is flaky on windows boxes
  270. (Jeffrey Zhong via phunt)
  271. ZOOKEEPER-1773. incorrect reference to jline version/lib in docs
  272. (Manikumar Reddy via phunt)
  273. ZOOKEEPER-732. Improper translation of error into Python exception
  274. (Andrei Savu, Lei Zhang, fpj via fpj)
  275. ZOOKEEPER-1766. Consistent log severity level guards and statements
  276. (Jackie Chang via michim)
  277. ZOOKEEPER-1778. Use static final Logger objects (Rakesh R via michim)
  278. ZOOKEEPER-1551. Observers ignore txns that come after snapshot and UPTODATE
  279. (thawan, fpj via thawan)
  280. ZOOKEEPER-1781. ZooKeeper Server fails if snapCount is set to 1
  281. (Takashi Ohnishi via phunt, breed)
  282. ZOOKEEPER-1774. QuorumPeerMainTest fails consistently with
  283. "complains about host" assertion failure (phunt)
  284. ZOOKEEPER-877. zkpython does not work with python3.1
  285. (Daniel Enman via phunt)
  286. ZOOKEEPER-1624. PrepRequestProcessor abort multi-operation incorrectly. (thawan via camille)
  287. ZOOKEEPER-1610. Some classes are using == or != to compare
  288. Long/String objects instead of .equals() (Edward Ribeiro via phunt)
  289. ZOOKEEPER-1795. unable to build c client on ubuntu
  290. (Raul Gutierrez Segales via phunt)
  291. ZOOKEEPER-1646. mt c client tests fail on Ubuntu Raring (phunt)
  292. ZOOKEEPER-1732. ZooKeeper server unable to join established
  293. ensemble (German Blanco via fpj)
  294. ZOOKEEPER-1667. Watch event isn't handled correctly when
  295. a client reestablish to a server (jacky007, fpj via fpj)
  296. ZOOKEEPER-1799. SaslAuthFailDesignatedClientTest.testAuth fails
  297. frequently on SUSE (Jeffrey Zhong via phunt)
  298. ZOOKEEPER-1557. jenkins jdk7 test failure in
  299. testBadSaslAuthNotifiesWatch (Eugene Koontz via phunt)
  300. ZOOKEEPER-1744. clientPortAddress breaks "zkServer.sh status"
  301. (Nick Ohanian via phunt)
  302. ZOOKEEPER-1499. clientPort config changes not backwards-compatible
  303. (Alexander Shraer via phunt, breed)
  304. ZOOKEEPER-1798. Fix race condition in testNormalObserverRun
  305. (thawan, fpj via thawan)
  306. ZOOKEEPER-1783. Distinguish initial configuration from first established
  307. configuration (shralex via breed)
  308. ZOOKEEPER-1812. ZooInspector reconnection always fails if first
  309. connection fails (Benjamin Jaton via phunt)
  310. ZOOKEEPER-1815. Tolerate incorrectly set system hostname in tests
  311. (some one via michim)
  312. ZOOKEEPER-1821. very ugly warning when compiling load_gen.c
  313. (german blanco via fpj)
  314. ZOOKEEPER-1632. fix memory leaks in cli_st (fpj via michim)
  315. ZOOKEEPER-1459. Standalone ZooKeeperServer is not closing
  316. the transaction log files on shutdown (Rakesh R via fpj)
  317. ZOOKEEPER-1019. zkfuse doesn't list dependency on boost in README
  318. (Raul Gutierrez Segales via michim)
  319. ZOOKEEPER-1834. Catch IOException in FileTxnLog (fpj via michim)
  320. ZOOKEEPER-1382. Zookeeper server holds onto dead/expired session ids in the watch data structures
  321. (Germán Blanco and Michael Morello via camille)
  322. ZOOKEEPER-1839. Deadlock in NettyServerCnxn (Rakesh R via michim)
  323. ZOOKEEPER-1622. session ids will be negative in the year 2022
  324. (Eric Newton via phunt)
  325. ZOOKEEPER-1756. zookeeper_interest() in C client can return a timeval of 0
  326. (Eric Lindvall via michim)
  327. ZOOKEEPER-1388. Client side 'PathValidation' is missing for the
  328. multi-transaction api. (Rakesh R via marshallm, phunt)
  329. ZOOKEEPER-1849. Need to properly tear down tests in various cases
  330. (Germán Blanco via fpj)
  331. ZOOKEEPER-1179. NettyServerCnxn does not properly close socket on
  332. 4 letter word requests (Rakesh R, Germán Blanco via fpj)
  333. ZOOKEEPER-1852. ServerCnxnFactory instance is not properly
  334. cleanedup (Rakesh R via fpj)
  335. ZOOKEEPER-1414. QuorumPeerMainTest.testQuorum, testBadPackets are failing
  336. intermittently (Rakesh R via michim)
  337. ZOOKEEPER-1057. zookeeper c-client, connection to offline server fails to
  338. successfully fallback to second zk host (Germán Blanco via michim)
  339. ZOOKEEPER-1857. PrepRequestProcessotTest doesn't shutdown ZooKeeper server
  340. (Germán Blanco via michim)
  341. ZOOKEEPER-1860. Async versions of reconfig don't actually throw
  342. KeeperException nor InterruptedException (Raul Gutierrez Segales via phunt)
  343. ZOOKEEPER-1837. Fix JMXEnv checks (potential race conditions)
  344. (Germán Blanco via fpj)
  345. ZOOKEEPER-1858. JMX checks - potential race conditions while stopping
  346. and starting server (Rakesh R via fpj)
  347. ZOOKEEPER-1867. Bug in ZkDatabaseCorruptionTest (fpj)
  348. ZOOKEEPER-1573. Unable to load database due to missing parent node
  349. (Vinayakumar B via phunt, fpj)
  350. ZOOKEEPER-1811. The ZooKeeperSaslClient service name principal is
  351. hardcoded to "zookeeper" (Harsh J via phunt)
  352. ZOOKEEPER-1874. Add proper teardown/cleanups in ReconfigTest to shutdown
  353. quorumpeer (Rakesh R and Germán Blanco via michim)
  354. ZOOKEEPER-1873. Unnecessarily InstanceNotFoundException is coming when
  355. unregister failed jmxbeans (Rakesh R via michim)
  356. ZOOKEEPER-1844. TruncateTest fails on windows (Rakesh R via fpj)
  357. ZOOKEEPER-1861. ConcurrentHashMap isn't used properly in QuorumCnxManager
  358. (Ted Yu via camille)
  359. ZOOKEEPER-1755. Concurrent operations of four letter 'dump' ephemeral
  360. command and killSession causing NPE (Rakesh R via camille)
  361. ZOOKEEPER-1779. ReconfigTest littering the source root with test files
  362. (Abhiraj Butala via michim)
  363. ZOOKEEPER-1888. ZkCli.cmd commands fail with "'java' is not recognized as an
  364. internal or external command" (Ivan Mitic via michim)
  365. ZOOKEEPER-1662. Fix to two small bugs in ReconfigTest.testPortChange()
  366. (Alexander Shraer via michim)
  367. ZOOKEEPER-1883. C client unit test failures (Raul Gutierrez Segales via
  368. michim)
  369. ZOOKEEPER-1878. Inconsistent behavior in autocreation of dataDir and
  370. dataLogDir (Rakesh R via michim)
  371. ZOOKEEPER-1862. ServerCnxnTest.testServerCnxnExpiry is intermittently failing
  372. (Rakesh R via michim)
  373. ZOOKEEPER-1901. [JDK8] Sort children for comparison in AsyncOps tests
  374. (Andrew Purtell via michim)
  375. ZOOKEEPER-1894. ObserverTest.testObserver fails consistently. (michim via camille)
  376. ZOOKEEPER-1263. fix handling of min/max session timeout value initialization
  377. (Rakesh R via michim)
  378. ZOOKEEPER-1904. WatcherTest#testWatchAutoResetWithPending is failing
  379. (Rakesh R via michim)
  380. ZOOKEEPER-1725. Zookeeper Dynamic Conf writes out hostnames when IPs are
  381. supplied (Alexander Shraer via michim)
  382. ZOOKEEPER-1906. zkpython: invalid data in GetData for empty node
  383. (Nikita Vetoshkin via michim)
  384. IMPROVEMENTS:
  385. ZOOKEEPER-1170. Fix compiler (eclipse) warnings: unused imports,
  386. unused variables, missing generics (Thomas Koch via phunt)
  387. ZOOKEEPER-96. The jute parser should get generated from the jj files
  388. instead of checking in the generated sources (Thomas Koch via phunt)
  389. ZOOKEEPER-1175. DataNode references parent node for no reason
  390. (Thomas Koch via phunt)
  391. ZOOKEEPER-899. Update Netty version in trunk to 3.2.2
  392. (Thomas Koch via phunt)
  393. ZOOKEEPER-1182. Make findbugs usable in Eclipse (Thomas Koch via phunt)
  394. ZOOKEEPER-1184. jute generated files are not being cleaned up via "ant clean"
  395. (Thomas Koch via phunt)
  396. ZOOKEEPER-1176. Remove dead code and basic cleanup in DataTree
  397. (Thomas Koch via phunt)
  398. ZOOKEEPER-556. Startup messages should account for common error of
  399. missing leading slash in config files (Thomas Koch via phunt)
  400. ZOOKEEPER-1155. Add windows automated builds (CI) for zookeeper c client bindings. (Dheeraj Agrawal via camille)
  401. ZOOKEEPER-1226. extract version check in separate method in PrepRequestProcessor (Thomas Koch via camille)
  402. ZOOKEEPER-1193. Remove upgrade code (Thomas Koch via phunt)
  403. ZOOKEEPER-1221. Provide accessors for Request.{hdr|txn} (Thomas Koch via phunt)
  404. ZOOKEEPER-1216. Fix more eclipse compiler warnings, also in Tests
  405. (Thomas Koch via phunt)
  406. ZOOKEEPER-1254. test correct watch handling with multi ops
  407. (Thomas Koch via phunt)
  408. ZOOKEEPER-1252. remove unused method o.a.z.test.AxyncTest.restart()
  409. (Thomas Koch via phunt)
  410. ZOOKEEPER-1200. Remove obsolete DataTreeBuilder
  411. (Thomas Koch via phunt)
  412. ZOOKEEPER-1247. dead code in PrepRequestProcessor.pRequest multi case
  413. (Thomas Koch via phunt)
  414. ZOOKEEPER-1265. Normalize switch cases lists on request types
  415. (Thomas Koch via phunt)
  416. ZOOKEEPER-1267. closeSession flag in finalRequestProcessor is superfluous
  417. (Thomas Koch via phunt)
  418. ZOOKEEPER-1273. Copy'n'pasted unit test (Thomas Koch via phunt)
  419. ZOOKEEPER-1232. remove unused o.a.z.server.util.Profiler
  420. (Thomas Koch via phunt)
  421. ZOOKEEPER-1253. return value of DataTree.createNode is never used
  422. (Thomas Koch via phunt)
  423. ZOOKEEPER-756. some cleanup and improvements for zooinspector
  424. (Colin Goodheart-Smithe & Thomas Koch via phunt)
  425. ZOOKEEPER-1292. FLETest is flaky (flp via breed)
  426. ZOOKEEPER-1326. The CLI commands "delete" and "rmr" are confusing.
  427. Can we have "rm" + "rmr" instead? (Harsh J via phunt)
  428. ZOOKEEPER-1342. quorum Listener & LearnerCnxAcceptor are missing
  429. thread names (Rakesh R via phunt)
  430. ZOOKEEPER-1229. C client hashtable_remove redundantly calls hash function
  431. (Harsh J via phunt)
  432. ZOOKEEPER-1345. Add a .gitignore file with general exclusions and
  433. Eclipse project files excluded (Harsh J via phunt)
  434. ZOOKEEPER-1293. Remove unused readyToStart from Leader.java
  435. (Alex Shraer via phunt)
  436. ZOOKEEPER-1322. Cleanup/fix logging in Quorum code.
  437. (phunt via mahadev)
  438. ZOOKEEPER-1321. Add number of client connections metric in JMX and
  439. srvr. (Neha Narkhede via camille)
  440. ZOOKEEPER-1389. it would be nice if start-foreground used exec $JAVA
  441. in order to get rid of the intermediate shell process
  442. (Roman Shaposhnik via phunt)
  443. ZOOKEEPER-1161. Provide an option for disabling auto-creation of the
  444. data directory (phunt via henry)
  445. ZOOKEEPER-1397. Remove BookKeeper documentation links. (flavio via camille)
  446. ZOOKEEPER-1377. add support for dumping a snapshot file content (similar to LogFormatter). (phunt via camille)
  447. ZOOKEEPER-271. Better command line parsing in ZookeeperMain.
  448. (Hartmut Lang via phunt)
  449. ZOOKEEPER-1435. cap space usage of default log4j rolling policy (phunt via henryr)
  450. ZOOKEEPER-1432. Add javadoc and debug logging for checkACL() method in
  451. PrepRequestProcessor (Eugene Koontz via michim)
  452. ZOOKEEPER-1411. Consolidate membership management, distinguish between static and dynamic configuration parameters (Alex Shraer via breed)
  453. ZOOKEEPER-1451. C API improperly logs getaddrinfo failures on Linux when using glibc (Stephen Tyree via michim)
  454. ZOOKEEPER-1440. Spurious log error messages when QuorumCnxManager is shutting
  455. down (Jordan Zimmerman via michim)
  456. ZOOKEEPER-1454. Document how to run autoreconf if cppunit is
  457. installed in a non-standard directory (Michi Mutsuzaki via phunt)
  458. ZOOKEEPER-1503. remove redundant JAAS configuration code in SaslAuthTest and
  459. SaslAuthFailTest (Eugene Koontz via phunt)
  460. ZOOKEEPER-1510. Should not log SASL errors for non-secure usage
  461. (Todd Lipcon via phunt)
  462. ZOOKEEPER-1497. Allow server-side SASL login with JAAS configuration
  463. to be programmatically set (rather than only by reading JAAS
  464. configuration file) (Matteo Bertozzi via phunt)
  465. ZOOKEEPER-1238. Linger time should be -1 for Netty sockets. (Skye
  466. W-M via henryr)
  467. ZOOKEEPER-1505. Multi-thread CommitProcessor (Jay Shrauner via phunt)
  468. ZOOKEEPER-1564. Allow JUnit test build with IBM Java
  469. (Paulo Ricardo Paz Vital via phunt)
  470. ZOOKEEPER-1598. Ability to support more digits in the version string
  471. (Raja Aluri via phunt)
  472. ZOOKEEPER-721. Minor cleanup related to the log4j version change
  473. from 1.2.15 -> 1.2.16 (Sean Busbey via phunt)
  474. ZOOKEEPER-1583. Document maxClientCnxns in conf/zoo_sample.cfg
  475. (Christopher Tubbs via phunt)
  476. ZOOKEEPER-1584. Adding mvn-install target for deploying the
  477. zookeeper artifacts to .m2 repository (Ashish Singh via phunt)
  478. ZOOKEEPER-1602. a change to QuorumPeerConfig's API broke
  479. compatibility with HBase (Alexander Shraer via phunt)
  480. ZOOKEEPER-1335. Add support for --config to zkEnv.sh to specify a config
  481. directory different than what is expected (Arpit Gupta via mahadev)
  482. ZOOKEEPER-1504. Multi-thread NIOServerCnxn (Jay Shrauner via phunt)
  483. ZOOKEEPER-1297. Add stat information to create() call
  484. (Lenni Kuff via phunt)
  485. ZOOKEEPER-1535. ZK Shell/Cli re-executes last command on exit (Edward Ribeiro via camille)
  486. ZOOKEEPER-1619. Allow spaces in URL (Edward Ribeiro via phunt)
  487. ZOOKEEPER-1615. minor typos in ZooKeeper Programmer's Guide web page
  488. (Evan Zacks via phunt)
  489. ZOOKEEPER-1601. document changes for multi-threaded CommitProcessor
  490. and NIOServerCnxn (Thawan Kooburat via phunt)
  491. ZOOKEEPER-1643. Windows: fetch_and_add not 64bit-compatible, may not be
  492. correct (Erik Anderson via michim)
  493. ZOOKEEPER-1714 perl client segfaults if ZOO_READ_ACL_UNSAFE constant is used
  494. (Botond Hejj via camille)
  495. ZOOKEEPER-1719. zkCli.sh, zkServer.sh and zkEnv.sh regression caused by ZOOKEEPER-1663
  496. (Marshall McMullen via camille)
  497. ZOOKEEPER-1413. Use on-disk transaction log for learner sync up (thawan)
  498. ZOOKEEPER-1400. Allow logging via callback instead of raw FILE pointer (michi via fpj)
  499. ZOOKEEPER-1679. c client: use -Wdeclaration-after-statement (michi via fpj)
  500. ZOOKEEPER-1750 Race condition producing NPE in NIOServerCnxn.toString
  501. (Rakesh R via michim)
  502. ZOOKEEPER-1759. Adding ability to allow READ operations for authenticated users,
  503. versus keeping ACLs wide open for READ. (Yuliya Feldman via camille)
  504. ZOOKEEPER-1552. Enable sync request processor in Observer (thawan, fpj)
  505. ZOOKEEPER-1758. Add documentation for zookeeper.observer.syncEnabled flag
  506. (thawan, fpj via thawan)
  507. ZOOKEEPER-1771. ZooInspector authentication (Benjamin Jaton via phunt)
  508. ZOOKEEPER-1509. Please update documentation to reflect updated
  509. FreeBSD support (George Neville-Neil via phunt)
  510. ZOOKEEPER-1627. Add org.apache.zookeeper.common to exported packages
  511. in OSGi MANIFEST (Arnoud Glimmerveen via phunt)
  512. ZOOKEEPER-1715. Upgrade netty version (Sean Bridges via phunt)
  513. ZOOKEEPER-1666. Avoid Reverse DNS lookup if the hostname in
  514. connection string is literal IP address. (George Cao via camille)
  515. ZOOKEEPER-1786. ZooKeeper data model documentation is incorrect
  516. (Niraj Tolia via fpj)
  517. ZOOKEEPER-1430. add maven deploy support to the build
  518. (Giridharan Kesavan via phunt)
  519. ZOOKEEPER-1440. Spurious log error messages when QuorumCnxManager is shutting
  520. down (Jordan Zimmerman via michim)
  521. ZOOKEEPER-1638. Redundant zk.getZKDatabase().clear(); (neil bhakta via michim)
  522. ZOOKEEPER-1796. Move common code from {Follower, Observer}ZooKeeperServer into
  523. LearnerZooKeeperServer (Raul Gutierrez Segales via michim)
  524. ZOOKEEPER-602. log all exceptions not caught by ZK threads (Rakesh R via
  525. michim)
  526. ZOOKEEPER-297. centralize version numbering in the source/build (Diego de
  527. Oliveira via michim)
  528. ZOOKEEPER-1408. CLI: sort output of ls command (Hartmut Lang via michim)
  529. ZOOKEEPER-1219. LeaderElectionSupport recipe is unnecessarily dispatching the
  530. READY_START event even if the ELECTED node stopped/expired simultaneously.
  531. (Rakesh R via michim)
  532. ZOOKEEPER-1728. Better error message when reconfig invoked in standalone mode
  533. (Alexander Shraer via michim)
  534. ZOOKEEPER-1701. When new and old config have the same version, no need to
  535. write new config to disk or create new connections (Alexander Shraer via
  536. michim)
  537. ZOOKEEPER-1730. Make ZooKeeper easier to test - support simulating a session
  538. expiration (Jordan Zimmerman via michim)
  539. headers
  540. Release 3.4.0 -
  541. Non-backward compatible changes:
  542. BUGFIXES:
  543. Backward compatible changes:
  544. BUGFIXES:
  545. ZOOKEEPER-735. cppunit test testipv6 assumes that the machine is ipv6
  546. enabled. (mahadev)
  547. ZOOKEEPER-720. Use zookeeper-{version}-sources.jar instead of
  548. zookeeper-{version}-src.jar to publish sources in the Maven repository
  549. (paolo via phunt)
  550. ZOOKEEPER-722. zkServer.sh uses sh's builtin echo on BSD, behaves
  551. incorrectly. (Ivan Kelly via phunt)
  552. ZOOKEEPER-741. root level create on REST proxy fails (phunt)
  553. ZOOKEEPER-631. zkpython's C code could do with a style clean-up
  554. (henry robinson via phunt)
  555. ZOOKEEPER-746. learner outputs session id to log in dec (phunt via
  556. henryr)
  557. ZOOKEEPER-738. zookeeper.jute.h fails to compile with -pedantic
  558. (Jozef Hatala via phunt)
  559. ZOOKEEPER-734. QuorumPeerTestBase.java and ZooKeeperServerMainTest.java
  560. do not handle windows path correctly (Vishal K via phunt)
  561. ZOOKEEPER-754. numerous misspellings "succesfully"
  562. (Andrei Savu via phunt)
  563. ZOOKEEPER-749. OSGi metadata not included in binary only jar (phunt
  564. via henryr)
  565. ZOOKEEPER-750. move maven artifacts into "dist-maven" subdir of the
  566. release (package target) (phunt via henryr)
  567. ZOOKEEPER-758. zkpython segfaults on invalid acl with missing key
  568. (Kapil Thangavelu via henryr)
  569. ZOOKEEPER-737. some 4 letter words may fail with netcat (nc). (mahadev)
  570. ZOOKEEPER-764. Observer elected leader due to inconsistent voting view
  571. (henry via mahadev)
  572. ZOOKEEPER-763. Deadlock on close w/ zkpython / c client
  573. (henry via phunt)
  574. ZOOKEEPER-774. Recipes tests are slightly outdated: they do not compile
  575. against JUnit 4.8 (Sergey Doroshenko via phunt)
  576. ZOOKEEPER-772. zkpython segfaults when watcher from async get children is
  577. invoked. (henry via phunt)
  578. ZOOKEEPER-636. configure.ac has instructions which override the contents of
  579. CFLAGS and CXXFLAGS. (Maxim P. Dementiev via phunt)
  580. ZOOKEEPER-796. zkServer.sh should support an external PIDFILE variable
  581. (Alex Newman via phunt)
  582. ZOOKEEPER-719. Add throttling to BookKeeper client (fpj via breed)
  583. ZOOKEEPER-814. monitoring scripts are missing apache license headers
  584. (andrei savu via mahadev)
  585. ZOOKEEPER-783. committedLog in ZKDatabase is not properly synchronized
  586. (henry via mahadev)
  587. ZOOKEEPER-790. Last processed zxid set prematurely while establishing
  588. leadership (flavio via mahadev)
  589. ZOOKEEPER-795. eventThread isn't shutdown after a connection
  590. "session expired" event coming (Sergey Doroshenko and Ben via mahadev)
  591. ZOOKEEPER-792. zkpython memory leak (Lei Zhang via henryr)
  592. ZOOKEEPER-854. BookKeeper does not compile due to changes in the ZooKeeper
  593. code (Flavio via mahadev)
  594. ZOOKEEPER-861. Missing the test SSL certificate used for running junit tests.
  595. (erwin tam via mahadev)
  596. ZOOKEEPER-867. ClientTest is failing on hudson - fd cleanup (phunt)
  597. ZOOKEEPER-785. Zookeeper 3.3.1 shouldn't infinite loop if someone creates a
  598. server.0 line (phunt and Andrei Savu via breed)
  599. ZOOKEEPER-785. Zookeeper 3.3.1 shouldn't infinite loop if someone creates a
  600. server.0 line (part 2) (phunt)
  601. ZOOKEEPER-870. Zookeeper trunk build broken. (mahadev via phunt)
  602. ZOOKEEPER-831. BookKeeper: Throttling improved for reads (breed via fpj)
  603. ZOOKEEPER-846. zookeeper client doesn't shut down cleanly on the close call
  604. (phunt)
  605. ZOOKEEPER-804. c unit tests failing due to "assertion cptr failed" (michi
  606. mutsuzaki via mahadev)
  607. ZOOKEEPER-844. handle auth failure in java client
  608. (Camille Fournier via phunt)
  609. ZOOKEEPER-822. Leader election taking a long time to complete
  610. (Vishal K via phunt)
  611. ZOOKEEPER-866. Hedwig Server stays in "disconnected" state when
  612. connection to ZK dies but gets reconnected (erwin tam via breed)
  613. ZOOKEEPER-881. ZooKeeperServer.loadData loads database twice
  614. (jared cantwell via breed)
  615. ZOOKEEPER-855. clientPortBindAddress should be clientPortAddress
  616. (Jared Cantwell via fpj)
  617. ZOOKEEPER-888. c-client / zkpython: Double free corruption on
  618. node watcher (Austin Shoemaker via henryr)
  619. ZOOKEEPER-893. ZooKeeper high cpu usage when invalid requests
  620. (Thijs Terlouw via phunt)
  621. ZOOKEEPER-804. c unit tests failing due to "assertion cptr failed"
  622. (second try - Jared Cantwell via phunt)
  623. ZOOKEEPER-820. update c unit tests to ensure "zombie" java server
  624. processes don't cause failure (Michi Mutsuzaki via phunt)
  625. ZOOKEEPER-794. Callbacks are not invoked when the client is closed
  626. (Alexis Midon via phunt)
  627. ZOOKEEPER-800. zoo_add_auth returns ZOK if zookeeper handle is in
  628. ZOO_CLOSED_STATE (michi mutsuzaki via mahadev konar)
  629. ZOOKEEPER-904. super digest is not actually acting as a full superuser
  630. (Camille Fournier via mahadev)
  631. ZOOKEEPER-897. C Client seg faults during close (jared cantwell via mahadev)
  632. ZOOKEEPER-898. C Client might not cleanup correctly during close
  633. (jared cantwell via mahadev)
  634. ZOOKEEPER-907. Spurious "KeeperErrorCode = Session moved" messages (vishal k via breed)
  635. ZOOKEEPER-884. Remove LedgerSequence references from BookKeeper documentation and comments in tests (fpj via breed)
  636. ZOOKEEPER-916. Problem receiving messages from subscribed channels in c++ client (ivan via breed)
  637. ZOOKEEPER-930. Hedwig c++ client uses a non thread safe logging library (ivan via breed)
  638. ZOOKEEPER-900. FLE implementation should be improved to use non-blocking sockets (vishal via fpj)
  639. ZOOKEEPER-937. test -e not available on solaris /bin/sh (Erik Hetzner via mahadev)
  640. ZOOKEEPER-905. enhance zkServer.sh for easier zookeeper automation-izing (Nicholas Harteau via mahadev)
  641. ZOOKEEPER-913. Version parser fails to parse "3.3.2-dev" from build.xml (Anthony Urso and phunt via breed)
  642. ZOOKEEPER-957. zkCleanup.sh doesn't do anything (Ted Dunning via mahadev)
  643. ZOOKEEPER-958. Flag to turn off autoconsume in hedwig c++ client (Ivan Kelly
  644. via mahadev)
  645. ZOOKEEPER-882. Startup loads last transaction from snapshot (j:ared via fpj)
  646. ZOOKEEPER-962. leader/follower coherence issue when follower is receiving a DIFF
  647. (camille fournier via breed)
  648. ZOOKEEPER-902. Fix findbug issue in trunk "Malicious code vulnerability"
  649. (flavio and phunt via phunt)
  650. ZOOKEEPER-985. Test BookieRecoveryTest fails on trunk. (fpj via breed)
  651. ZOOKEEPER-983. running zkServer.sh start remotely using ssh hangs (phunt)
  652. ZOOKEEPER-976. ZooKeeper startup script doesn't use JAVA_HOME (phunt)
  653. ZOOKEEPER-994 "eclipse" target in the build script doesnot include
  654. libraray required for test classes in the classpath (MIS via phunt)
  655. ZOOKEEPER-1013 zkServer.sh usage message should mention all startup options
  656. (eugene koontz via mahadev)
  657. ZOOKEEPER-1007. iarchive leak in C client (jeremy stribling via mahadev)
  658. ZOOKEEPER-993. Code improvements (MIS via fpj)
  659. ZOOKEEPER-1012. support distinct JVMFLAGS for zookeeper server in zkServer.sh
  660. and zookeeper client in zkCli.sh (Eugene Koontz via breed)
  661. ZOOKEEPER-880. QuorumCnxManager$SendWorker grows without bounds (vishal via breed)
  662. ZOOKEEPER-1018. The connection permutation in get_addrs uses a weak and inefficient
  663. shuffle (Stephen Tyree via breed)
  664. ZOOKEEPER-1028. In python bindings, zookeeper.set2() should return a stat dict but
  665. instead returns None. (Chris Medaglia and Ivan Kelly via mahadev)
  666. ZOOKEEPER-975. new peer goes in LEADING state even if ensemble is online. (vishal via fpj)
  667. ZOOKEEPER-1049. Session expire/close flooding renders heartbeats to delay significantly.
  668. (chang song via mahadev)
  669. ZOOKEEPER-1033. c client should install includes into INCDIR/zookeeper, not INCDIR/c-client-src
  670. (Nicholas Harteau via mahadev)
  671. ZOOKEEPER-1061. Zookeeper stop fails if start called twice. (Ted Dunning via mahadev)
  672. ZOOKEEPER-1059. stat command isses on non-existing node causes NPE. (Bhallamudi Kamesh via mahadev)
  673. ZOOKEEPER-1058. fix typo in opToString for getData. (camille)
  674. ZOOKEEPER-1046. Creating a new sequential node results in a ZNODEEXISTS error. (Vishal K via camille)
  675. ZOOKEEPER-1069. Calling shutdown() on a QuorumPeer too quickly can lead to a corrupt log. (Vishal K via camille)
  676. ZOOKEEPER-1083. Javadoc for WatchedEvent not being generated. (Ivan Kelly via michim)
  677. ZOOKEEPER-1086. zookeeper test jar has non mavenised dependency. (Ivan Kelly via michim)
  678. ZOOKEEPER-335. zookeeper servers should commit the new leader txn to their logs. (breed)
  679. ZOOKEEPER-1081. modify leader/follower code to correctly deal with new leader (breed)
  680. ZOOKEEPER-1082. modify leader election to correctly take into account current epoch (fpj via breed)
  681. ZOOKEEPER-1060. QuorumPeer takes a long time to shutdown (Vishal via fpj)
  682. ZOOKEEPER-1087. ForceSync VM arguement not working when set to "no" (Nate Putnam via breed)
  683. ZOOKEEPER-1068. Documentation and default config suggest incorrect
  684. location for Zookeeper state (Roman Shaposhnik via phunt)
  685. ZOOKEEPER-1103. In QuorumTest, use the same "for ( .. try { break }
  686. catch { } )" pattern in testFollowersStartAfterLeaders as in
  687. testSessionMove. (Eugene Koontz via phunt)
  688. ZOOKEEPER-1046. Creating a new sequential node results in a ZNODEEXISTS error. (breed via camille)
  689. ZOOKEEPER-1097. Quota is not correctly rehydrated on snapshot reload (camille via henryr)
  690. ZOOKEEPER-1046. Small fix: Creating a new sequential node results in a ZNODEEXISTS error. (Vishal K via camille)
  691. ZOOKEEPER-782. Incorrect C API documentation for Watches. (mahadev via breed)
  692. ZOOKEEPER-1063. Dubious synchronization in Zookeeper and ClientCnxnSocketNIO classes (Yanick Dufresne via breed)
  693. ZOOKEEPER-1124. Multiop submitted to non-leader always fails due to timeout (Marshall McMullen via breed)
  694. ZOOKEEPER-1111. JMXEnv uses System.err instead of logging
  695. (Ivan Kelly via phunt)
  696. ZOOKEEPER-1027. chroot not transparent in zoo_create() (Thijs Terlouw via
  697. mahadev)
  698. ZOOKEEPER-1109. Zookeeper service is down when SyncRequestProcessor meets
  699. any exception. (Laxman via mahadev)
  700. ZOOKEEPER-1134. ClientCnxnSocket string comparison using == rather than equals.
  701. (phunt via mahadev)
  702. ZOOKEEPER-1119. zkServer stop command incorrectly reading comment lines in
  703. zoo.cfg (phunt via mahadev)
  704. ZOOKEEPER-1090. Race condition while taking snapshot can lead to not restoring data tree correctly (Vishal K via breed)
  705. ZOOKEEPER-1138. release audit failing for a number of new files. (phunt via mahadev)
  706. ZOOKEEPER-1139. jenkins is reporting two warnings, fix these (phunt via mahadev)
  707. ZOOKEEPER-1142. incorrect stat output (phunt via mahadev)
  708. ZOOKEEPER-1144. ZooKeeperServer not starting on leader due to a race condition (Vishal K via camille)
  709. ZOOKEEPER-839. deleteRecursive does not belong to the other methods.
  710. (mahadev)
  711. ZOOKEEPER-1146. significant regression in client (c/python) performance.
  712. (phunt via mahadev)
  713. ZOOKEEPER-1150. fix for this patch to compile on windows. (dheeraj
  714. via mahadev)
  715. ZOOKEEPER-1055. check for duplicate ACLs in addACL() and create().
  716. (Eugene Koontz via mahadev)
  717. ZOOKEEPER-1141. zkpython fails tests under python 2.4. (phunt via mahadev)
  718. ZOOKEEPER-1025. zkCli is overly sensitive to to spaces. (Laxman via camille)
  719. ZOOKEEPER-1117. zookeeper 3.3.3 fails to build with gcc >= 4.6.1 on
  720. Debian/Ubuntu (James Page via mahadev)
  721. ZOOKEEPER-1140. server shutdown is not stopping threads. (laxman via mahadev)
  722. ZOOKEEPER-1051. SIGPIPE in Zookeeper 0.3.* when send'ing after
  723. cluster disconnection (Stephen Tyree via mahadev)
  724. ZOOKEEPER-1168. ZooKeeper fails to run with IKVM (Andrew Finnell via phunt)
  725. ZOOKEEPER-1165. better eclipse support in tests (Warren Turkal via phunt)
  726. ZOOKEEPER-1154. Data inconsistency when the node(s) with the highest zxid is not present at the time of leader election. (Vishal Kathuria via camille)
  727. ZOOKEEPER-1156. Log truncation truncating log too much - can cause data loss. (Vishal Kathuria via camille)
  728. ZOOKEEPER-1160. test timeouts are too small (breed via phunt)
  729. ZOOKEEPER-731. Zookeeper#delete , #create - async versions miss a verb in the javadoc. (Thomas Koch via camille)
  730. ZOOKEEPER-1108. Various bugs in zoo_add_auth in C. (Dheeraj Agrawal via mahadev)
  731. ZOOKEEPER-981. Hang in zookeeper_close() in the multi-threaded C client.
  732. (Jeremy Stribling via mahadev)
  733. ZOOKEEPER-1125. Intermittent java core test failures. (Vishar Kher via mahadev)
  734. ZOOKEEPER-961. Watch recovery after disconnection when connection string contains a prefix.
  735. (Matthias Spycher via mahadev)
  736. ZOOKEEPER-1136. NEW_LEADER should be queued not sent to match the Zab 1.0 protocol
  737. on the twiki (breed via mahadev)
  738. ZOOKEEPER-1189. For an invalid snapshot file(less than 10bytes size) RandomAccessFile
  739. stream is leaking. (Rakesh R via mahadev)
  740. ZOOKEEPER-1185. Send AuthFailed event to client if SASL authentication fails.
  741. (Eugene Kuntz via mahadev)
  742. ZOOKEEPER-1181. Fix problems with Kerberos TGT renewal.
  743. (Eugene Koontz via mahadev)
  744. ZOOKEEPER-1268. problems with read only mode, intermittent test failures
  745. and ERRORs in the log (phunt via mahadev)
  746. ZOOKEEPER-1270. testEarlyLeaderAbandonment failing intermittently,
  747. quorum formed, no serving. (Flavio, Camille and Alexander Shraer via mahadev)
  748. ZOOKEEPER-1299. Add winconfig.h file to ignore in release audit. (mahadev)
  749. ZOOKEEPER-1354. AuthTest.testBadAuthThenSendOtherCommands fails intermittently (phunt via camille)
  750. ZOOKEEPER-1417. investigate differences in client last zxid handling btw c and java clients (thawan via camille)
  751. IMPROVEMENTS:
  752. ZOOKEEPER-724. Improve junit test integration - log harness information
  753. (phunt via mahadev)
  754. ZOOKEEPER-766. forrest recipes docs don't mention the lock/queue recipe
  755. implementations available in the release (phunt via mahadev)
  756. ZOOKEEPER-769: Leader can treat observers as quorum members
  757. (Sergey Doroshenko via henryr)
  758. ZOOKEEPER-788: Add server id to message logs
  759. (Ivan Kelly via flavio)
  760. ZOOKEEPER-789. Improve FLE log messages (flavio via phunt)
  761. ZOOKEEPER-798. Fixup loggraph for FLE changes (Ivan Kelly via phunt)
  762. ZOOKEEPER-797 c client source with AI_ADDRCONFIG cannot be compiled with
  763. early glibc (Qian Ye via phunt)
  764. ZOOKEEPER-790. Last processed zxid set prematurely while establishing leadership
  765. (fpj via breed)
  766. ZOOKEEPER-821. Add ZooKeeper version information to zkpython (Rich
  767. Schumacher via mahadev)
  768. ZOOKEEPER-765. Add python example script (Travis and Andrei via mahadev)
  769. ZOOKEEPER-809. Improved REST Interface (Andrei Savu via phunt)
  770. ZOOKEEPER-733. use netty to handle client connections (breed and phunt)
  771. ZOOKEEPER-853. Make zookeeper.is_unrecoverable return True or False
  772. in zkpython (Andrei Savu via henryr)
  773. ZOOKEEPER-864. Hedwig C++ client improvements (Ivan Kelly via breed)
  774. ZOOKEEPER-862. Hedwig created ledgers with hardcoded Bookkeeper ensemble and
  775. quorum size. Make these a server config parameter instead. (Erwin T via breed)
  776. ZOOKEEPER-926. Fork Hadoop common's test-patch.sh and modify for Zookeeper.
  777. (nigel)
  778. ZOOKEEPER-909. Extract NIO specific code from ClientCnxn
  779. (Thomas Koch via phunt)
  780. ZOOKEEPER-908. Remove code duplication and inconsistent naming in
  781. ClientCnxn.Packet creation (Thomas Koch via phunt)
  782. ZOOKEEPER-836. hostlist as string. (Thomas Koch via breed)
  783. ZOOKEEPER-921. zkPython incorrectly checks for existence of required
  784. ACL elements (Nicholas Knight via henryr)
  785. ZOOKEEPER-963. Make Forrest work with JDK6 (Carl Steinbach via henryr)
  786. ZOOKEEPER-500. Async methods shouldnt throw exceptions (fpj via breed)
  787. ZOOKEEPER-977. passing null for path_buffer in zoo_create (breed via mahadev)
  788. ZOOKEEPER-465. Ledger size in bytes. (flavio via mahadev)
  789. ZOOKEEPER-980. allow configuration parameters for log4j.properties
  790. (phunt via mahadev)
  791. ZOOKEEPER-1042. Generate zookeeper test jar for maven installation
  792. (ivan kelly via breed)
  793. ZOOKEEPER-1030: Increase default for maxClientCnxns
  794. (Todd Lipcon via breed/mahadev/phunt)
  795. ZOOKEEPER-850: Switch from log4j to slf4j (Olaf Krische via michim)
  796. ZOOKEEPER-874. FileTxnSnapLog.restore does not call listener (diogo via fpj)
  797. ZOOKEEPER-1052. Findbugs warning in QuorumPeer.ResponderThread.run() (fpj via michim)
  798. ZOOKEEPER-1094. Small improvements to LeaderElection and Vote classes (henryr via breed)
  799. ZOOKEEPER-1074. zkServer.sh is missing nohup/sleep, which are necessary
  800. for remote invocation. (phunt via mahadev)
  801. ZOOKEEPER-965. Need a multi-update command to allow multiple znodes to be updated safely (Marshall McMullen and Ted Dunning via breed)
  802. ZOOKEEPER-1073. address a documentation issue in ZOOKEEPER-1030. (phunt via mahadev)
  803. ZOOKEEPER-1095. Simple leader election recipe
  804. (Eric Sammer via henry and phunt)
  805. ZOOKEEPER-1076. some quorum tests are unnecessarily extending QuorumBase (phunt via mahadev)
  806. ZOOKEEPER-1143. quorum send & recv workers are missing thread names
  807. (phunt via mahadev)
  808. ZOOKEEPER-1104. CLONE - In QuorumTest, use the same "for ( .. try { break }
  809. catch { } )" pattern in testFollowersStartAfterLeaders as in testSessionMove.
  810. (Eugene Koontz via mahadev)
  811. ZOOKEEPER-1034. perl bindings should automatically find the zookeeper
  812. c-client headers (nicholas harteau via mahadev)
  813. ZOOKEEPER-1166. Please add a few svn:ignore properties (via phunt)
  814. ZOOKEEPER-1169. Fix compiler (eclipse) warnings in (generated) jute
  815. code (Thomas Koch via phunt)
  816. ZOOKEEPER-1171. fix build for java 7 (phunt via mahadev)
  817. ZOOKEEPER-1201. Clean SaslServerCallbackHandler.java. (Thomas Koch
  818. via mahadev)
  819. NEW FEATURES:
  820. ZOOKEEPER-729. Java client API to recursively delete a subtree.
  821. (Kay Kay via henry)
  822. ZOOKEEPER-747. Add C# generation to Jute (Eric Hauser via phunt)
  823. ZOOKEEPER-464. Need procedure to garbage collect ledgers
  824. (erwin via fpj)
  825. ZOOKEEPER-773. Log visualisation (Ivan Kelly via phunt)
  826. ZOOKEEPER-744. Add monitoring four-letter word (Andrei Savu via phunt)
  827. ZOOKEEPER-712. Bookie recovery. (erwin tam via breed)
  828. ZOOKEEPER-799. Add tools and recipes for monitoring as a contrib
  829. (Andrei Savu via phunt)
  830. ZOOKEEPER-808. Web-based Administrative Interface
  831. (Andrei Savu via phunt)
  832. ZOOKEEPER-775. A large scale pub/sub system (Erwin, Ivan and Ben via
  833. mahadev)
  834. ZOOKEEPER-1020. Implement function in C client to determine which host you're currently connected to. (stephen tyree via breed)
  835. ZOOKEEPER-1038. Move bookkeeper and hedwig code in subversion (breed)
  836. ZOOKEEPER-784. Server-side functionality for read-only mode (Sergey Doroshenko via henryr)
  837. ZOOKEEPER-992. MT Native Version of Windows C Client (Dheeraj Agrawal via michim)
  838. ZOOKEEPER-938. Support Kerberos authentication of clients. (Eugene Koontz
  839. via mahadev)
  840. ZOOKEEPER-1152. Exceptions thrown from handleAuthentication can cause buffer corruption issues in NIOServer. (camille via breed)
  841. ZOOKEEPER-999. Create an package integration project (Eric Yang via phunt)
  842. ZOOKEEPER-1107. automating log and snapshot cleaning (Laxman via phunt)
  843. DEPRECATION:
  844. ZOOKEEPER-1153. Deprecate AuthFLE and LE. (Flavio Junqueira via mahadev)
  845. Release 3.3.0 - 2010-03-24
  846. Non-backward compatible changes:
  847. BUGFIXES:
  848. Backward compatible changes:
  849. BUGFIXES:
  850. ZOOKEEPER-59. Synchronized block in NIOServerCnxn (fpj via breed)
  851. ZOOKEEPER-524. DBSizeTest is not really testing anything (breed)
  852. ZOOKEEPER-469. make sure CPPUNIT_CFLAGS isn't overwritten
  853. (chris via mahadev)
  854. ZOOKEEPER-471. update zkperl for 3.2.x branch (chris via mahadev)
  855. ZOOKEEPER-470. include unistd.h for sleep() in c tests (chris via mahadev)
  856. ZOOKEEPR-460. bad testRetry in cppunit tests (hudson failure)
  857. (giri via mahadev)
  858. ZOOKEEPER-467. Change log level in BookieHandle. (flavio via mahadev)
  859. ZOOKEEPER-482. ignore sigpipe in testRetry to avoid silent immediate
  860. failure. (chris via mahadev)
  861. ZOOKEEPER-487. setdata on root (/) crashes the servers (mahadev via phunt)
  862. ZOOKEEPER-457. Make ZookeeperMain public, support for HBase (and other)
  863. embedded clients (ryan rawson via phunt)
  864. ZOOKEEPER-481. Add lastMessageSent to QuorumCnxManager. (flavio via mahadev)
  865. ZOOKEEPER-479. QuorumHierarchical does not count groups correctly
  866. (flavio via mahadev)
  867. ZOOKEEPER-466. crash on zookeeper_close() when using auth with empty cert
  868. (Chris Darroch via phunt)
  869. ZOOKEEPER-480. FLE should perform leader check when node is not leading and
  870. add vote of follower (flavio via mahadev)
  871. ZOOKEEPER-491. Prevent zero-weight servers from being elected.
  872. (flavio via mahadev)
  873. ZOOKEEPER-447. zkServer.sh doesn't allow different config files to be
  874. specified on the command line (henry robinson via phunt)
  875. ZOOKEEPER-493. patch for command line setquota (steve bendiola via phunt)
  876. ZOOKEEPER-311. handle small path lengths in zoo_create()
  877. (chris barroch via breed)
  878. ZOOKEEPER-484. Clients get SESSION MOVED exception when switching from
  879. follower to a leader. (mahadev)
  880. ZOOKEEPER-490. the java docs for session creation are misleading/incomplete
  881. (phunt)
  882. ZOOKEEPER-501. CnxManagerTest failed on hudson. (flavio via mahadev)
  883. ZOOKEEPER-499. electionAlg should default to FLE (3) - regression
  884. (phunt via mahadev)
  885. ZOOKEEPER-477. zkCleanup.sh is flaky (fernando via mahadev)
  886. ZOOKEEPER-498. Unending Leader Elections : WAN configuration
  887. (flavio via mahadev)
  888. ZOOKEEPER-508. proposals and commits for DIFF and Truncate messages from the
  889. leader to the followers is buggy. (mahadev and ben via mahadev)
  890. ZOOKEEPER-518. DEBUG message for outstanding proposals in leader should be
  891. moved to trace. (phunt)
  892. ZOOKEEPER-533. ant error running clean twice (phunt via mahadev)
  893. ZOOKEEPER-535. ivy task does not enjoy being defined twice
  894. (build error) (phunt via mahadev)
  895. ZOOKEEPER-420. build/test should not require install in zkpython
  896. (henry robinson via phunt)
  897. ZOOKEEPER-538. zookeeper.async causes python to segfault
  898. (henry robinson via phunt)
  899. ZOOKEEPER-542. c-client can spin when server unresponsive (Christian
  900. Wiedmann via mahadev)
  901. ZOOKEEEPER-510. zkpython lumps all exceptions as IOError, needs specialized
  902. exceptions for KeeperException types (henry & pat via mahadev)
  903. ZOOKEEPER-541. zkpython limited to 256 handles (henry robinson via phunt)
  904. ZOOKEEPER-554. zkpython can segfault when statting a deleted node
  905. (henry robinson via phunt)
  906. ZOOKEEPER-512. FLE election fails to elect leader (flavio via mahadev)
  907. ZOOKEEPER-563. ant test for recipes is broken. (mahadev via phunt)
  908. ZOOKEEPER-562. c client can flood server with pings if tcp send queue
  909. filled. (ben reed via mahadev)
  910. ZOOKEEPER-537. The zookeeper jar includes the java source files
  911. (Thomas Dudziak via phunt)
  912. ZOOKEEPER-551. unnecessary SetWatches message on new session.
  913. (phunt via flavio)
  914. ZOOKEEPER-566. "reqs" four letter word (command port) returns no information
  915. (phunt via breed)
  916. ZOOKEEPER-567. javadoc for getchildren2 needs to mention "new in 3.3.0"
  917. (phunt via breed)
  918. ZOOKEEPER-547. Sanity check in QuorumCnxn Manager and quorum communication
  919. port. (mahadev via breed)
  920. ZOOKEEPER-532. java compiler should be target Java 1.5
  921. (hiram chirino and phunt via breed)
  922. ZOOKEEPER-519. Followerhandler should close the socket if it gets an exception
  923. on a write. (mahadev via breed)
  924. ZOOKEEPER-570. AsyncHammerTest is broken, callbacks need to validate rc
  925. parameter (phunt via breed)
  926. ZOOKEEPER-3. syncLimit has slightly different comments in the class header,
  927. and > inline with the variable. (mahadev via breed)
  928. ZOOKEEPER-576. docs need to be updated for session moved exception and how
  929. to handle it (breed via phunt)
  930. ZOOKEEPER-582. ZooKeeper can revert to old data when a snapshot is created
  931. outside of normal processing (ben reed and mahadev via mahadev)
  932. ZOOKEEPER-597. ASyncHammerTest is failing intermittently on hudson trunk
  933. (Patrick Hunt via mahadev)
  934. ZOOKEEPER-598. LearnerHandler is misspelt in the thread's constructor
  935. (Henry Robinson via fpj)
  936. ZOOKEEPER-597. ASyncHammerTest is failing intermittently on hudson trunk (take 2)
  937. (breed)
  938. ZOOKEEPER-597. ASyncHammerTest is failing intermittently on hudson trunk
  939. (take 3) (phunt via mahadev)
  940. ZOOKEEPER-597. ASyncHammerTest is failing intermittently on hudson trunk
  941. (take 4) (breed via mahadev)
  942. ZOOKEEPER-597. ASyncHammerTest is failing intermittently on hudson trunk
  943. (take 5) (mahadev)
  944. ZOOKEEPER-611. hudson build failiure (mahadev)
  945. ZOOKEEPER-611. hudson build failure (take 2) (mahadev)
  946. ZOOKEEPER-615. wrong javadoc for create with a sequence flag
  947. (mahadev via breed)
  948. ZOOKEEPER-588. remove unnecessary/annoying log of tostring error in
  949. Request.toString() (phunt via breed)
  950. ZOOKEEPER-587. client should log timeout negotiated with server
  951. (phunt via mahadev)
  952. ZOOKEEPER-610. cleanup final fields, esp those used for locking
  953. (phunt via henry)
  954. ZOOKEEPER-614. Improper synchronisation in getClientCnxnCount
  955. (henry via mahadev)
  956. ZOOKEEPER-609. ObserverTest failure "zk should not be connected expected not
  957. same" (henry robinson via phunt)
  958. ZOOKEEPER-630. Trunk has duplicate ObserverTest.java files
  959. (henry robinson via phunt)
  960. ZOOKEEPER-627. zkpython arbitrarily restricts the size of a 'get' to 512
  961. bytes (henry robinson via mahadev)
  962. ZOOKEEPER-534. The test target in contib/bookkeeper does not depend on jar
  963. target. (phunt via mahadev)
  964. ZOOKEEPER-623. ClientBase in bookkeeper.util requires junit (fpj via breed)
  965. ZOOKEEPER-600. TODO pondering about allocation behavior in zkpython may be
  966. removed (gustavo via mahadev)
  967. ZOOKEEPER-596. The last logged zxid calculated by zookeeper servers could
  968. cause problems in leader election if data gets corrupted. (mahadev)
  969. ZOOKEEPER-637. Trunk build is failing (fpj via breed)
  970. ZOOKEEPER-637. Trunk build is failing - second patch (breed via fpj)
  971. ZOOKEEPER-644. Nightly build failed on hudson. (pat via mahadev)
  972. ZOOKEEPER-651: Log exception trace in QuorumCnxManager.SendWorker
  973. (flavio via henry)
  974. ZOOKEEPER-608. Receipt of ACK from observer should not be logged as ERROR
  975. (henry via mahadev)
  976. ZOOKEEPER-647. hudson failure in testLeaderShutdown (flavio via mahadev)
  977. ZOOKEEPER-574. the documentation on snapcount in the admin guide has the
  978. wrong default (phunt via mahadev)
  979. ZOOKEEPER-656. SledgeHammer test - thread.run() deprecated (kay kay via mahadev)
  980. ZOOKEEPER-413. two flaws need addressing in the c tests that can cause false
  981. positive failures (phunt via mahadev)
  982. ZOOKEEPER-495. c client logs an invalid error when zookeeper_init is called
  983. with chroot (phunt via mahadev)
  984. ZOOKEEPER-589. When create a znode, a NULL ACL parameter cannot be accepted.
  985. (breed via mahadev)
  986. ZOOKEEPER-673. Fix observer documentation regarding leader election (flavio
  987. via mahadev)
  988. ZOOKEEPER-672. typo nits across documentation (Kay Kay via mahadev)
  989. ZOOKEEPER-668. Close method in LedgerInputStream doesn't do anything (flavio
  990. via mahadev)
  991. ZOOKEEPER-569. Failure of elected leader can lead to never-ending leader
  992. election (henry via flavio)
  993. ZOOKEEPER-669. watchedevent tostring should clearly output the
  994. state/type/path (phunt via mahadev)
  995. ZOOKEEPER-683. LogFormatter fails to parse transactional log files (phunt
  996. via mahadev)
  997. ZOOKEEPER-682. Event is not processed when the watcher is set to watch "/"
  998. if chrooted (Scott Wang via mahadev)
  999. ZOOKEEPER-687. LENonterminatetest fails on some machines. (mahadev)
  1000. ZOOKEEPER-681. Minor doc issue re unset maxClientCnxns (phunt via mahadev)
  1001. ZOOKEEPER-622. Test for pending watches in send_set_watches should be moved
  1002. (ben and steven via mahadev)
  1003. ZOOKEEPER-689. release build broken - ivysettings.xml not copied during
  1004. "package" (phunt via mahadev)
  1005. ZOOKEEPER-59. Synchronized block in NIOServerCnxn (flavio via mahadev)
  1006. ZOOKEEPER-691. Interface changed for NIOServer.Factory (breed via mahadev)
  1007. ZOOKEEPER-685. Race in LENonTerminateTest (henry via breed)
  1008. ZOOKEEPER-677. c client doesn't allow ipv6 numeric connect string
  1009. (breed & phunt & mahadev via breed)
  1010. ZOOKEEPER-693. TestObserver stuck in tight notification loop in FLE
  1011. (flavio via phunt)
  1012. ZOOKEEPER-696. NPE in the hudson logs, seems nioservercnxn closed twice
  1013. (phunt via mahadev)
  1014. ZOOKEEPER-511. bad error handling in FollowerHandler.sendPackets
  1015. (mahadev via flavio)
  1016. ZOOKEEPER-604. zk needs to prevent export of any symbol not listed in their
  1017. api (mahadev)
  1018. ZOOKEEPER-121. SyncRequestProcessor is not closing log stream during
  1019. shutdown (mahadev)
  1020. ZOOKEEPER-698. intermittent JMX test failures due to not verifying QuorumPeer
  1021. shutdown (phunt)
  1022. ZOOKEEPER-121_2. SyncRequestProcessor is not closing log stream during
  1023. shutdown (breed via mahadev)
  1024. ZOOKEEPER-121_3. SyncRequestProcessor is not closing log stream during
  1025. shutdown (mahadev via phunt)
  1026. ZOOKEEPER-121_4. SyncRequestProcessor is not closing log stream during
  1027. shutdown (mahadev via breed)
  1028. ZOOKEEPER-586. c client does not compile under cygwin (phunt, mahadev, breed via breed)
  1029. ZOOKEEPER-624. The C Client cause core dump when receive error data from
  1030. Zookeeper Server (mahadev)
  1031. ZOOKEEPER-591. The C Client cannot exit properly in some situation (mahadev)
  1032. ZOOKEEPER-591_2. The C Client cannot exit properly in some situation
  1033. (mahadev via phunt)
  1034. ZOOKEEPER-709. bookkeeper build failing with missing factory
  1035. (phunt)
  1036. ZOOKEEPER-708. zkpython failing due to undefined symbol
  1037. deallocate_String_vector (mahadev via phunt)
  1038. ZOOKEEPER-436. Bookies should auto register to ZooKeeper (erwin tam & fpj via breed)
  1039. ZOOKEEPER-710. permanent ZSESSIONMOVED error after client app reconnects to zookeeper cluster (phunt via breed)
  1040. ZOOKEEPER-718. the fatjar is missing libraries (ben via mahadev)
  1041. ZOOKEEPER-717. add a preferred list to the instancemanager (breed via
  1042. mahadev)
  1043. IMPROVEMENTS:
  1044. ZOOKEEPER-473. cleanup junit tests to eliminate false positives due to
  1045. "socket reuse" and failure to close client (phunt via mahadev)
  1046. ZOOKEEPER-488. Fix zkServer.sh to add clover.jar in classpath
  1047. (Giridharan Kesavan via gkesavan)
  1048. ZOOKEEPER-516. add support for 10 minute test ie "pre-commit" test (phunt)
  1049. ZOOKEEPER-529. Use Ivy to pull dependencies and also generate pom (phunt
  1050. via mahadev)
  1051. ZOOKEEPER-530. Memory corruption: Zookeeper c client IPv6 implementation
  1052. does not honor struct sockaddr_in6 size (isabel drost via mahadev)
  1053. ZOOKEEPER-549. Refactor Followers and related classes into a Peer->Follower
  1054. hierarchy in preparation for Observers (henry robinson via mahadev)
  1055. ZOOKEEPER-472. Making DataNode not instantiate a HashMap when the node is
  1056. ephmeral (Erik Holstad via mahadev)
  1057. ZOOKEEPER-425. Add OSGi metadata to zookeeper.jar (david bosschaert via breed)
  1058. ZOOKEEPER-599. Changes to FLE and QuorumCnxManager to support Observers
  1059. (fpj via breed)
  1060. ZOOKEEPER-506. QuorumBase should use default leader election (fpj via breed)
  1061. ZOOKEEPER-633. Fetch netty using ivy for bookkeeper (giri via fpj)
  1062. ZOOKEEPER-544. improve client testability - allow test client to access
  1063. connected server location (phunt via breed)
  1064. ZOOKEEPER-426. Windows versions of zookeeper scripts
  1065. (David Bosschaert via breed)
  1066. ZOOKEEPER-638. upgrade ivy to 2.1.0 final from 2.1.0 release
  1067. candidate (phunt via breed)
  1068. ZOOKEEPER-648. Fix releaseaudit warning count to zero (phunt via henry)
  1069. ZOOKEEPER-626. ensure the c/java cli's print xid/sessionid/etc... in hex
  1070. (pat via mahadev)
  1071. ZOOKEEPER-655. StringBuffer -> StringBuilder - conversion of references as
  1072. necessary (Kay Kay via henry)
  1073. ZOOKEEPER-612. Make Zookeeper C client can be compiled by gcc of early
  1074. version (qian via mahadev)
  1075. ZOOKEEPER-456. CREATOR_ALL_ACL has unnecessary PERMS.ADMIN in the
  1076. declartion. (phunt via mahadev)
  1077. ZOOKEEPER-593. java client api does not allow client to access negotiated
  1078. session timeout (phunt via mahadev)
  1079. ZOOKEEPER-507. BookKeeper client re-write (Utkarsh and ben via mahadev)
  1080. ZOOKEEPER-665. Add BookKeeper streaming documentation (flavio via mahadev)
  1081. ZOOKEEPER-664. BookKeeper API documentation (flavio via mahadev)
  1082. ZOOKEEPER-607. improve bookkeeper overview (flavio via mahadev)
  1083. ZOOKEEPER-485. Need ops documentation that details supervision of ZK server
  1084. processes. (phunt via mahadev)
  1085. ZOOKEEPER-658. update forrest docs - AuthFLE no longer supported (flavio via
  1086. mahadev)
  1087. ZOOKEEPER-640. make build.xml more configurable to ease packaging for linux
  1088. distros (phunt via mahadev)
  1089. ZOOKEEPER-579. zkpython needs more test coverage for ACL code paths (henry
  1090. via mahadev)
  1091. ZOOKEEPER-688. explain session expiration better in the docs & faq (phunt
  1092. via mahadev)
  1093. ZOOKEEPER-663. hudson failure in ZKDatabaseCorruptionTest (mahadev via henryr)
  1094. ZOOKEEPER-543. Tests for ZooKeeper examples (steven via mahadev)
  1095. ZOOKEEPER-692. upgrade junit to latest version (4.8.1) (phunt via mahadev)
  1096. ZOOKEEPER-601. allow configuration of session timeout min/max bounds (phunt
  1097. via mahadev)
  1098. NEW FEATURES:
  1099. ZOOKEEPER-539. generate eclipse project via ant target. (phunt via mahadev)
  1100. ZOOKEEPER-555. Add stat information to GetChildrenResponse. (Arni Jonson and
  1101. phunt via mahadev)
  1102. ZOOKEEPER-550. Java Queue Recipe. (steven cheng via mahadev)
  1103. ZOOKEEPER-368. Observers: core functionality (henry robinson via mahadev)
  1104. ZOOKEEPER-496. zookeeper-tree utility for export, import and incremental
  1105. updates (anirban roy via breed)
  1106. ZOOKEEPER-572. add ability for operator to examine state of watches
  1107. currently registered with a server (phunt via mahadev)
  1108. ZOOKEEPER-678. Gui browser application to view and edit the contents of a
  1109. zookeeper instance (Colin Goodheart-Smithe via phunt)
  1110. ZOOKEEPER-635. Server supports listening on a specified network address (phunt via breed)
  1111. Release 3.2.0 - 2009-06-30
  1112. Non-backward compatible changes:
  1113. BUGFIXES:
  1114. ZOOKEEPER-444. perms definition for PERMS_ALL differ in C and java (mahadev)
  1115. Backward compatible changes:
  1116. BUGFIXES:
  1117. ZOOKEEPER-303. Bin scripts dont work on a Mac. (tom white via mahadev)
  1118. ZOOKEEPER-330. zookeeper standalone server does not startup with just a
  1119. port and datadir. (chris darroch and mahadev)
  1120. ZOOKEEPER-319. add locking around auth info in zhandle_t.
  1121. (chris darroch via mahadev)
  1122. ZOOKEEPER-320. call auth completion in free_completions().
  1123. (chris darroch via mahadev)
  1124. ZOOKEEPER-334. bookkeeper benchmark (testclient.java) has compiling errors.
  1125. (flavio and mahadev)
  1126. ZOOKEEPER-281. autoreconf fails for /zookeeper-3.0.1/src/c/ (phunt)
  1127. ZOOKEEPER-318. remove locking in zk_hashtable.c or add locking in
  1128. collect_keys() (chris darroch via mahadev)
  1129. ZOOKEEPER-333. helgrind thread issues identified in mt c client code
  1130. (mahadev via phunt)
  1131. ZOOKEEPER-309. core dump using zoo_get_acl() (mahadev via phunt)
  1132. ZOOKEEPER-341. regression in QuorumPeerMain,
  1133. tickTime from config is lost, cannot start quorum (phunt via mahadev)
  1134. ZOOKEEPER-360. WeakHashMap in Bookie.java causes NPE (flavio via mahadev)
  1135. ZOOKEEPER-362. Issues with FLENewEpochTest. (fix bug in Fast leader election)
  1136. (flavio via mahadev)
  1137. ZOOKEEPER-363. NPE when recovering ledger with no hint. (flavio via mahadev)
  1138. ZOOKEEPER-370. Fix critical problems reported by findbugs.
  1139. (flavio via mahadev)
  1140. ZOOKEEPER-347. zkfuse uses non-standard String. (patrick hunt via mahadev)
  1141. ZOOKEEPER-355. make validatePath non public in Zookeeper client api.
  1142. (phunt via mahadev)
  1143. ZOOKEEPER-374. Uninitialized struct variable in C causes warning which
  1144. is treated as an error (phunt via mahadev)
  1145. ZOOKEEPER-337. improve logging in leader election lookForLeader method when
  1146. address resolution fails (phunt via mahadev)
  1147. ZOOKEEPER-367. RecoveryTest failure - "unreasonable length" IOException
  1148. (mahadev via phunt)
  1149. ZOOKEEPER-346. remove the kill command fro mthe client port.
  1150. (phunt via mahadev)
  1151. ZOOKEEPER-377. running ant cppunit tests, a failure still results in
  1152. BUILD SUCCESSFUL (giri via mahadev)
  1153. ZOOKEEPER-382. zookeeper cpp tests fails on 64 bit machines with gcc 4.1.2
  1154. (mahadev via phunt)
  1155. ZOOKEEPER-365. javadoc is wrong for setLast in LedgerHandle
  1156. (flavio via phunt)
  1157. ZOOKEEPER-392. Change log4j properties in bookkeeper. (flavio via mahadev)
  1158. ZOOKEEPER-400. Issues with procedure to close ledger. (flavio)
  1159. ZOOKEEPER-405. nullpointer exception in zookeeper java shell.
  1160. (mahadev via breed)
  1161. ZOOKEEPER-410. address all findbugs warnings in client/server classes.
  1162. (phunt via breed)
  1163. ZOOKEEPER-403. cleanup javac compiler warnings. (flavio via breed)
  1164. ZOOKEEPER-407. address all findbugs warnings in
  1165. org.apache.zookeeper.server.quorum.** packages.
  1166. (flavio via breed)
  1167. ZOOKEEPER-411. Building zookeeper fails on RHEL 5 64 bit during test-cppunit
  1168. (mahadev via phunt)
  1169. ZOOKEEPER-402. zookeeper c library segfaults on data for a node in zookeeper
  1170. being null. (mahadev via phunt)
  1171. ZOOKEEPER-415. zookeeper c tests hang. (mahadev via phunt)
  1172. ZOOKEEPER-385. crctest failed on hudson patch test (mahadev via phunt)
  1173. ZOOKEEPER-192. trailing whitespace in config file can cause number format
  1174. exceptions (phunt via breed)
  1175. ZOOKEEPER-409. address all findbugs warnings in jute related classes
  1176. (phunt via breed)
  1177. ZOOKEEPER-416. bookkeeper jar includes unnnecessary files.
  1178. (flavio via mahadev)
  1179. ZOOKEEPER-419. Reference counting bug in Python bindings causes abort errors
  1180. (henry robinson via phunt)
  1181. ZOOKEEPER-421. zkpython run_tests.sh is missing #!
  1182. (henry robinson via phunt)
  1183. ZOOKEEPER-406. address all findbugs warnings in persistence classes.
  1184. (phunt et al via breed)
  1185. ZOOKEEPER-435. allow "super" admin digest based auth to be configurable
  1186. (phunt via breed)
  1187. ZOOKEEPER-375. zoo_add_auth only retains most recent auth on re-sync.
  1188. (mahadev)
  1189. ZOOKEEPER-433. getacl on root znode (/) fails. (phunt via mahadev)
  1190. ZOOKEEPER-408. address all findbugs warnings in persistence classes.
  1191. (phunt, mahadev, flavio via mahadev)
  1192. ZOOKEEPER-427. ZooKeeper server unexpectedly high CPU utilisation
  1193. (Sergey Zhuravlev via breed)
  1194. ZOOKEEPER-446. some traces of the host auth scheme left (breed via mahadev)
  1195. ZOOKEEPER-438. addauth fails to register auth on new client that's not yet
  1196. connected (breed via mahadev)
  1197. ZOOKEEPER-448. png files do nto work with forrest. (mahadev)
  1198. ZOOKEEPER-417. stray message problem when changing servers
  1199. (breed via mahadev)
  1200. ZOOKEEPER-449. sesssionmoved in java code and ZCLOSING in C have the same
  1201. value. (mahadev)
  1202. ZOOKEEPER-452. zookeeper performance graph should have percentage of reads
  1203. rather than percentage of writes - zkperfRW-3.2.jpg (mahadev)
  1204. ZOOKEEPER-450. emphemeral cleanup not happening with session timeout.
  1205. (breed via mahadev)
  1206. ZOOKEEPER-453. Worker is not removed in QuorumCnxManager upon crash.
  1207. (flavio via mahadev)
  1208. ZOOKEEPER-454. allow compilation with jdk1.5 (phunt)
  1209. ZOOKEEPER-455. zookeeper c client crashes with chroot specified in the string.
  1210. (phunt via mahadev)
  1211. ZOOKEEPER-468. avoid compile warning in send_auth_info().
  1212. IMPROVEMENTS:
  1213. ZOOKEEPER-308. improve the atomic broadcast performance 3x.
  1214. (breed via mahadev)
  1215. ZOOKEEPER-326. standalone server ignores tickTime configuration.
  1216. (chris darroch via mahadev)
  1217. ZOOKEEPER-279. Allow specialization of quorum config parsing
  1218. (e.g. variable expansion in zoo.cfg) (Jean-Daniel Cryans via phunt)
  1219. ZOOKEEPER-351. to run checkstyle (giridharan kesavan via mahadev)
  1220. ZOOKEEPER-350. to run rats for releaseaudit.
  1221. (giridharan kesavan via mahadev)
  1222. ZOOKEEPER-352. to add standard ant targets required by test-patch.sh script
  1223. (giridharan kesavan via mahadev)
  1224. ZOOKEEPER-353. javadoc warnings needs to be fixed.
  1225. (giridharan kesavan via mahadev)
  1226. ZOOKEEPER-354. to fix javadoc warning in the source files. (mahadev)
  1227. ZOOKEEPER-349. to automate patch testing. (giridharan kesavan via mahadev)
  1228. ZOOKEEPER-288. Cleanup and fixes to BookKeeper (flavio via mahadev)
  1229. ZOOKEEPER-305. Replace timers with semaphores in FLENewEpochTest.
  1230. (flavio via mahadev)
  1231. ZOOKEEPER-60. Get cppunit tests running as part of Hudson CI.
  1232. (girish via mahadev)
  1233. ZOOKEEPER-343. add tests that specifically verify the zkmain and
  1234. qpmain classes. (phunt via mahadev)
  1235. ZOOKEEPER-361. integrate cppunit testing as part of hudson patch process.
  1236. (giri via mahadev)
  1237. ZOOKEEPER-373. One thread per bookie (flavio via mahadev)
  1238. ZOOKEEPER-384. keeper exceptions missing path (phunt via mahadev)
  1239. ZOOKEEPER-380. bookkeeper should have a streaming api so that its easier to
  1240. store checpoints/snapshots in bookkeeper. (mahadev via flavio)
  1241. ZOOKEEPER-389. add help/usage to the c shell cli.c (phunt via mahadev)
  1242. ZOOKEEPER-376. ant test target re-compiles cppunit code every time
  1243. (phunt via mahadev)
  1244. ZOOKEEPER-391. bookeeper mainline code should not be calling
  1245. printStackTrace. (flavio via mahadev)
  1246. ZOOKEEPER-300. zk jmx code is calling printStackTrace when creating bean
  1247. name (should not be) (phunt via mahadev)
  1248. ZOOKEEPER-94. JMX tests are needed to verify that the JMX MBeans work
  1249. properly (phunt via mahadev)
  1250. ZOOKEEPER-404. nightly build failed on hudson.
  1251. (henry robinson and pat via mahadev)
  1252. ZOOKEEPER-345. the CLIs should allow addAuth to be invoked.
  1253. (henry robinson via breed)
  1254. ZOOKEEPER-292. commit configure scripts (autotools) to svn for c projects and
  1255. include in release (phunt via breed)
  1256. ZOOKEEPER-383. Asynchronous version of createLedger(). (flavio via mahadev)
  1257. ZOOKEEPER-358. Throw exception when ledger does not exist. (flavio via breed)
  1258. ZOOKEEPER-431. Expose methods to ease ZK integration. (Jean-Daniel via breed)
  1259. ZOOKEEPER-396. race condition in zookeeper client library between
  1260. zookeeper_close and zoo_synchronous api. (mahadev)
  1261. ZOOKEEPER-196. doxygen comment for state argument of watcher_fn typedef and
  1262. implementation differ ("...one of the *_STATE constants, otherwise -1")
  1263. (breed via mahadev)
  1264. ZOOKEEPER-336. single bad client can cause server to stop accepting
  1265. connections (henry robinson via breed)
  1266. ZOOKEEPER-434. the java shell should indicate connection status on command
  1267. prompt (henry robinson via breed)
  1268. ZOOKEEPER-437. Variety of Documentation Updates (grant via mahadev)
  1269. ZOOKEEPER-443. trace logging in watch notification not wrapped with
  1270. istraceneabled - inefficient (pat via mahadev)
  1271. ZOOKEEPER-432. Various improvements to zkpython bindings.
  1272. (henry via mahadev)
  1273. ZOOKEEPER-428. logging should be makred as warn rathen than error in
  1274. NIOServerCnxn. (phunt via mahadev)
  1275. ZOOKEEPER-422. Java CLI should support ephemeral and sequential node creation
  1276. (henry via breed)
  1277. ZOOKEEPER-315. add forrest docs for bookkeeper. (flavio via mahadev)
  1278. ZOOKEEPER-329. document how to integrate 3rd party authentication into ZK
  1279. server ACLs. (breed via mahadev)
  1280. ZOOKEEPER-356. Masking bookie failure during writes to a ledger
  1281. (flavio via breed)
  1282. ZOOKEEPER-327. document effects (latency) of storing large amounts of data
  1283. in znodes. (breed via mahadev)
  1284. ZOOKEEPER-264. docs should include a state transition diagram for client
  1285. state (breed via mahadev)
  1286. ZOOKEEPER-440. update the performance documentation in forrest
  1287. (breed via phunt)
  1288. NEW FEATURES:
  1289. ZOOKEEPER-371. jdiff documentation included in build/release (giri via phunt)
  1290. ZOOKEEPER-78. added a high level protocol/feature - for easy Leader
  1291. Election or exclusive Write Lock creation (mahadev via phunt)
  1292. ZOOKEEPER-29. Flexible quorums (flavio via mahadev)
  1293. ZOOKEEPER-378. perl binding for zookeeper (chris darroch via mahadev)
  1294. ZOOKEEPER-386. improve java cli shell. (henry robinson via mahadev)
  1295. ZOOKEEPER-36. REST access to ZooKeeper (phunt via mahadev)
  1296. ZOOKEEPER-395. Python bindings. (henry robinson via mahadev)
  1297. ZOOKEEPER-237. Add a Chroot request (phunt and mahadev)
  1298. Release 3.1.0 - 2009-02-06
  1299. Non-backward compatible changes:
  1300. BUGFIXES:
  1301. ZOOKEEPER-255. zoo_set() api does not return stat datastructure.
  1302. (avery ching via mahadev)
  1303. ZOOKEEPER-246. review error code definition in both source and docs.
  1304. (pat via mahadev)
  1305. Backward compatible changes:
  1306. BUGFIXES:
  1307. ZOOKEEPER-211. Not all Mock tests are working (ben via phunt)
  1308. ZOOKEEPER-223. change default level in root logger to INFO.
  1309. (pat via mahadev)
  1310. ZOOKEEPER-212. fix the snapshot to be asynchronous. (mahadev and ben)
  1311. ZOOKEEPER-213. fix programmer guide C api docs to be in sync with latest
  1312. zookeeper.h (pat via mahadev)
  1313. ZOOKEEPER-219. fix events.poll timeout in watcher test to be longer.
  1314. (pat via mahadev)
  1315. ZOOKEEPER-217. Fix errors in config to be thrown as Exceptions. (mahadev)
  1316. ZOOKEEPER-228. fix apache header missing in DBTest. (mahadev)
  1317. ZOOKEEPER-218. fix the error in the barrier example code. (pat via mahadev)
  1318. ZOOKEEPER-206. documentation tab should contain the version number and
  1319. other small site changes. (pat via mahadev)
  1320. ZOOKEEPER-226. fix exists calls that fail on server if node has null data.
  1321. (mahadev)
  1322. ZOOKEEPER-204. SetWatches needs to be the first message after auth
  1323. messages to the server (ben via mahadev)
  1324. ZOOKEEPER-208. Zookeeper C client uses API that are not thread safe,
  1325. causing crashes when multiple instances are active.
  1326. (austin shoemaker, chris daroch and ben reed via mahadev)
  1327. ZOOKEEPER-227. gcc warning from recordio.h (chris darroch via mahadev)
  1328. ZOOKEEPER-232. fix apache licence header in TestableZookeeper (mahadev)
  1329. ZOOKEEPER-249. QuorumPeer.getClientPort() always returns -1.
  1330. (nitay joffe via mahadev)
  1331. ZOOKEEPER-248. QuorumPeer should use Map interface instead of HashMap
  1332. implementation. (nitay joffe via mahadev)
  1333. ZOOKEEPER-241. Build of a distro fails after clean target is run.
  1334. (patrick hunt via mahadev)
  1335. ZOOKEEPER-245. update readme/quickstart to be release tar, rather than
  1336. source, based (patrick hunt via mahadev)
  1337. ZOOKEEPER-251. NullPointerException stopping and starting Zookeeper servers
  1338. (mahadev via phunt)
  1339. ZOOKEEPER-250. isvalidsnapshot should handle the case of 0 snapshot
  1340. files better. (mahadev via phunt)
  1341. ZOOKEEPER-265. remove (deprecate) unused NoSyncConnected from KeeperState.
  1342. (phunt via mahadev)
  1343. ZOOKEEPER-273. Zookeeper c client build should not depend on CPPUNIT. (pat
  1344. and runping via mahadev)
  1345. ZOOKEEPER-268. tostring on jute generated objects can cause NPE. (pat via mahadev)
  1346. ZOOKEEPER-267. java client incorrectly generating syncdisconnected event when in disconnected state. (pat via breed)
  1347. ZOOKEEPER-263. document connection host:port as comma separated list in forrest docs (pat via breed)
  1348. ZOOKEEPER-275. Bug in FastLeaderElection. (flavio via mahadev)
  1349. ZOOKEEPER-272. getchildren can fail for large number of children. (mahadev)
  1350. ZOOKEEPER-16. Need to do path validation. (pat, mahadev)
  1351. ZOOKEEPER-252. PurgeTxnLog is not handling the new dataDir directory
  1352. structure (mahadev via phunt)
  1353. ZOOKEEPER-291. regression for legacy code using KeeperException.Code
  1354. constants (due to 246). (pat via mahadev)
  1355. ZOOKEEPER-255. zoo_set() api does not return stat datastructure.
  1356. (avery ching via mahadev)
  1357. ZOOKEEPER-293. zoo_set needs to be abi compatible (3.1 changed the
  1358. signature), fix this by adding zoo_set2 (pat via mahadev)
  1359. ZOOKEEPER-302. Quote values in JMX objectnames. (tom and pat via mahadev)
  1360. IMPROVEMENTS:
  1361. ZOOKEEPER-64. Log system env information when initializing server and
  1362. client (pat via mahadev)
  1363. ZOOKEEPER-243. add SEQUENCE flag documentation to the programming guide.
  1364. (patrick hunt via mahadev)
  1365. ZOOKEEPER-161. Content needed: "Designing a ZooKeeper Deployment"
  1366. (breed via phunt)
  1367. ZOOKEEPER-247. fix formatting of C API in ACL section of programmer guide.
  1368. (patrick hunt via mahadev)
  1369. ZOOKEEPER-230. Improvements to FLE. (Flavio via mahadev)
  1370. ZOOKEEPER-225. c client should log an info message in zookeeper_init
  1371. detailing connection parameters. (pat via mahadev)
  1372. ZOOKEEPER-222. print C client log message timestamp in human readable
  1373. form. (pat via mahadev)
  1374. ZOOKEEPER-256. support use of JMX to manage log4j configuration at runtime.
  1375. (pat via mahadev)
  1376. ZOOKEEPER-214. add new "stat reset" command to server admin port.
  1377. (pat via mahadev)
  1378. ZOOKEEPER-258. docs incorrectly state max client timeout as 60 seconds
  1379. (it's based on server ticktime). (phunt via mahadev)
  1380. ZOOKEEPER-135. Fat jar build target. (phunt and breed via mahadev)
  1381. ZOOKEEPER-234. Eliminate using statics to initialize the sever. Should
  1382. allow server to be more embeddable in OSGi enviorments. (phunt)
  1383. ZOOKEEPER-259. cleanup the logging levels used (use the correct level)
  1384. and messages generated. (phunt via breed)
  1385. ZOOKEEPER-210. Require Java 6. (phunt via breed)
  1386. ZOOKEEPER-177. needed: docs for JMX (phunt via mahadev)
  1387. ZOOKEEPER-253. documentation of DataWatcher state transition is misleading
  1388. regarding auto watch reset on reconnect. (phunt via mahadev)
  1389. ZOOKEEPER-269. connectionloss- add more documentation to detail. (phunt and
  1390. flavio via mahadev)
  1391. ZOOKEEPER-260. document the recommended values for server id's
  1392. (mahadev via phunt)
  1393. ZOOKEEPER-215. expand system test environment (breed via phunt)
  1394. ZOOKEEPER-229. improve documentation regarding user's responsibility to
  1395. cleanup datadir (snaps/logs) (mahadev via phunt)
  1396. ZOOKEEPER-69. ZooKeeper logo
  1397. ZOOKEEPER-286. Make GenerateLoad use InstanceContainers. (breed via mahadev)
  1398. ZOOKEEPER-220. programming guide watches section should clarify
  1399. server/clientlib role in data/child watch maint. (breed via phunt)
  1400. ZOOKEEPER-289. add debug messages to nioserver select loop. (mahadev)
  1401. NEW FEATURES:
  1402. ZOOKEEPER-276. Bookkeeper contribution (Flavio and Luca Telloli via mahadev)
  1403. ZOOKEEPER-231. Quotas in ZooKeeper. (mahadev)
  1404. Release 3.0.0 - 2008-10-21
  1405. Non-backward compatible changes:
  1406. ZOOKEEPER-43. Server side of auto reset watches. (breed via mahadev)
  1407. ZOOKEEPER-132. Create Enum to replace CreateFlag in ZooKepper.create
  1408. method (Jakob Homan via phunt)
  1409. ZOOKEEPER-139. Create Enums for WatcherEvent's KeeperState and EventType
  1410. (Jakob Homan via phunt)
  1411. ZOOKEEPER-18. keeper state inconsistency (Jakob Homan via phunt)
  1412. ZOOKEEPER-38. headers (version+) in log/snap files (Andrew Kornev and Mahadev
  1413. Konar via breed)
  1414. ZOOKEEPER-8. Stat enchaned to include num of children and size
  1415. (phunt)
  1416. ZOOKEEPER-6. List of problem identifiers in zookeeper.h
  1417. (phunt)
  1418. ZOOKEEPER-7. Use enums rather than ints for types and state
  1419. (Jakob Homan via mahadev)
  1420. ZOOKEEPER-27. Unique DB identifiers for servers and clients
  1421. (mahadev)
  1422. ZOOKEEPER-32. CRCs for ZooKeeper data
  1423. (mahadev)
  1424. ZOOKEEPER-33. Better ACL management
  1425. (mahadev)
  1426. Backward compatible changes:
  1427. BUGFIXES:
  1428. ZOOKEEPER-203. fix datadir typo in releasenotes (phunt)
  1429. ZOOKEEPER-145. write detailed release notes for users migrating from 2.x
  1430. to 3.0 (phunt)
  1431. ZOOKEEPER-23. Auto reset of watches on reconnect (breed via phunt)
  1432. ZOOKEEPER-191. forrest docs for upgrade. (mahadev via phunt)
  1433. ZOOKEEPER-201. validate magic number when reading snapshot and transaction
  1434. logs (mahadev via phunt)
  1435. ZOOKEEPER-200. the magic number for snapshot and log must be different
  1436. (currently same) (phunt)
  1437. ZOOKEEPER-199. fix log messages in persistence code (mahadev via phunt)
  1438. ZOOKEEPER-197. create checksums for snapshots (mahadev via phunt)
  1439. ZOOKEEPER-198. apache license header missing from FollowerSyncRequest.java
  1440. (phunt)
  1441. ZOOKEEPER-5. Upgrade Feature in Zookeeper server. (mahadev via phunt)
  1442. ZOOKEEPER-194. Fix terminology in zookeeperAdmin.xml
  1443. (Flavio Paiva Junqueira)
  1444. ZOOKEEPER-151. Document change to server configuration
  1445. (Flavio Paiva Junqueira)
  1446. ZOOKEEPER-193. update java example doc to compile with latest zookeeper
  1447. (phunt)
  1448. ZOOKEEPER-187. CreateMode api docs missing (phunt)
  1449. ZOOKEEPER-186. add new "releasenotes.xml" to forrest documentation
  1450. (phunt)
  1451. ZOOKEEPER-190. Reorg links to docs and navs to docs into related sections
  1452. (robbie via phunt)
  1453. ZOOKEEPER-189. forrest build not validated xml of input documents
  1454. (robbie via phunt)
  1455. ZOOKEEPER-188. Check that election port is present for all servers
  1456. (Flavio Paiva Junqueira via phunt)
  1457. ZOOKEEPER-185. Improved version of FLETest (Flavio Paiva Junqueira)
  1458. ZOOKEEPER-184. tests: An explicit include derective is needed for the usage
  1459. of memcpy(), memset(), strlen(), strdup() and free() functions
  1460. (Maxim P. Dementiev via phunt)
  1461. ZOOKEEPER-183. Array subscript is above array bounds in od_completion(),
  1462. src/cli.c. (Maxim P. Dementiev via phunt)
  1463. ZOOKEEPER-182. zookeeper_init accepts empty host-port string and returns
  1464. valid pointer to zhandle_t. (Maxim P. Dementiev via phunt)
  1465. ZOOKEEPER-17. zookeeper_init doc needs clarification (phunt)
  1466. ZOOKEEPER-181. Some Source Forge Documents did not get moved over:
  1467. javaExample, zookeeperTutorial, zookeeperInternals (robbie via phunt)
  1468. ZOOKEEPER-180. Placeholder sections needed in document for new topics that
  1469. the umbrella jira discusses (robbie via phunt)
  1470. ZOOKEEPER-179. Programmer's Guide "Basic Operations" section is missing
  1471. content (robbie via phunt)
  1472. ZOOKEEPER-178. FLE test. (Flavio Paiva Junqueira)
  1473. ZOOKEEPER-159. Cover two corner cases of leader election
  1474. (Flavio Paiva Junqueira via phunt)
  1475. ZOOKEEPER-156. update programmer guide with acl details from old wiki page
  1476. (phunt)
  1477. ZOOKEEPER-154. reliability graph diagram in overview doc needs context
  1478. (phunt)
  1479. ZOOKEEPER-157. Peer can't find existing leader (Flavio Paiva Junqueira)
  1480. ZOOKEEPER-155. improve "the zookeeper project" section of overview doc
  1481. (phunt)
  1482. ZOOKEEPER-140. Deadlock in QuorumCnxManager (Flavio Paiva Junqueira)
  1483. ZOOKEEPER-147. This is version of the documents with most of the [tbd...]
  1484. scrubbed out (robbie via phunt)
  1485. ZOOKEEPER-150. zookeeper build broken (mahadev via phunt)
  1486. ZOOKEEPER-136. sync causes hang in all followers of quorum. (breed)
  1487. ZOOKEEPER-134. findbugs cleanup (phunt)
  1488. ZOOKEEPER-133. hudson tests failing intermittently (phunt)
  1489. ZOOKEEPER-144. add tostring support for watcher event, and enums for event
  1490. type/state (Jakob Homan via phunt)
  1491. ZOOKEEPER-21. Improve zk ctor/watcher (state transition) docs (phunt)
  1492. ZOOKEEPER-142. Provide Javadoc as to the maximum size of the data byte
  1493. array that may be stored within a znode (Jakob Homan via phunt)
  1494. ZOOKEEPER-93. Create Documentation for Zookeeper (phunt)
  1495. ZOOKEEPER-117. threading issues in Leader election (fpj via breed)
  1496. ZOOKEEPER-137. client watcher objects can lose events (phunt via breed)
  1497. ZOOKEEPER-131. Old leader election can elect a dead leader over and over
  1498. again (breed via mahadev)
  1499. ZOOKEEPER-130. update build.xml to support apache release process
  1500. (phunt via mahadev)
  1501. ZOOKEEPER-118. findbugs flagged switch statement in
  1502. followerrequestprocessor.run() (Flavio Paiva Junqueira via phunt)
  1503. ZOOKEEPER-115. Potential NPE in QuorumCnxManager
  1504. (Flavio Paiva Junqueira)
  1505. ZOOKEEPER-114. cleanup ugly event messages in zookeeper client
  1506. (Jakob Homan)
  1507. ZOOKEEPER-112. src/java/main ZooKeeper.java has test code embedded into it.
  1508. (phunt)
  1509. ZOOKEEPER-39. Use Watcher objects rather than boolean on read operations.
  1510. (Andrew Kornev)
  1511. ZOOKEEPER-97. supports optional output directory in code generator. (Hiram
  1512. Chirino via phunt)
  1513. ZOOKEEPER-101. Integrate ZooKeeper with "violations" feature on hudson
  1514. (phunt)
  1515. ZOOKEEPER-105. Catch Zookeeper exceptions and print on the stderr.
  1516. (Anthony Urso via Mahadev)
  1517. ZOOKEEPER-42. Change Leader Election to fast tcp. (Flavio Paiva Junqueira
  1518. via phunt)
  1519. ZOOKEEPER-48. auth_id now handled correctly when no auth ids present
  1520. (Benjamin Reed via phunt)
  1521. ZOOKEEPER-44. Create sequence flag children with prefixes of 0's so that
  1522. they can be lexicographically sorted. (Jakob Homan via mahadev)
  1523. ZOOKEEPER-108. Fix sync operation reordering on a Quorum.
  1524. (Flavio Paiva Junqueira via Mahadev)
  1525. ZOOKEEPER-25. Fuse module for Zookeeper. (Swee Lim, Bart, Patrick Hunt and
  1526. Andrew Kornev via Mahadev)
  1527. ZOOKEEPER-58. Race condition on ClientCnxn.java (breed)
  1528. ZOOKEEPER-56. Add clover support to build.xml. (Patrick Hunt via mahadev)
  1529. ZOOKEEPER-75. register the ZooKeeper mailing lists with nabble.com (phunt)
  1530. ZOOKEEPER-54. remove sleeps in the tests. (phunt)
  1531. ZOOKEEPER-55. build.xml failes to retrieve a release number from SVN and
  1532. the ant target "dist" fails (Andrew Kornev)
  1533. ZOOKEEPER-89. invoke WhenOwnerListener.whenNotOwner() when the ZK
  1534. connection fails (james strachan)
  1535. ZOOKEEPER-90. invoke WhenOwnerListener.whenNotOwner() when the ZK
  1536. session expires and the znode is the leader (james strachan)
  1537. ZOOKEEPER-82. Make the ZooKeeperServer more DI friendly. (Hiram Chirino via
  1538. mahadev)
  1539. ZOOKEEPER-110. Build script relies on svnant, which is not compatible
  1540. with subversion 1.5 working copies (Jakob Homan)
  1541. ZOOKEEPER-111. Significant cleanup of existing tests. (Patrick Hunt via
  1542. mahadev)
  1543. ZOOKEEPER-122. Fix NPE in jute's Utils.toCSVString. (Anthony Urso via
  1544. mahadev)
  1545. ZOOKEEPER-123. Fix the wrong class is specified for the logger. (Jakob Homan
  1546. via mahadev)
  1547. ZOOKEEPER-2. Fix synchronization issues in QuorumPeer and FastLeader
  1548. election. (Flavio Paiva Junqueira via mahadev)
  1549. ZOOKEEPER-125. Remove unwanted class declaration in FastLeaderElection.
  1550. (Flavio Paiva Junqueira via mahadev)
  1551. ZOOKEEPER-61. Address (remove) use of sleep(#) in client/server test cases.
  1552. (phunt)
  1553. ZOOKEEPER-75. cleanup the library directory (phunt)
  1554. ZOOKEEPER-109. cleanup of NPE and Resource issue nits found by static
  1555. analysis (phunt)
  1556. ZOOKEEPER-76. Commit 677109 removed the cobertura library, but not the
  1557. build targets. (phunt)
  1558. ZOOKEEPER-63. Race condition in client close() operation. (phunt via breed)
  1559. ZOOKEEPER-70. Add skeleton forrest doc structure for ZooKeeper (phunt)
  1560. ZOOKEEPER-79. Document jacob's leader election on the wiki recipes page
  1561. (Flavio Junqueira)
  1562. ZOOKEEPER-73. Move ZK wiki from SourceForge to Apache (phunt)
  1563. ZOOKEEPER-72. Initial creation/setup of ZooKeeper ASF site. (phunt)
  1564. ZOOKEEPER-71. Determine what to do re ZooKeeper Changelog(s) (mahadev)
  1565. ZOOKEEPER-68. parseACLs in ZooKeeper.java fails to parse elements of ACL,
  1566. should be lastIndexOf rather than IndexOf (mahadev)
  1567. ZOOKEEPER-130. update build.xml to support apache release process.
  1568. (phunt via mahadev)
  1569. ZOOKEEPER-131. Fix Old leader election can elect a dead leader over and over
  1570. again. (breed via mahadev)
  1571. ZOOKEEPER-137. client watcher objects can lose events (Patrick Hunt via breed)
  1572. ZOOKEEPER-117. threading issues in Leader election (Flavio Junqueira and
  1573. Patrick Hunt via breed)
  1574. ZOOKEEPER-128. test coverage on async client operations needs to be improved
  1575. (phunt)
  1576. ZOOKEEPER-127. Use of non-standard election ports in config breaks services
  1577. (Mark Harwood and Flavio Junqueira via breed)
  1578. ZOOKEEPER-53. tests failing on solaris. (phunt)
  1579. ZOOKEEPER-172. FLE Test (Flavio Junqueira via breed)
  1580. ZOOKEEPER-41. Sample startup script (mahadev)
  1581. ZOOKEEPER-33. Better ACL management (Mahadev Konar)
  1582. ZOOKEEPER-49. SetACL does not work (breed)
  1583. ZOOKEEPER-20. Child watches are not triggered when the node is deleted
  1584. (phunt)
  1585. ZOOKEEPER-15. handle failure better in build.xml:test (phunt)
  1586. ZOOKEEPER-11. ArrayList is used instead of List (phunt)
  1587. ZOOKEEPER-45. Restructure the SVN repository after initial import (phunt)
  1588. ZOOKEEPER-1. Initial ZooKeeper code contribution from Yahoo! (phunt)