You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(37) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(27) |
Feb
(34) |
Mar
(30) |
Apr
(151) |
May
(184) |
Jun
(55) |
Jul
(2) |
Aug
(6) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2008-02-14 14:30:06
|
Patches item #1881204, was opened at 2008-01-28 16:28 Message generated for change (Comment added) made by fpj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- >Comment By: fpj (fpj) Date: 2008-02-14 15:30 Message: Logged In: YES user_id=1926444 Originator: YES I have tested the new implementation using machines across the Atlantic, and I found a problem with the way we were opening a connection to the new leader on Follower.java. On Follower.followLeader(), there was a for loop that supposedly tried to connect to the new leader 3 times. The way it was implemented before didn't work because in the second iteration the Socket object was not valid anymore. This was causing the follower to try only once as in the second iteration it was throwing an excpetion that was not ConnectException, and it was leaving the for loop. I have modified the code to create a socket inside the loop for every iteration. In this way the Socket object is valid on every attempt. Because the follower was trying only once, it was happening that the follower would try to connect to the leader before the leader was ready to accept connections. To avoid this problem, we had this hack in the leader election implemention (the previous version was doing the same) to make the follower wait for a fixed amount of time, which we had set to 100ms. When I tried with high-latency connections, the value of 100ms was not sufficient, and I was observing runs in which the system was never making progress because the leader election would succeed, but the single follower of my experiment was not being able to connect to the leader as the leader was not ready yet and the bug in the code allowed the follower to try only once. With this fix, the follower may still experience unsuccessful attempts to connect to the leader, but given that it waits one second until the next try, it often succeeds in the second attempt. Moreover, with this fix, I've been able to get rid of the 100ms timer at the end of leader election, so it now terminates even faster. -Flavio File Added: patch-le-tcp-v4.txt ---------------------------------------------------------------------- Comment By: fpj (fpj) Date: 2008-02-05 15:09 Message: Logged In: YES user_id=1926444 Originator: YES I'm attaching a third version of the patch, in which I fixed a few bugs. In response to Mahadev's comment, I could use the server id to initialize the Random object, but since I'm not passing it to the constructor, I've chosen to initialize the seed in a different way, using IP and time. The idea of using IP is to have different different seeds for different servers. As Mahadev pointed out before, we have to consider tha case in which one computer runs multiple ZK servers. For this special case, I add the current time to break ties with respect to challenge. In my understanding, the way we generate the challenge value doesn't really matter. I think it is more general in the way I've implemented as it doesn't depend upon any particular scheme of identification for the servers. It is important to note, though, that it is not always necessary to break ties as there are times in which the attempt to initiate a connection is one way. In these cases, if we try to break ties, we may end up with no connection. The logic to overcome such corner cases is fairly simple. if a server A doesn't have a connection to server B, and A has received a connection request from B, then A must accept it. To make it work despite the utilization of a tie-break mechanism, A changes its challenge to the smallest possible value the challenge can have. In this way, it makes sure that it loses the challenge. If I use a mechanism that doesn't exchange challenge values (such as using IP and port), then it is not possible to implement the trick I describe above. File Added: patch-le-tcp-v3.txt ---------------------------------------------------------------------- Comment By: Mahadev Konar (mahadevkonar) Date: 2008-02-04 21:21 Message: Logged In: YES user_id=1926680 Originator: NO a few comments: new Random(System.currentTimeMillis() + + localIP.hashCode()); what is the idea behind adding ipaddress hashcode and currentimemillis? why not just use the serverid or in that case why not just use the raw server id for connection resolving? something like a server with higher server id is the server that the other connects to... ---------------------------------------------------------------------- Comment By: fpj (fpj) Date: 2008-01-31 18:14 Message: Logged In: YES user_id=1926444 Originator: YES File Added: patch-le-tcp-v2.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-12 18:04:08
|
Patches item #1892108, was opened at 2008-02-12 10:04 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1892108&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Benjamin Reed (breed) Assigned to: Nobody/Anonymous (nobody) Summary: Configurable packet sanity check Initial Comment: I added a jute.maxbuffer property to configure the packet sanity check. I also make the 2 sanity checks use the same number thus default to the same thing: 1M. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1892108&group_id=209147 |
From: Andrew K. <ak...@ya...> - 2008-02-08 22:43:16
|
This is a maintenance release. For a list bug fixes please see Release notes. |
From: SourceForge.net <no...@so...> - 2008-02-08 19:17:18
|
Patches item #1889354, was opened at 2008-02-07 18:24 Message generated for change (Comment added) made by breed You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1889354&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrew Kornev (akornev) Assigned to: Nobody/Anonymous (nobody) Summary: revision number and other metadata in the JAR manifest Initial Comment: Here's how the new manifest's going to look like: Manifest-Version: 1.0 Ant-Version: Apache Ant 1.7.0 Created-By: 1.6.0_02-b06 (Sun Microsystems Inc.) Main-Class: com.yahoo.zookeeper.server.quorum.QuorumPeer Built-By: reallycooldude Built-At: February 7 2008 Implementation-Title: com.yahoo.zookeeper Implementation-Version: SVN revision 93 Implementation-Vendor: Yahoo! Inc. Please note in order to extract the last revision number from the SVN repository I had to use Collabnet's Subversion Ant task svnant-1.1.0-RC2: http://subclipse.tigris.org/svnant.html. Download their latest release 1.1.0-RC2. Next, create the svnant directory under zookeeper/java/lib and copy all jar files from the zip's lib directory to the newly created svnant directory. Apply the attached build.xml patch and build the server jar as usual. ---------------------------------------------------------------------- >Comment By: Benjamin Reed (breed) Date: 2008-02-08 11:17 Message: Logged In: YES user_id=154690 Originator: NO +1 Looks good. Lets put the needed libraries with their licenses in the lib directory. I think we should also put a readme.txt in the lib directory indicating that the libraries are only used to do builds and are not part of the resulting binaries. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1889354&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-08 02:24:34
|
Patches item #1889354, was opened at 2008-02-07 18:24 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1889354&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrew Kornev (akornev) Assigned to: Nobody/Anonymous (nobody) Summary: revision number and other metadata in the JAR manifest Initial Comment: Here's how the new manifest's going to look like: Manifest-Version: 1.0 Ant-Version: Apache Ant 1.7.0 Created-By: 1.6.0_02-b06 (Sun Microsystems Inc.) Main-Class: com.yahoo.zookeeper.server.quorum.QuorumPeer Built-By: reallycooldude Built-At: February 7 2008 Implementation-Title: com.yahoo.zookeeper Implementation-Version: SVN revision 93 Implementation-Vendor: Yahoo! Inc. Please note in order to extract the last revision number from the SVN repository I had to use Collabnet's Subversion Ant task svnant-1.1.0-RC2: http://subclipse.tigris.org/svnant.html. Download their latest release 1.1.0-RC2. Next, create the svnant directory under zookeeper/java/lib and copy all jar files from the zip's lib directory to the newly created svnant directory. Apply the attached build.xml patch and build the server jar as usual. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1889354&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-07 21:40:10
|
Patches item #1887548, was opened at 2008-02-05 17:54 Message generated for change (Settings changed) made by akornev You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: c client Group: None >Status: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: Andrew Kornev (akornev) Assigned to: Nobody/Anonymous (nobody) Summary: client maintenance patch Initial Comment: The patch includes the following bug fixes: - session events should be processed on the completion queue; - get_xid() is not thread-safe (xid initialization race condition); - PING operation doesn’t atomically enqueue the completion and send buffers like other operations do; - I/O thread doesn’t automatically terminate on AUTH_FAILURE and SESSION_EXPIRED events ---------------------------------------------------------------------- Comment By: Benjamin Reed (breed) Date: 2008-02-07 13:10 Message: Logged In: YES user_id=154690 Originator: NO +1 make it happen ---------------------------------------------------------------------- Comment By: Benjamin Reed (breed) Date: 2008-02-07 08:06 Message: Logged In: YES user_id=154690 Originator: NO Was this patch generated against an SVN revision that did not have [ 1887492 ] All watch events on completion thread queue_session_event is in both. I think you added the #ifdef for processing the event right away to make the processing a bit more efficient correct? The problem is that we mess up the ordering. Now a completion will get queued and then the connection closes and the disconnect watch event will get delivered before the completion event. That may cause confusion in the app. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-07 21:10:28
|
Patches item #1887548, was opened at 2008-02-05 17:54 Message generated for change (Comment added) made by breed You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: c client Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrew Kornev (akornev) Assigned to: Nobody/Anonymous (nobody) Summary: client maintenance patch Initial Comment: The patch includes the following bug fixes: - session events should be processed on the completion queue; - get_xid() is not thread-safe (xid initialization race condition); - PING operation doesn’t atomically enqueue the completion and send buffers like other operations do; - I/O thread doesn’t automatically terminate on AUTH_FAILURE and SESSION_EXPIRED events ---------------------------------------------------------------------- Comment By: Benjamin Reed (breed) Date: 2008-02-07 13:10 Message: Logged In: YES user_id=154690 Originator: NO +1 make it happen ---------------------------------------------------------------------- Comment By: Benjamin Reed (breed) Date: 2008-02-07 08:06 Message: Logged In: YES user_id=154690 Originator: NO Was this patch generated against an SVN revision that did not have [ 1887492 ] All watch events on completion thread queue_session_event is in both. I think you added the #ifdef for processing the event right away to make the processing a bit more efficient correct? The problem is that we mess up the ordering. Now a completion will get queued and then the connection closes and the disconnect watch event will get delivered before the completion event. That may cause confusion in the app. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-07 16:06:49
|
Patches item #1887548, was opened at 2008-02-05 17:54 Message generated for change (Comment added) made by breed You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: c client Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrew Kornev (akornev) Assigned to: Nobody/Anonymous (nobody) Summary: client maintenance patch Initial Comment: The patch includes the following bug fixes: - session events should be processed on the completion queue; - get_xid() is not thread-safe (xid initialization race condition); - PING operation doesn’t atomically enqueue the completion and send buffers like other operations do; - I/O thread doesn’t automatically terminate on AUTH_FAILURE and SESSION_EXPIRED events ---------------------------------------------------------------------- >Comment By: Benjamin Reed (breed) Date: 2008-02-07 08:06 Message: Logged In: YES user_id=154690 Originator: NO Was this patch generated against an SVN revision that did not have [ 1887492 ] All watch events on completion thread queue_session_event is in both. I think you added the #ifdef for processing the event right away to make the processing a bit more efficient correct? The problem is that we mess up the ordering. Now a completion will get queued and then the connection closes and the disconnect watch event will get delivered before the completion event. That may cause confusion in the app. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-06 01:54:44
|
Patches item #1887548, was opened at 2008-02-05 17:54 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: c client Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Andrew Kornev (akornev) Assigned to: Nobody/Anonymous (nobody) Summary: client maintenance patch Initial Comment: The patch includes the following bug fixes: - session events should be processed on the completion queue; - get_xid() is not thread-safe (xid initialization race condition); - PING operation doesn’t atomically enqueue the completion and send buffers like other operations do; - I/O thread doesn’t automatically terminate on AUTH_FAILURE and SESSION_EXPIRED events ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887548&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-06 01:09:34
|
Patches item #1887492, was opened at 2008-02-05 15:57 Message generated for change (Settings changed) made by akornev You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887492&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: c client Group: None >Status: Closed >Resolution: Rejected Priority: 5 Private: No Submitted By: Benjamin Reed (breed) Assigned to: Nobody/Anonymous (nobody) Summary: All watch events on completion thread Initial Comment: All watch events should be processed on the completion thread so that callbacks do not block I/O. This patch queues the callbacks currently done on the I/O thread to the completion thread. ---------------------------------------------------------------------- >Comment By: Andrew Kornev (akornev) Date: 2008-02-05 17:09 Message: Logged In: YES user_id=1926652 Originator: NO The original patch has a bug: the watcher is never called for exceptional session events (such as session expiration or connection loss) in the single-threaded mode. I'm going to fix the problem by calling watcher immediately (the way it used to be). In the multi-threaded mode, however, the session events will be correctly enqueued for processing by the completion thread. I'm going to resubmit the bugfix in a new client patch along with other bug fixes. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887492&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-05 23:57:09
|
Patches item #1887492, was opened at 2008-02-05 15:57 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887492&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: c client Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Benjamin Reed (breed) Assigned to: Nobody/Anonymous (nobody) Summary: All watch events on completion thread Initial Comment: All watch events should be processed on the completion thread so that callbacks do not block I/O. This patch queues the callbacks currently done on the I/O thread to the completion thread. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1887492&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-05 14:09:44
|
Patches item #1881204, was opened at 2008-01-28 16:28 Message generated for change (Comment added) made by fpj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- >Comment By: fpj (fpj) Date: 2008-02-05 15:09 Message: Logged In: YES user_id=1926444 Originator: YES I'm attaching a third version of the patch, in which I fixed a few bugs. In response to Mahadev's comment, I could use the server id to initialize the Random object, but since I'm not passing it to the constructor, I've chosen to initialize the seed in a different way, using IP and time. The idea of using IP is to have different different seeds for different servers. As Mahadev pointed out before, we have to consider tha case in which one computer runs multiple ZK servers. For this special case, I add the current time to break ties with respect to challenge. In my understanding, the way we generate the challenge value doesn't really matter. I think it is more general in the way I've implemented as it doesn't depend upon any particular scheme of identification for the servers. It is important to note, though, that it is not always necessary to break ties as there are times in which the attempt to initiate a connection is one way. In these cases, if we try to break ties, we may end up with no connection. The logic to overcome such corner cases is fairly simple. if a server A doesn't have a connection to server B, and A has received a connection request from B, then A must accept it. To make it work despite the utilization of a tie-break mechanism, A changes its challenge to the smallest possible value the challenge can have. In this way, it makes sure that it loses the challenge. If I use a mechanism that doesn't exchange challenge values (such as using IP and port), then it is not possible to implement the trick I describe above. File Added: patch-le-tcp-v3.txt ---------------------------------------------------------------------- Comment By: Mahadev Konar (mahadevkonar) Date: 2008-02-04 21:21 Message: Logged In: YES user_id=1926680 Originator: NO a few comments: new Random(System.currentTimeMillis() + + localIP.hashCode()); what is the idea behind adding ipaddress hashcode and currentimemillis? why not just use the serverid or in that case why not just use the raw server id for connection resolving? something like a server with higher server id is the server that the other connects to... ---------------------------------------------------------------------- Comment By: fpj (fpj) Date: 2008-01-31 18:14 Message: Logged In: YES user_id=1926444 Originator: YES File Added: patch-le-tcp-v2.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-02-04 20:21:42
|
Patches item #1881204, was opened at 2008-01-28 15:28 Message generated for change (Comment added) made by mahadevkonar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- >Comment By: Mahadev Konar (mahadevkonar) Date: 2008-02-04 20:21 Message: Logged In: YES user_id=1926680 Originator: NO a few comments: new Random(System.currentTimeMillis() + + localIP.hashCode()); what is the idea behind adding ipaddress hashcode and currentimemillis? why not just use the serverid or in that case why not just use the raw server id for connection resolving? something like a server with higher server id is the server that the other connects to... ---------------------------------------------------------------------- Comment By: fpj (fpj) Date: 2008-01-31 17:14 Message: Logged In: YES user_id=1926444 Originator: YES File Added: patch-le-tcp-v2.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-31 17:14:20
|
Patches item #1881204, was opened at 2008-01-28 16:28 Message generated for change (Comment added) made by fpj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- >Comment By: fpj (fpj) Date: 2008-01-31 18:14 Message: Logged In: YES user_id=1926444 Originator: YES File Added: patch-le-tcp-v2.txt ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-30 19:52:04
|
Patches item #1882928, was opened at 2008-01-30 11:52 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1882928&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: java client Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Benjamin Reed (breed) Assigned to: Nobody/Anonymous (nobody) Summary: Log the uncaught exceptions from the SendThread and EventThr Initial Comment: If the SendThread or EventThread exit unexpectedly due to some runtime error, we should log it for post-mortum purposes. This patch also widens ZooLog to take Throwable rather than just Exception. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1882928&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-30 18:44:40
|
Patches item #1881545, was opened at 2008-01-29 01:56 Message generated for change (Comment added) made by mahadevkonar You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881545&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Mahadev Konar (mahadevkonar) >Assigned to: Mahadev Konar (mahadevkonar) Summary: consistent logging for session ids and other logging Initial Comment: logging the session ids in hex across servers. ---------------------------------------------------------------------- >Comment By: Mahadev Konar (mahadevkonar) Date: 2008-01-30 18:44 Message: Logged In: YES user_id=1926680 Originator: YES Committed revision 93. ---------------------------------------------------------------------- Comment By: fpj (fpj) Date: 2008-01-30 11:51 Message: Logged In: YES user_id=1926444 Originator: NO This is simple patch, so I don't have any major point to comment on. It's good for me. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881545&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-30 15:02:45
|
Patches item #1881204, was opened at 2008-01-28 16:28 Message generated for change (Settings changed) made by fpj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. >Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-30 15:01:44
|
Patches item #1882489, was opened at 2008-01-30 10:38 Message generated for change (Settings changed) made by fpj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1882489&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None >Status: Deleted Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1882489&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-30 11:51:49
|
Patches item #1881545, was opened at 2008-01-29 02:56 Message generated for change (Comment added) made by fpj You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881545&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mahadev Konar (mahadevkonar) Assigned to: Nobody/Anonymous (nobody) Summary: consistent logging for session ids and other logging Initial Comment: logging the session ids in hex across servers. ---------------------------------------------------------------------- >Comment By: fpj (fpj) Date: 2008-01-30 12:51 Message: Logged In: YES user_id=1926444 Originator: NO This is simple patch, so I don't have any major point to comment on. It's good for me. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881545&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-30 09:38:50
|
Patches item #1882489, was opened at 2008-01-30 10:38 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1882489&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1882489&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-29 01:56:29
|
Patches item #1881545, was opened at 2008-01-29 01:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881545&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mahadev Konar (mahadevkonar) Assigned to: Nobody/Anonymous (nobody) Summary: consistent logging for session ids and other logging Initial Comment: logging the session ids in hex across servers. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881545&group_id=209147 |
From: Andrew K. <ak...@ya...> - 2008-01-28 22:30:12
|
This release includes the new operation "sync" and a number of bug fixes. Please see Release notes for more details. |
From: SourceForge.net <no...@so...> - 2008-01-28 15:28:41
|
Patches item #1881204, was opened at 2008-01-28 16:28 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: server Group: None Status: Open Resolution: None Priority: 7 Private: No Submitted By: fpj (fpj) Assigned to: fpj (fpj) Summary: New leader election algorithm with TCP. Initial Comment: This is a feature request for a new leader election algorithm with TCP. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1881204&group_id=209147 |
From: SourceForge.net <no...@so...> - 2008-01-24 23:35:00
|
Patches item #1875540, was opened at 2008-01-19 15:03 Message generated for change (Comment added) made by akornev You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1875540&group_id=209147 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: java client Group: None >Status: Closed >Resolution: Accepted Priority: 5 Private: No Submitted By: Benjamin Reed (breed) Assigned to: Benjamin Reed (breed) Summary: Outgoing packets not getting aborted when connection closes Initial Comment: The outgoing packets don't get aborted when a connection closes. This means that packets that are waiting to be sent, but have not been may never get aborted if we never get a good connection back. This can cause synchronous calls to hang and asnyc calls to never get called back. ---------------------------------------------------------------------- >Comment By: Andrew Kornev (akornev) Date: 2008-01-24 15:35 Message: Logged In: YES user_id=1926652 Originator: NO +1 I'm applying the patch. Thanks! ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=1008546&aid=1875540&group_id=209147 |
From: Andrew K. <ak...@ya...> - 2008-01-24 22:18:50
|
The release includes some new features and a number of bug fixes. Please see the Release notes for more info https://sourceforge.net/project/shownotes.php?group_id=209147 <https://sourceforge.net/project/shownotes.php?group_id=209147&release_id=57 1147> &release_id=571147 |