[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-15 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41897  
 
 
  Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 iapetus, 1.0 , 1.0-rc1  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-15 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Duplicate  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Closing this as a duplicate of JENKINS-39770.  
 

  
 
 
 
 

 
 Jenkins /  JENKINS-41897  
 
 
  Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Duplicate  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit 

[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-15 Thread vivek.pan...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Vivek Pandey commented on  JENKINS-41897  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
 Maybe short term of 500 is fine. '/nodes/:id/steps/?start=0=500' would fetch 0 to 500 on first and then on subsequent requests client can look at Link HTTP header, fetch next and simply use it. For example: 

 

https://ci.blueocean.io/blue/rest/organizations/jenkins/pipelines/i386/pipelines/app-store-demo/master/runs/1/nodes/11/steps/?start=0=2
 

 HTTP link Header: 

 

link:rest/organizations/jenkins/pipelines/i386/pipelines/app-store-demo/master/runs/1/nodes/11/steps/?start=2=2>; rel="next"
 

  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-15 Thread tscher...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thorsten Scherler updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41897  
 
 
  Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
Change By: 
 Thorsten Scherler  
 

  
 
 
 
 

 
 [~tscherler] the steps api is paginated with a page size of 100 - the front end code will need to change to fetch the next patch of data (cc [~vivek]) In Scope:  * Adjust nodes api to fetch more [https://github.com/jenkinsci/blueocean-plugin/compare/raiseNodeLimitTo1000] * TestOut of scope:  * steps api (separate ticket) * making graph cope with loading large graphs of nodes in a paginated fashion (this needs more thinking and design).  This could be addressed with a refactoring of Karaoke I guess?  This also explains why only 100 parallel nodes are changed (in that case, it is pointless to show more, but 100 steps... you may want to show that).It seems that we only get a limited number of stepsUsing the following pipelineScript and [https://github.com/scherler/blueocean-shared-library/commit/43d5620a42d7795b43bc829d694c3cae2a3c3919]{code:java}@Library('test-writer') import writeTestimport longLognode {stage 'fin'def xml = writeTest()sh "echo '$xml' > TEST-some.xml"step([$class: 'JUnitResultArchiver', testResults: 'TEST-*.xml'])sh 'echo `date` fin;sleep 3; echo `date` fin;'sh 'echo yeah > foo.txt'archiveArtifacts 'foo.txt'longLog(1 , false )stage 'NoSteps'}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale commented on  JENKINS-41897  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
 James Dumay right - so we can bump some limit, but need to know what it would look like in future for these cases. I really don't think 500 dots across by 500 down is a great UX - but we can at least render something.    I am sure there is a longer term solution out there.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-14 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay commented on  JENKINS-41897  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
 Michael Neale certainly we need to figure out what a practical limit is for how many nodes to display. There is a design TODO for that in the backlog.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41897  
 
 
  Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 
 
Priority: 
 Minor Major  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41897  
 
 
  Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 

  
 
 
 
 

 
 [~tscherler] the steps api is paginated with a page size of 100 - the front end code will need to change to fetch the next patch of data (cc [~vivek])  In Scope:    * Adjust nodes api to fetch more [https://github.com/jenkinsci/blueocean-plugin/compare/raiseNodeLimitTo1000]   * TestOut of scope:    * steps api (separate ticket)   * making graph cope with loading large graphs of nodes in a paginated fashion (this needs more thinking and design).   This could be addressed with a refactoring of Karaoke I guess?  This also explains why only 100 parallel nodes are changed (in that case, it is pointless to show more, but 100 steps... you may want to show that).It seems that we only get a limited number of stepsUsing the following pipelineScript and [https://github.com/scherler/blueocean-shared-library/commit/43d5620a42d7795b43bc829d694c3cae2a3c3919]{code:java}@Library('test-writer') import writeTestimport longLognode {stage 'fin'def xml = writeTest()sh "echo '$xml' > TEST-some.xml"step([$class: 'JUnitResultArchiver', testResults: 'TEST-*.xml'])sh 'echo `date` fin;sleep 3; echo `date` fin;'sh 'echo yeah > foo.txt'archiveArtifacts 'foo.txt'longLog(1)stage 'NoSteps'}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 

[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-41897  
 
 
  Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 
 
Summary: 
 Karaoke:  steps and  nodes are limited to 100 - need to increase limit  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-41897) Karaoke: steps and nodes are limited to 100 - need to increase limit

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale commented on  JENKINS-41897  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Karaoke: steps and nodes are limited to 100 - need to increase limit   
 

  
 
 
 
 

 
 OK - lets keep the scope of this to do with increasing the limit for nodes - I will open another ticket for loading more steps as that can use pagination.    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.