{"payload":{"allShortcutsEnabled":false,"fileTree":{"doc":{"items":[{"name":"bugs","path":"doc/bugs","contentType":"directory"},{"name":"design","path":"doc/design","contentType":"directory"},{"name":"manual","path":"doc/manual","contentType":"directory"},{"name":"tests","path":"doc/tests","contentType":"directory"},{"name":"tutorial","path":"doc/tutorial","contentType":"directory"},{"name":"Announcement-2.4.txt","path":"doc/Announcement-2.4.txt","contentType":"file"},{"name":"ENCRYPT.html","path":"doc/ENCRYPT.html","contentType":"file"},{"name":"ENCRYPT1_4.html","path":"doc/ENCRYPT1_4.html","contentType":"file"},{"name":"JmxSupport.txt","path":"doc/JmxSupport.txt","contentType":"file"},{"name":"MarshalingFormat.txt","path":"doc/MarshalingFormat.txt","contentType":"file"},{"name":"NullDestAddresses.txt","path":"doc/NullDestAddresses.txt","contentType":"file"},{"name":"NullingSrcAddresses.txt","path":"doc/NullingSrcAddresses.txt","contentType":"file"},{"name":"PerformanceNotes.txt","path":"doc/PerformanceNotes.txt","contentType":"file"},{"name":"ProtocolReentrancy","path":"doc/ProtocolReentrancy","contentType":"file"},{"name":"RELEASE_INSTRUCTIONS","path":"doc/RELEASE_INSTRUCTIONS","contentType":"file"},{"name":"RULES","path":"doc/RULES","contentType":"file"},{"name":"ReleaseNotes-2.2.8.txt","path":"doc/ReleaseNotes-2.2.8.txt","contentType":"file"},{"name":"ReleaseNotes-2.2.9.txt","path":"doc/ReleaseNotes-2.2.9.txt","contentType":"file"},{"name":"ReleaseNotes-2.3.txt","path":"doc/ReleaseNotes-2.3.txt","contentType":"file"},{"name":"ReleaseNotes-2.4.txt","path":"doc/ReleaseNotes-2.4.txt","contentType":"file"},{"name":"ReleaseNotes-2.5.1.txt","path":"doc/ReleaseNotes-2.5.1.txt","contentType":"file"},{"name":"ReleaseNotes-2.5.txt","path":"doc/ReleaseNotes-2.5.txt","contentType":"file"},{"name":"ReleaseNotes-2.6.txt","path":"doc/ReleaseNotes-2.6.txt","contentType":"file"},{"name":"ReleaseNotes-2.7.txt","path":"doc/ReleaseNotes-2.7.txt","contentType":"file"},{"name":"ReleaseNotes-2.8.txt","path":"doc/ReleaseNotes-2.8.txt","contentType":"file"},{"name":"history.txt","path":"doc/history.txt","contentType":"file"},{"name":"perfgraph.plt","path":"doc/perfgraph.plt","contentType":"file"},{"name":"persistence.html","path":"doc/persistence.html","contentType":"file"},{"name":"structure.txt","path":"doc/structure.txt","contentType":"file"},{"name":"todo.lst","path":"doc/todo.lst","contentType":"file"}],"totalCount":30},"":{"items":[{"name":"bin","path":"bin","contentType":"directory"},{"name":"conf","path":"conf","contentType":"directory"},{"name":"doc","path":"doc","contentType":"directory"},{"name":"lib","path":"lib","contentType":"directory"},{"name":"src","path":"src","contentType":"directory"},{"name":"tests","path":"tests","contentType":"directory"},{"name":".classpath","path":".classpath","contentType":"file"},{"name":".cvsignore","path":".cvsignore","contentType":"file"},{"name":".project","path":".project","contentType":"file"},{"name":"CREDITS","path":"CREDITS","contentType":"file"},{"name":"EULA","path":"EULA","contentType":"file"},{"name":"INSTALL.html","path":"INSTALL.html","contentType":"file"},{"name":"LICENSE","path":"LICENSE","contentType":"file"},{"name":"README","path":"README","contentType":"file"},{"name":"build.bat","path":"build.bat","contentType":"file"},{"name":"build.properties.template","path":"build.properties.template","contentType":"file"},{"name":"build.sh","path":"build.sh","contentType":"file"},{"name":"build.xml","path":"build.xml","contentType":"file"},{"name":"jgroups-pom.xml","path":"jgroups-pom.xml","contentType":"file"}],"totalCount":19}},"fileTreeProcessingTime":12.706781,"foldersToFetch":[],"repo":{"id":1059430,"defaultBranch":"master","name":"JGroups","ownerLogin":"belaban","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2010-11-07T15:51:28.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/457949?v=4","public":true,"private":false,"isOrgOwned":false},"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"JGroups_2_8_0_CR1","listCacheKey":"v0:1710345396.0","canEdit":false,"refType":"tag","currentOid":"9224532ef6730f70e211c7b60f86d22aee3b3cc1"},"path":"doc/ReleaseNotes-2.7.txt","currentUser":null,"blob":{"rawLines":["","Release Notes JGroups 2.7","=========================","","Version: $Id: ReleaseNotes-2.7.txt,v 1.6 2008/11/13 08:18:41 belaban Exp $","Author: Bela Ban","","JGroups 2.7 is still API-backwards compatible with previous versions (down to 2.2.7).","","This is a big release, with close to 200 JIRA issues fixed and major new functionality.","","Below is a summary (with links to the detailed description) of the major new features.","","","Features","========","","Shared transport","----------------","[https://jira.jboss.org/jira/browse/JGRP-631]","","Multiple channels can now share the same transport (and still have different stack configurations on top). This","replaces the Multiplexer, which is not supported any longer as of 2.7.","","See http://www.jgroups.org/javagroupsnew/docs/manual/html/user-advanced.html#d0e2204 for details.","","","","Converted unit tests from JUnit to TestNG","-----------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-410]","","This cut down the time to run all tests from 2.5 hours to 15 minutes !","","","Use of annotations to provide JMX management information","--------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-723]","[https://jira.jboss.org/jira/browse/JGRP-408]","","By annotating a protocol as @ManagedResource, an attribute as @ManagedAttribute or an operation as","@ManagedOperation, we can simply expose JMX management information.","","This change allowed us to remove the parallel JMX class hierarchy (org.jgroups.jmx package), and dramatically","reduced the effort needed to expose protocols via JMX.","","Credits for the initial implementation go to Chris Mills.","","","","Use of annotations to set properties","------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-765]","","Instead of implementing setProperties() in each protocol, parsing the input string and converting it to a variable, we","now use the @Property annoation to mark an attribute or getter/setter method. This way, input strings are","automatically mapped to the corresponding fields in a protocol.","","This allowed us to remove a lot of boilerplate code.","","In addition, we now generate the protocol list","documentation (http://www.jgroups.org/javagroupsnew/docs/manual/html/protlist.html) from the @Property annotations.","The benefit is that we need to maintain the documentation only in one place (the code) instead of two, and we now","have a complete documentation of all protocol properties. ","","","Ability to replace thread pools with custom thread pools","--------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-632]","","This allows (for example) system integrators to use the thread pools they already have in their applications. It","also gives greater control over thread pool management, e.g. a provider can make all threads in a pool daemon threads.","","","Allow flushing of a cluster subset","----------------------------------","[https://jira.jboss.org/jira/browse/JGRP-661]","","Rather than flushing the entire cluster, we can now provide a list of target members for the FLUSH. This is needed","for example for buddy replication in JBossCache.","","","Performance improvements","------------------------","[https://jira.jboss.org/jira/browse/JGRP-846]","[https://jira.jboss.org/jira/browse/JGRP-847]","[https://jira.jboss.org/jira/browse/JGRP-805]","[https://jira.jboss.org/jira/browse/JGRP-806]","[https://jira.jboss.org/jira/browse/JGRP-829]","[https://jira.jboss.org/jira/browse/JGRP-813]","","","http://www.jgroups.org/javagroupsnew/docs/performance.html shows that we can get 150MB/sec/node on a 4 node","cluster connected to a 1GB switch with udp.xml (IP multicasting) on 2.7. This means we get an aggregate cluster","throughput of 600MB/sec !","","2.7 is ca 30-40% faster than 2.6 !","","","FC: max block times depending on message size","---------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-804]","","We can now set the max time to block for a given message, e.g. block 10ms max for messages up to 10K, 100ms for messages","up to 1MB, 500ms for messages up to 10MB and 2000ms for messages larger than that.","","This means that - regardless of missing credits - messages will be sent after the deadline (max block time) has","elapsed. This adds more predictability as to when messages are sent, but it also can lead to OOMEs if those values","are too low, defying the purpose of flow control.","","","UNICAST/NAKACK: eager lock release","----------------------------------","[https://jira.jboss.org/jira/browse/JGRP-656]","","Better performance in cases where the receiver of a message uses the calling thread to send a message down the stack.","In this case, the lock will be release as soon as send() is called, releasing the lock and allowing threads with","messages from the same sender to proceed.","","","GossipRouter / GossipClient: make sockets non-blocking","------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-702]","[https://jira.jboss.org/jira/browse/JGRP-852]","","Can now be configured to use non blocking socket close, connect and read/write","","","Paralellize discovery phase","---------------------------","[https://jira.jboss.org/jira/browse/JGRP-375]","","","Pluggable Probe","---------------","[https://jira.jboss.org/jira/browse/JGRP-832]","","This allows for users to write their own plugins which respond to a ping (a probe) and return (for example)","application specific information.","","Details are at http://www.jboss.org/community/docs/DOC-11689 (towards the bottom of the page).","","","","","","Bug fixes","=========","","FD: nodes would not get suspected if traffic from different nodes was received","------------------------------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-746]","","Traffic from *any* node was counted as a heartbeat. This is incorrect as only traffic from the pinged member","should count as heartbeat.","","FRAG/FRAG2: fragment list is not cleared for crashed member (can lead to memory leak)","-------------------------------------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-800]","","NAKACK: regular message not delivered (in some cases) until new message arrives","-------------------------------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-781]","","STATE_TRANSFER: state transfer broken for large states","------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-774]","","Concurrent connect of multiple channels with shared transport fails","-------------------------------------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-849]","","Eliminate Linux cross-talk in MPING","-----------------------------------","[https://jira.jboss.org/jira/browse/JGRP-836]","","FLUSH fixes","-----------","[https://jira.jboss.org/jira/browse/JGRP-756]","[https://jira.jboss.org/jira/browse/JGRP-759]","[https://jira.jboss.org/jira/browse/JGRP-700]","[https://jira.jboss.org/jira/browse/JGRP-622]","","FD_SOCK: fixes","--------------","[https://jira.jboss.org/jira/browse/JGRP-841]","[https://jira.jboss.org/jira/browse/JGRP-845]","[https://jira.jboss.org/jira/browse/JGRP-794]","[https://jira.jboss.org/jira/browse/JGRP-745]","","NAKACK: merging of digests is incorrect","---------------------------------------","[https://jira.jboss.org/jira/browse/JGRP-699]","","","","","","Manual","------","The manual is online at http://www.jgroups.org/javagroupsnew/docs/manual/html/index.html","","","","The complete list of features and bug fixes can be found at http://jira.jboss.com/jira/browse/JGRP.","","","Bela Ban, Kreuzlingen, Switzerland","Vladimir Blagojevic, Toronto, Canada","","Nov 2008"],"stylingDirectives":[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/belaban/JGroups/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"ReleaseNotes-2.7.txt","displayUrl":"https://github.com/belaban/JGroups/blob/JGroups_2_8_0_CR1/doc/ReleaseNotes-2.7.txt?raw=true","headerInfo":{"blobSize":"7.34 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":null,"isGitLfs":false,"onBranch":false,"shortPath":"2859b71","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Fbelaban%2FJGroups%2Fblob%2FJGroups_2_8_0_CR1%2Fdoc%2FReleaseNotes-2.7.txt","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"213","truncatedSloc":"133"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"Text","languageID":372,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/belaban/JGroups/blob/JGroups_2_8_0_CR1/doc/ReleaseNotes-2.7.txt","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/belaban/JGroups/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/belaban/JGroups/raw/JGroups_2_8_0_CR1/doc/ReleaseNotes-2.7.txt","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":true,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"csrf_tokens":{"/belaban/JGroups/branches":{"post":"w7er-tI80zLcdx_12eYCdXaDVIOUzyMqYqvYzsxfJyc5Wfgd7TvLpxEfw_ad3V6BMmeLMs9PMDdEUIXPRBU44g"},"/repos/preferences":{"post":"KgRNOcMAY18ynUyGQP3Ri5e-btK5Wq5TMw0A_e3qTuzLpqp6StjE8vGQaWgglCC1GKgslGbq2o5YDF8-YZip5Q"}}},"title":"JGroups/doc/ReleaseNotes-2.7.txt at JGroups_2_8_0_CR1 ยท belaban/JGroups"}