1. 11 4月, 2013 2 次提交
  2. 10 4月, 2013 3 次提交
  3. 08 4月, 2013 1 次提交
  4. 07 4月, 2013 3 次提交
  5. 06 4月, 2013 1 次提交
  6. 04 4月, 2013 2 次提交
  7. 03 4月, 2013 1 次提交
  8. 02 4月, 2013 3 次提交
  9. 29 3月, 2013 1 次提交
  10. 28 3月, 2013 2 次提交
  11. 26 3月, 2013 5 次提交
    • K
      updated changelog for release · 4da0beb8
      Kohsuke Kawaguchi 提交于
      4da0beb8
    • K
      creating an RC branch · ec1f5138
      Kohsuke Kawaguchi 提交于
      ec1f5138
    • K
      recording the fix · cb8ba8cc
      Kohsuke Kawaguchi 提交于
      cb8ba8cc
    • K
      [FIXED JENKINS-7291] Permit flyweight tasks to run on master even when it has... · a114c693
      Kohsuke Kawaguchi 提交于
      [FIXED JENKINS-7291] Permit flyweight tasks to run on master even when it has zero configured executors.
      
      Always adding Computer for master as a fallback
      
      The original proposed fix for JENKINS-7291 creates a Computer object
      transitively. This seems unwise as it violates the design of Computer
      as stated in the javadoc, and for example we can end up creating two
      Computers for the master.
      
      I think a better fix is to create a Computer for the master all the
      time, even if there's no executors configured. The discrimination in
      Queue.makeBuildable would ensure that such phantom Computer is only used
      as a last resort (statistically speaking).
      
      I've also tweaked executors.jelly a bit. I simplified it somewhat
      based on the idea that "if there's only one computer to show, the
      context is likely making it obvious".
      
      (I must be missing the intricacy in the current code.)
      
      Originally developed in a branch at
      2c5b57fcc1f39ed39057254e802f4183db5aa0dc then squashed for clarity.
      a114c693
    • K
      recording JENKINS-17311 · c4760b47
      Kohsuke Kawaguchi 提交于
      c4760b47
  12. 25 3月, 2013 2 次提交
  13. 23 3月, 2013 2 次提交
  14. 22 3月, 2013 3 次提交
    • V
      Add changelog recored for pull #729 and #730 · 8284013b
      Vojtech Juranek 提交于
      8284013b
    • J
      [FIXED JENKINS-13154] AnnotationMapper bug was causing massive lock contention... · fdc090a3
      Jesse Glick 提交于
      [FIXED JENKINS-13154] AnnotationMapper bug was causing massive lock contention when saving fingerprints.
      fdc090a3
    • K
      [FIXED JENKINS-7813] · 8a3e909d
      Kohsuke Kawaguchi 提交于
      Fixed the throughput problem between master/slave communication.
      This fix contains two independent problems.
      
      One was in the remoting. During a large sustained data transfer
      (such as artifact archiving and large test reports), the way we
      were doing flow control and ACK-ing were penalizing us badly.
      I improved the flow control algorithm in remoting 1.23, and also
      increased advertised window size so that the transfer can saturate
      available bandwidth even when a latency is large. (And unless
      the reader side is excessivesly slow, this shouldn't increase
      any memory consumption.)
      
      The other fix was in trilead-ssh2, which is our SSH client
      implementation used by ssh-slaves plugin. The buffer size for flow
      control was too small. I improved the way buffering is done to reduce
      the memory footprint when the reader closely follows the writer, then I
      increased the advertised window size. Again, this shouldn't increase
      memory consumption (in fact it'll likely actually reduce them) unless
      the reader end gets abandoned.
      
      On my simulated latency-injected network, the sustained transfer rate is
      now on par with scp. We win for smaller files because of the TCP slow
      start penality that scp would incur, and we lose a bit as files get
      larger due to additional framing overhead.
      
      If you have manually extracted slave.jar and placed them on slaves, you
      need to update them to 2.23 to see the performance benefits.
      8a3e909d
  15. 19 3月, 2013 3 次提交
  16. 18 3月, 2013 3 次提交
  17. 16 3月, 2013 2 次提交
  18. 15 3月, 2013 1 次提交