Schedule large numbers of building jobs - perfromance issue

2015-01-19 Thread Tomasz Majchrowski
Dear All

The way in which Jenkins manages tasks and machines is very powerful. We 
are thinking about moving our python written system to distribute builds 
across server farm in to the Jenkins. 

The challenge that I recognize will be a number of parallel tasks that 
needs to be handle by Jenkins. Basically I create project which based on 
dependency triggers the downstream project with using of groovy system 
scripts and *schedule2(Task, int, List) 
http://javadoc.jenkins-ci.org/hudson/model/Queue.html#schedule2%28hudson.model.Queue.Task,%20int,%20java.util.List%29.*
 Since 
the number of downstream builds of the same project (with different 
parameter) may achieve range (200-1000) I recognize performance issue. 

It's really hard to say if the bottle neck is coming from: 
* the bad design of one of the plugin installed in the chain or 
* basically the Jenkins is not the right tool for such a scale of parallel 
task due to its' overhead. 

I debug a bit with visualvm to found a bottle neck, however couldn't found 
any interesting. Anyone is having experience with such a large build queue. 
Could you share hints/best practice?

Best regards, Tomasz Majchrowski.

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/bb6d5973-f2e1-4326-843e-5a20af42443a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How do we get jenkins diagnostics from slave

2015-01-19 Thread Mark Waite
That's all the logging there is from the git plugin.  The console log is
usually sufficiently verbose to provide everything I need for problem
diagnosis.

If you execute those commands from a job on the slave, do you see the same
results?

If you create a job that runs on the slave which only performs a git clone
https://localgitserveir/git/AXP.git;, does it fail with the same message?

If you create a job that runs on the slave and performs git init;git
config remote.origin.url https://localgitserveir/git/AXP.git;git fetch
origin;git checkout -f origin/master, does it fail with the same message?

Is your git repository using one or more submodules?  If so, do those
submodule repositories require authentication?  If so, then you'll need to
find another way of performing the checkout.  The git plugin does not
support applying credentials to git submodule update.

Mark Waite

On Mon, Jan 19, 2015 at 2:54 PM, Parag Paul parag.p...@gmail.com wrote:

 After some wondering with the System Log in the Manage Jenkins -Sytem
 Log,
 I was able to add a logger for hudson.plugins.git  but it has very minimal
 output. It only posts, the the followig

 Jan 19, 2015 1:47:05 PM FINE hudson.Proc

 Running: git rev-parse --is-inside-work-tree

 Jan 19, 2015 1:47:05 PM FINE hudson.Proc

 Running: git config remote.origin.url https://localgitserveir/git/AXP.git

 Jan 19, 2015 1:47:05 PM FINE hudson.Proc

 Running: git --version


 and nothing more. It is at tghis point, where the log ends saying, error 
 fetching remote


 On Monday, January 19, 2015 at 1:34:07 PM UTC-8, Parag Paul wrote:

 I would like to extend the past reply. Srry for pressing hit too soon.
 What is the right way to find the exact operations that the git plugin
 does. In the cases , where the slave and the master is in the same box, I
 see that it mentioned
 Using .gitcredentials

 I dont see it in the slave machine.

 On Monday, January 19, 2015 at 1:32:50 PM UTC-8, Parag Paul wrote:

 Is there a place where I can find , the exact commands that the git
 plugin uses ?

 On Monday, January 19, 2015 at 1:13:26 PM UTC-8, Mark Waite wrote:

 You might try debugging by creating build steps which perform the
 operations you need, rather than using the git plugin to perform those
 operations.  Then you can enable the debugging options or levels which best
 suit your needs.

 On Mon, Jan 19, 2015 at 1:34 PM, Parag Paul parag...@gmail.com wrote:

 The console output is not enough. For me, only for one of the GIT
 respositories, a fetch from the repo keeps failing. This is a local git
 server that we have setup on a OSX box


 We keep getting this error on the slave
 Error fetching remote repo 'origin'

 We are running jenkins master on another OSX box and that has
 credentials plugin setup. The credentials work fine, when I use my github
 repository URL but not when i used the local git box.
 I have seen numerous answers around the same problem but did not get
 any help. I set up a local osx-keychain through credential-helper but 
 could
 not get it to work. It fails all the time with the same error messahe


  --
 You received this message because you are subscribed to the Google
 Groups Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to jenkinsci-use...@googlegroups.com.
 To view this discussion on the web visit https://groups.google.com/d/
 msgid/jenkinsci-users/82434764-5a18-473b-a57a-
 6edb15b937cd%40googlegroups.com
 https://groups.google.com/d/msgid/jenkinsci-users/82434764-5a18-473b-a57a-6edb15b937cd%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 --
 Thanks!
 Mark Waite

  --
 You received this message because you are subscribed to the Google Groups
 Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to jenkinsci-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/jenkinsci-users/c902f5bc-af1a-4c25-a735-2363fdc8a96e%40googlegroups.com
 https://groups.google.com/d/msgid/jenkinsci-users/c902f5bc-af1a-4c25-a735-2363fdc8a96e%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 For more options, visit https://groups.google.com/d/optout.




-- 
Thanks!
Mark Waite

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtH%3D5V8XCzWROHzwqWidiz2SdoWSDu3r6n7JgJ76_KaiQw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[jenkins-workflow] How to inject a password in an sh step? Credentials Binding Plugin?

2015-01-19 Thread Cyrille Le Clerc
Dear community,

Could someone explain me how to retrieve in a Jenkins workflow a password 
that has been declared as a username/password in the Jenkins Credentials 
store?

Is it possible to use the Credentials Binding Plugin 
https://wiki.jenkins-ci.org/display/JENKINS/Credentials+Binding+Plugin in 
a workflow? Does this plugin need to be updated to work in a workflow?

Cyrille

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/a327274a-67b4-4f7d-a42c-537692c39d0c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Problems with Slave Setup Plugin

2015-01-19 Thread jhavero
I'm using Amazon EC2 plugin to spin up my slave and the Slave Setup Plugin 
to run some pre-launch scripts.
For the pre-launch script I have ./pre-launch.sh and for prepare script I 
have ./prepare.sh. I checked
both these scripts are exiting 0 and are stored in the Jenkins home 
directory of the Jenkins master.

When the slave starts up I get these errors:

executing pre-launch scripts ...
script failed with exception: null
.
.
.
executing prepare script ...
script failed with exception: null

My versions:



*Slave Setup Plugin 1.8Amazon EC2 plugin 1.24Jenkins 1.597*

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/6876520e-9d86-4403-843d-064b500906d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Auto-generating a complex view setup

2015-01-19 Thread Paul Gorman
Since the job-dsl only creates at the root level I let a new view be 
created at the root level then wrote a Groovy script to move it.

I basically serialise both the existing view and the new view using the 
writeXml method on View. This strips out the owner. I then use XmlParser to 
add the correct owner back into the XML and attach the new view to the 
correct part of the existing nested view.

I then delete both of the views and add the one I just constructed.

On Wednesday, November 26, 2014 at 8:50:42 AM UTC+11, Rob Mandeville wrote:

  I have a matrix of n projects building on m branches, and I am putting 
 together pipelines for each one.  That is, there are a set of jobs of the 
 form “regression tests for branch FOO of project BAR”.  I have a JSON file 
 showing the list of branches, projects, and their configurations.  With 
 that, I’ve developed an intricate system to regenerate all the jobs with no 
 problem.  Now, I just need to generate several dozen views.

  

 The hierarchy which I have been building by hand is:

  

 · (Nested View) Branch Builds

 o   (Monitor View) All Builds for Branch FOO

 o   (Monitor View) All Regression Tests for Branch FOO

 o   (Nested View) Regression Pipelines for Branch FOO

 §  (Build Pipeline View) Regression Pipeline for Branch FOO Project BAR

 §  (Build Pipeline View) Regression Pipeline for Branch FOO Project QUX

 §  …

 o   (Build Pipeline View) Builds for Branch FOO Project BAR

 o   (Build Pipeline View) Builds for Branch FOO Project QUX

 o   …

  

 This is no longer scalable, and I’m wearing out my mouse button.

  

 I have been trying to use the Job DSL Plugin to handle this, to no avail.  
 It has no support for monitor views, and when I try to nest nested views 
 inside each other, the views all end up at the top level, making the tab 
 bar ridiculously long.

  

 Is there a plugin I can use, a technique you know of, or even a way to 
 insert views via XML without rebooting the Jenkins server?

  

 Thanks in advance,

  

 --Rob

  
  
 --
 This e-mail and the information, including any attachments it contains, 
 are intended to be a confidential communication only to the person or 
 entity to whom it is addressed and may contain information that is 
 privileged. If the reader of this message is not the intended recipient, 
 you are hereby notified that any dissemination, distribution or copying of 
 this communication is strictly prohibited. If you have received this 
 communication in error, please immediately notify the sender and destroy 
 the original message.

 Thank you.

 Please consider the environment before printing this email.
  

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7140dcea-8860-45db-a776-6c0c4c26cc98%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


job-dsl-add-new-nested-view-into-nested-views.groovy
Description: Binary data


job-dsl-nested-view.groovy
Description: Binary data


plugin for itsm/cmdb tool like itop

2015-01-19 Thread Ankush Aggarwal
Hi,

I am looking for plugin that can be integrated with itsm/cmdb tool like 
itop. does anyone help me on this?

Thanks,
Ankush

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/587e762e-a804-447d-aea0-9a978c2e8f19%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


NPE in hudson.scm.SCM?

2015-01-19 Thread Stefan Seidel
Hi,

I was told by Jenkins to report this here ;)

java.lang.NullPointerException 
http://stacktrace.jenkins-ci.org/search?query=java.lang.NullPointerException  
 at hudson.scm.SCM.getDescriptor(SCM.java:650) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.SCM.getDescriptorentity=method
at hudson.scm.AutoBrowserHolder.get(AutoBrowserHolder.java:54) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.AutoBrowserHolder.getentity=method
at hudson.scm.SCM.getEffectiveBrowser(SCM.java:136) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.SCM.getEffectiveBrowserentity=method
at hudson.scm.ChangeLogSet.browserFromBuild(ChangeLogSet.java:82) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.ChangeLogSet.browserFromBuildentity=method
at hudson.scm.ChangeLogSet.init(ChangeLogSet.java:76) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.scm.ChangeLogSet.%3Cinit%3Eentity=method
at 
hudson.maven.FilteredChangeLogSet.init(FilteredChangeLogSet.java:44) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.FilteredChangeLogSet.%3Cinit%3Eentity=method
at hudson.maven.MavenBuild.getChangeSet(MavenBuild.java:197) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.MavenBuild.getChangeSetentity=method
at hudson.model.AbstractBuild.getCulprits(AbstractBuild.java:349) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild.getCulpritsentity=method
at hudson.maven.reporters.MavenMailer.end(MavenMailer.java:72) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.reporters.MavenMailer.endentity=method
at hudson.maven.AbstractMavenBuilder.end(AbstractMavenBuilder.java:104) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.AbstractMavenBuilder.endentity=method
at 
hudson.maven.MavenModuleSetBuild$MavenModuleSetBuildExecution.doRun(MavenModuleSetBuild.java:846)
 
http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.MavenModuleSetBuild$MavenModuleSetBuildExecution.doRunentity=method
at 
hudson.model.AbstractBuild$AbstractBuildExecution.run(AbstractBuild.java:533) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.model.AbstractBuild$AbstractBuildExecution.runentity=method
at hudson.model.Run.execute(Run.java:1759) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.model.Run.executeentity=method
at hudson.maven.MavenModuleSetBuild.run(MavenModuleSetBuild.java:529) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.maven.MavenModuleSetBuild.runentity=method
at hudson.model.ResourceController.execute(ResourceController.java:89) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.model.ResourceController.executeentity=method
at hudson.model.Executor.run(Executor.java:240) 
http://stacktrace.jenkins-ci.org/search/?query=hudson.model.Executor.runentity=method

Any clues? It just happens every now and then on our builds, causing the build 
to fail. I don't even know if this is from hudson itself or a plugin ...

Stefan


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7565404e-0a9e-426e-853c-13506afafb67%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How do we get jenkins diagnostics from slave

2015-01-19 Thread Parag Paul
After some wondering with the System Log in the Manage Jenkins -Sytem Log, 
I was able to add a logger for hudson.plugins.git  but it has very minimal 
output. It only posts, the the followig

Jan 19, 2015 1:47:05 PM FINE hudson.Proc

Running: git rev-parse --is-inside-work-tree

Jan 19, 2015 1:47:05 PM FINE hudson.Proc

Running: git config remote.origin.url https://localgitserveir/git/AXP.git

Jan 19, 2015 1:47:05 PM FINE hudson.Proc

Running: git --version


and nothing more. It is at tghis point, where the log ends saying, error 
fetching remote


On Monday, January 19, 2015 at 1:34:07 PM UTC-8, Parag Paul wrote:

 I would like to extend the past reply. Srry for pressing hit too soon. 
 What is the right way to find the exact operations that the git plugin 
 does. In the cases , where the slave and the master is in the same box, I 
 see that it mentioned
 Using .gitcredentials

 I dont see it in the slave machine. 

 On Monday, January 19, 2015 at 1:32:50 PM UTC-8, Parag Paul wrote:

 Is there a place where I can find , the exact commands that the git 
 plugin uses ?

 On Monday, January 19, 2015 at 1:13:26 PM UTC-8, Mark Waite wrote:

 You might try debugging by creating build steps which perform the 
 operations you need, rather than using the git plugin to perform those 
 operations.  Then you can enable the debugging options or levels which best 
 suit your needs.

 On Mon, Jan 19, 2015 at 1:34 PM, Parag Paul parag...@gmail.com wrote:

 The console output is not enough. For me, only for one of the GIT 
 respositories, a fetch from the repo keeps failing. This is a local git 
 server that we have setup on a OSX box


 We keep getting this error on the slave
 Error fetching remote repo 'origin'

 We are running jenkins master on another OSX box and that has 
 credentials plugin setup. The credentials work fine, when I use my github 
 repository URL but not when i used the local git box.
 I have seen numerous answers around the same problem but did not get 
 any help. I set up a local osx-keychain through credential-helper but 
 could 
 not get it to work. It fails all the time with the same error messahe


  -- 
 You received this message because you are subscribed to the Google 
 Groups Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to jenkinsci-use...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/jenkinsci-users/82434764-5a18-473b-a57a-6edb15b937cd%40googlegroups.com
  
 https://groups.google.com/d/msgid/jenkinsci-users/82434764-5a18-473b-a57a-6edb15b937cd%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Thanks!
 Mark Waite
  


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/c902f5bc-af1a-4c25-a735-2363fdc8a96e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[workflow-plugin] Use external script for running the flow

2015-01-19 Thread Timur Batyrshin
Hi,

I'd like to store the script for running the flow in Git but it looks like 
I can't do the SCM checkout before running the flow.
I could write some additional lines in the flow script (one for checkout 
and one load command) but the checkout commands
are too large in the current state (like:
checkout changelog: true, poll: true, scm: [$class: 'GitSCM', branches: 
[[name: 'remotes/origin/master']], userRemoteConfigs: [[credentialsId: 
'XXX-XX-X-XXX', url: 
'https://github.com/X/XX.git']]]
).

Is there a way to do the initial checkout using plain Jenkins checkout 
feature or should I use this approach? Probably some other ways of doing 
that?


Thanks,
Timur

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/3ce5d406-8708-4d0b-9fb7-a93e3383cdbe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Intermittent Hangs on Jenkins

2015-01-19 Thread Andrew Smith
Looks like my attachments got stripped, files are:

jstack - http://dpaste.com/1DZ44P7
jmap - http://dpaste.com/1FQJC3N



On 16 January 2015 at 17:46, Andrew Smith m...@andrewmichaelsmith.com wrote:

 Hi

 We're getting intermittent hangs on our jenkins server. Basically it just
 stops responding completely. We see our access attempts in the access.log
 but the jenkins log is no longer updated.

 The only way to rectify the issue seems to be to restart jenkins.

 I've followed
 https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+is+hanging and have
 attached our jstack and jmap outputs.

 Any ideas?

 Thanks




-- 
Andy Smith
http://andrewmichaelsmith.com | @bingleybeep

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CALfgT%3DoD%3Dyc8TC7_aXwTOGLpmmLWSjqZCPdhm11fs_WAb%3DTdzA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


multi-module jobs - performance issue

2015-01-19 Thread Tomasz Majchrowski
Dear All

I found the way how the Jenkins manage nodes and jobs distribution very
powerful. We are thinking about moving our automated build system developed
on top of python into the Jenkins jobs.

The basic idea is to analyze the dependency in one upstream job and build
each module as a separate downstream Job. The downstream jobs will be
triggered with using of scheduleBuild2(int quietPeriod, Cause c, Action...
actions).

This works pretty well with amount of jobs till 50. The more parallel jobs
we have the less responsive UI we've got. Since the environment for which
I'm preparing setup requires maintain of multiple configuration in practice
I can expect situation up to 500-700 jobs running.

Does anyone of you have experience with using Jenkins to cope which such a
mount of jobs?
Could you share your experience in this area?
Does it make sense to continue this direction or basically the Jenkins is
to heavy because of numbers of plugin in toolchain that might slow down
processing?

Best regards, Tomasz.
-- 
Pozdrawiam/Best regards/Mit freundlichen Grüßen, Tomasz Majchrowski,
Information Technology and Services Consultant and Contractor

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAGp7fHXX2a-OzUHt2cLhSFOpd%3DGybhL6EUOqkJ2YLTsPryiJcw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: multi-module jobs - performance issue

2015-01-19 Thread Stephen Connolly
Jenkins installations with over 200 slaves per master are non-trivial to
tune up. It's not impossible, e.g. I know of a few installations with over
1k executors, but it certainly is fun

On 19 January 2015 at 13:32, Tomasz Majchrowski use...@majchrowski.de
wrote:

 Dear All

 I found the way how the Jenkins manage nodes and jobs distribution very
 powerful. We are thinking about moving our automated build system developed
 on top of python into the Jenkins jobs.

 The basic idea is to analyze the dependency in one upstream job and build
 each module as a separate downstream Job. The downstream jobs will be
 triggered with using of scheduleBuild2(int quietPeriod, Cause c, Action...
 actions).

 This works pretty well with amount of jobs till 50. The more parallel jobs
 we have the less responsive UI we've got. Since the environment for which
 I'm preparing setup requires maintain of multiple configuration in practice
 I can expect situation up to 500-700 jobs running.

 Does anyone of you have experience with using Jenkins to cope which such a
 mount of jobs?
 Could you share your experience in this area?
 Does it make sense to continue this direction or basically the Jenkins is
 to heavy because of numbers of plugin in toolchain that might slow down
 processing?

 Best regards, Tomasz.
 --
 Pozdrawiam/Best regards/Mit freundlichen Grüßen, Tomasz Majchrowski,
 Information Technology and Services Consultant and Contractor

 --
 You received this message because you are subscribed to the Google Groups
 Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to jenkinsci-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/jenkinsci-users/CAGp7fHXX2a-OzUHt2cLhSFOpd%3DGybhL6EUOqkJ2YLTsPryiJcw%40mail.gmail.com
 https://groups.google.com/d/msgid/jenkinsci-users/CAGp7fHXX2a-OzUHt2cLhSFOpd%3DGybhL6EUOqkJ2YLTsPryiJcw%40mail.gmail.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CA%2BnPnMx6OKEy74BX6E3XznSTrxpfJS0E58k7WSp-YLnuaUAp3g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Gerrit Trigger and email notification

2015-01-19 Thread Robert Sandell
Are you using the Gerrit Trigger Build Chooser? It should only select the 
patch set that triggered the build to be in the change list.

/B

On Friday, January 16, 2015 at 5:21:14 AM UTC+1, 李大明 wrote:

 I set up a Jenkins server and use gerrit trigger, I want to configure 
 Jenkins to send notification mail when build fail.

 Problems are

 1. Jenkins list commits that are merged in to target branch, not the 
 commit in patchset. That causes some confusion

 2. Jenkins knowns only user name from gerrit, but no email address, so I 
 got

 Failed to send e-mail to  because no e-mail address is known, and no 
 default e-mail domain is configured

 Does LDAP Email Plugin solve this issue?





-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/bc4648f4-507f-48d0-9136-7f780905b9a5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Immediate Requirement || .Net Developers with javacsript@Jersey City, NJ

2015-01-19 Thread Anurag Singh
Please find the detailed job description mention below.

It will be really appreciated if you can provide me your updated resume at
your earliest.

Looking forward for your response.

JOB Title : .Net WPF, Javascript UI Developers
Location  : Jersey City, NJ
Duration :  12+ Months

Job description:


*Need locals who can come for F2F*
* Responsibilities*
 - Application user interface development in C# / .NET or JavaScript
 - Analysing and developing WPF/Javascript user interfaces in a
sophisticated framework
 - Supporting a complex, high volume critical business
 - Producing well-tested, performant code to tight timelines
 - Working with a cross-functional, cross-regional team of developers,
project analysts and managers
 - Work independently and able to thrive in a challenging environment
 *Basic Qualifications *
 - Experience working with and supporting demanding users in a global
environment
 - Practical expertise in C# / .NET or Javascript/AngularJS user interface
development
 - Experience building complex applications in WPF
 - Strong analytical skills
 - At least 3 years of hands-on software development experience in a
commercial environment

Immediate

-- 

Thanks  Regards*,*



Anurag Singh

Phone: 609-897-9670 x 2188

Email: anurag.sysm...@gmail.com

Fax: 609-228-5522

Address: 38 Washington Road, Princeton Jn, NJ 08550

[image: cid:image001.png@01CEC4D8.49178020]

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPz5vzs0NvXGPdgmG6BcvS1xYYt3Y%2BPXrsBQ%3D7TcjjGcpWesrA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Immediate Requirement || Java Server Side Developers@Jersey City, NJ

2015-01-19 Thread Anurag Singh
Please find the detailed job description mention below.

It will be really appreciated if you can provide me your updated resume at
your earliest.

Looking forward for your response.

JOB Title : Java Server Side Developers with Restful Webservices Experience
Location  : Jersey City, NJ
Duration :  12+ Months

Job description:

*Need locals who can come for F2F*
* Responsibilities*
 • Requirements analysis and technical design
 • Hands on implementation of scalable robust systems (including testing)
 *Basic Qualifications Experience/Skills Necessary: *
 Excellent programming ability and knowledge of Java are the most critical
skills required for this position. The candidate should have at least 3
years of expertise in developing Java applications. Experience programming
in a real-time asynchronous systems desirable. An emphasis on server side
development is expected. Other relevant technical skills:

 • Strong Server Side Java programming experience
 • Knowledge or RESTful service implementation (Jersey/Grizzly)
 • Knowledge of RDBMS
 • Knowledge of data modelling skills
 • OO analysis and design

-- 

Thanks  Regards*,*



Anurag Singh

Phone: 609-897-9670 x 2188

Email: anurag.sysm...@gmail.com

Fax: 609-228-5522

Address: 38 Washington Road, Princeton Jn, NJ 08550

[image: cid:image001.png@01CEC4D8.49178020]

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPz5vztPXwOd1DQNRdAeoshuQrtq-SdMGS1H8zAHzuB%3D0vkkaQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


RE: Urgent Position:- Salesforce Admin(12+Months,PA)

2015-01-19 Thread Allen Fisher
Is there an admin I can report these emails to? I’m getting really tired of 
them.

From: pragyan dixit [mailto:pragyan.sysm...@gmail.com]
Sent: Monday, January 19, 2015 10:55 AM
To: pragyan dixit
Subject: Urgent Position:- Salesforce Admin(12+Months,PA)


Hi,

Hope you are doing great!!
Please find the requirement below , If you find yourself comfortable with the 
requirement please reply back with your updated resume.

Position:Salesforce Admin
Location:   Malvern ,PA
Duration:   12+ Month

Required:-

Salesforce Admin is Responsible for the development, enhancements and support 
of Salesforce.com application for HR Crew Central. Work with team of crew and 
contractors building and designing solutions, and troubleshooting production 
issues. Good communication skills are important, will need to work directly 
with the HR business leads and implementation partner.

Salesforce Administrators (201) Certification - required
Salesforce Developer (401) Certification - required
Salesforce Architects (501) Certification - recommended but not required
Integration knowledge with third party cloud applications (for example: 
Workday, Cornerstone and etc)
Strong in web service development and architecture

Thanks  Regards,
Pragyan Dixit
Technical Executive
Email:pragyan.sysm...@gmail.commailto:pragyan.sysm...@gmail.com
38 Washington Road, Princeton Junction, NJ: 08550
Ph:609-897-9670 Ext :- 2154
M: 609-297-0794
[cid:image001.gif@01D033D7.C3653740]

P Help! Preserve trees. Please don't print this e-mail unless you really need 
to.


--
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
jenkinsci-users+unsubscr...@googlegroups.commailto:jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAHLXk_zZsCDkW8bb5M4AgHNe0UWLaq-76zjNa%2BUAT%2BDUitYpeQ%40mail.gmail.comhttps://groups.google.com/d/msgid/jenkinsci-users/CAHLXk_zZsCDkW8bb5M4AgHNe0UWLaq-76zjNa%2BUAT%2BDUitYpeQ%40mail.gmail.com?utm_medium=emailutm_source=footer.
For more options, visit https://groups.google.com/d/optout.

___


Confidentiality Notice: This e-mail, including attachments, may include 
confidential and/or proprietary information, and may be used only by the person 
or entity to which it is addressed. If the reader of this e-mail is not the 
intended recipient or his or her authorized agent, the reader is hereby 
notified that any dissemination, distribution or copying of this e-mail is 
prohibited. If you have received this e-mail in error, please notify the sender 
by replying to this message and delete this e-mail immediately.



-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/A9C96A00385C414C92992CAA014170E963C00BFE95%40exchep1.
For more options, visit https://groups.google.com/d/optout.


Urgent Position:- PERFORMANCE ENGINEER (12+Months,PA)

2015-01-19 Thread pragyan dixit
*Hi,
*


*Hope you are doing great!!Please find the requirement below , If you find
yourself comfortable with the requirement please reply back with your
updated resume.*



*Position:Performance EngineerLocation:Malvern ,PADuration:   12+
Month*


*Required:-*

*Experience on Performance Profiling Tools like VSTS Profiler,.Net Memory
Profiler, CLR Profiler, J Probe, J Analyzer, Web Logic Analyzer, Win Dbg,
SQL Analyzer, SQL Profiler, Oracle OEM, Network Sniffers, Network
Profiler,Disk Defragmenter, Memory Analyzers, Performance Monitors,
Sitesope, Application Vantage, Vantage Analyzer, PMD,Dynatrace APM,HP
Diagnostics APM, HP Performance Center v9  etc.*
*Experience on J2EE and .Net Scalability analysis and fixing performance.*
*All required tools of Client, JVM and Database Tuning.*
*Experience on Middleware Tuning and assessment.*
*Effectively carried out performance engineering methodology analysis.*
*Experience on performance testing tools like Load Runner, QA Load, Open
STA, VSTS, and Silk Performer, JMeter, Rational Performance Tester, etc.
Experience in WAPT (Web Application Performance Testing) *
*Instrumental in working on all UNIX and Windows Flavors. *
*Prepared the load test scripts using Microsoft VSTS and executed the
scripts. *
*Prepared the profiling snapshots using JProbe for Java related
applications and measured the transaction cost ( For machine cycles and
memory cost)*
*Memory leak specific profiling was done and provides recommendations. *
*Profiled the .Net server components using VSTS Profiler.*
*Read the .Net and J2EE code via static analysis. *
*Used PMD and Sonar for static performance recommendations. *
*Used Dynatrace for APM level measurements*
*Used Fiddler and HTTP Watch for client level measurements. *
*Used browser profiling components (chrome and IE profiling) for Java
Script execution times.*
*Used UML for class normalization options.*
*Periodic analysis of the website#8217;s new version code using all the
above techniques.*
*Provided trainings and discussions regarding performance to other
stakeholders*
*Discussed and provided the recommendations for SEO*
*Involved in the design level discussions and improvements.*
*Took the code and tuned the code for better performance wherever required
(Both J2EE and .Net Applications.)*
*Prepared the load test scripts using Microsoft Loadrunner and executed the
scripts. *
*Prepared the profiling snapshots using JProbe, JProfiler for Java related
applications and measured the transaction cost.*
*Memory leak specific profiling was done and provides recommendations. *
*Profiled the .Net server components using VSTS Profiler.*
*Read the .Net and J2EE code via static analysis. *
*Used PMD and Sonar for static performance recommendations. *
*Used Dynatrace for APM level measurements*
*Used Fiddler and HTTP Watch for client level measurements. *
*Used browser profiling components (chrome and IE profiling) for Java
Script execution times.*
*Used UML for class normalization options.*
*Periodic analysis of the website#8217;s new version code using all the
above techniques.*
*Provided trainings and discussions regarding performance to other
stakeholders*
*Discussed and provided the recommendations for SEO (search engine
optimizations) related operations. *
*Involved in the design level discussions and improvements.*
*Took the code and tuned the code for better performance wherever required
(Both J2EE and .Net Applications.)*
*Analyzed Performance Center test result Involved in Preparing Test Plan
and Test Cases based on the analysis of the business requirements.*
*Executed Performance tests using Performance Center and modified the
scripts from performance Center.*
*Used Performance Center for activities like Load generator setup and agent
setup *
*Used Performance Center for load scripts management and performance test
management.*
*Launched and maintained the performance test facilities using Performance
center.*
*Also utilized Performance Center for load test agent management.*


Thanks  Regards,


*Pragyan DixitTechnical ExecutiveEmail*:pragyan.sysm...@gmail.com
38 Washington Road, Princeton Junction, NJ: 08550
Ph:609-897-9670 Ext :- 2154
M: 609-297-0794
[image: Description: Description: Description: Description: Description:
cid:image001.gif@01CC0A79.D4FFDB80]

P *Help! Preserve trees. Please don't print this e-mail unless you really
need to.*

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAHLXk_wdRBAiiWni66PqDEvAhWKonvLHLDm1hee_f_QT5mAx8Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Urgent Position:- Salesforce Admin(12+Months,PA)

2015-01-19 Thread pragyan dixit
*Hi,
*


*Hope you are doing great!!Please find the requirement below , If you find
yourself comfortable with the requirement please reply back with your
updated resume.*



*Position:Salesforce AdminLocation:   Malvern ,PADuration:   12+ Month*


*Required:-*

*Salesforce Admin is Responsible for the development, enhancements and
support of Salesforce.com application for HR Crew Central. Work with team
of crew and contractors building and designing solutions, and
troubleshooting production issues. Good communication skills are important,
will need to work directly with the HR business leads and implementation
partner.*





*Salesforce Administrators (201) Certification - required Salesforce
Developer (401) Certification - required Salesforce Architects (501)
Certification - recommended but not required Integration knowledge with
third party cloud applications (for example: Workday, Cornerstone and etc)
Strong in web service development and architecture*


Thanks  Regards,


*Pragyan DixitTechnical ExecutiveEmail*:pragyan.sysm...@gmail.com
38 Washington Road, Princeton Junction, NJ: 08550
Ph:609-897-9670 Ext :- 2154
M: 609-297-0794

P *Help! Preserve trees. Please don't print this e-mail unless you really
need to.*

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAHLXk_zZsCDkW8bb5M4AgHNe0UWLaq-76zjNa%2BUAT%2BDUitYpeQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Warnings Plugin Slow?

2015-01-19 Thread Trinition

I *think* this is the code that actually calculates the deltas (correct me 
if I'm wrong!): AnnotationDifferencer.java 
https://github.com/jenkinsci/analysis-core-plugin/blob/master/src/main/java/hudson/plugins/analysis/core/AnnotationDifferencer.java

On Monday, January 19, 2015 at 1:57:59 PM UTC-5, Trinition wrote:

 We're using the Warnings Plugin 
 https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin in our CI 
 build, and doing some time-stamp logging in our build, I've found that 1 
 miunte of our 13 minute build is spent here:

 11:13.1 00:10.6 [WARNINGS] Parsing warnings in console log with parser 
 MSBuild Custom
 *11:23.8 01:10.8 [WARNINGS] Computing warning deltas based on reference 
 build #515*
 12:34.5 00:00.0 [TASKS] Scanning folder 'C:\Workspace\MyProject' for 
 files matching the pattern '**/*.cs,**/*.xaml' - excludes: 


 The first column is a relative timestamp within the build (thanks to 
 Timestamper 
 plugin https://wiki.jenkins-ci.org/display/JENKINS/Timestamper).  The 
 second column is the time until the *next* timestamp.  So the time 
 between Parsing warnings... until Computing warning deltas was 10 
 seconds.  But then the time from Computing warning deltas until the task 
 scanning starts was over 1 minute!

 I don't know exactly what the warning delta calculation involves, but it 
 appears to be quite intensive!

 Does anyone have insight to why this might be slow?

 FWIW, out project has ~50 warnings out of 1M+ lines of code (though the 
 warnings are extracted from the build's console output, not the source 
 lines).


-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/00c23de9-84be-4764-8956-00f5d4c7db88%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Immediate Requirement || .Net Developers with javacsript@Jersey City, NJ

2015-01-19 Thread طلال Anthony رابعة
Any chance we can add this guy to a spam list? This isn’t the place for job 
postings…

 On Jan 19, 2015, at 11:56 AM, Anurag Singh anurag.sysm...@gmail.com wrote:
 
 Please find the detailed job description mention below.
 
 It will be really appreciated if you can provide me your updated resume at 
 your earliest.
 
 Looking forward for your response.
 
 JOB Title : .Net WPF, Javascript UI Developers
 Location  : Jersey City, NJ
 Duration :  12+ Months
 
 Job description:
 
 Need locals who can come for F2F 
  Responsibilities 
  - Application user interface development in C# / .NET or JavaScript 
  - Analysing and developing WPF/Javascript user interfaces in a sophisticated 
 framework 
  - Supporting a complex, high volume critical business 
  - Producing well-tested, performant code to tight timelines 
  - Working with a cross-functional, cross-regional team of developers, 
 project analysts and managers 
  - Work independently and able to thrive in a challenging environment 
  Basic Qualifications 
  - Experience working with and supporting demanding users in a global 
 environment 
  - Practical expertise in C# / .NET or Javascript/AngularJS user interface 
 development 
  - Experience building complex applications in WPF 
  - Strong analytical skills 
  - At least 3 years of hands-on software development experience in a 
 commercial environment
 Immediate
 
 -- 
 Thanks  Regards,
  
 Anurag Singh
 Phone: 609-897-9670 x 2188 
 Email: anurag.sysm...@gmail.com mailto:nurag.sysm...@gmail.com
 Fax: 609-228-5522
 Address: 38 Washington Road, Princeton Jn, NJ 08550 
 image001.png
 
 
 -- 
 You received this message because you are subscribed to the Google Groups 
 Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send an 
 email to jenkinsci-users+unsubscr...@googlegroups.com 
 mailto:jenkinsci-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/jenkinsci-users/CAPz5vzs0NvXGPdgmG6BcvS1xYYt3Y%2BPXrsBQ%3D7TcjjGcpWesrA%40mail.gmail.com
  
 https://groups.google.com/d/msgid/jenkinsci-users/CAPz5vzs0NvXGPdgmG6BcvS1xYYt3Y%2BPXrsBQ%3D7TcjjGcpWesrA%40mail.gmail.com?utm_medium=emailutm_source=footer.
 For more options, visit https://groups.google.com/d/optout 
 https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/3FD877AF-1239-43FB-A5E2-FAD1650BC9CC%40rabaa.ca.
For more options, visit https://groups.google.com/d/optout.


Re: How do we get jenkins diagnostics from slave

2015-01-19 Thread Mark Waite
You might try debugging by creating build steps which perform the
operations you need, rather than using the git plugin to perform those
operations.  Then you can enable the debugging options or levels which best
suit your needs.

On Mon, Jan 19, 2015 at 1:34 PM, Parag Paul parag.p...@gmail.com wrote:

 The console output is not enough. For me, only for one of the GIT
 respositories, a fetch from the repo keeps failing. This is a local git
 server that we have setup on a OSX box


 We keep getting this error on the slave
 Error fetching remote repo 'origin'

 We are running jenkins master on another OSX box and that has credentials
 plugin setup. The credentials work fine, when I use my github repository
 URL but not when i used the local git box.
 I have seen numerous answers around the same problem but did not get any
 help. I set up a local osx-keychain through credential-helper but could not
 get it to work. It fails all the time with the same error messahe


  --
 You received this message because you are subscribed to the Google Groups
 Jenkins Users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to jenkinsci-users+unsubscr...@googlegroups.com.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/jenkinsci-users/82434764-5a18-473b-a57a-6edb15b937cd%40googlegroups.com
 https://groups.google.com/d/msgid/jenkinsci-users/82434764-5a18-473b-a57a-6edb15b937cd%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




-- 
Thanks!
Mark Waite

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtHhfzp4waXTZB2BOeuN2GEjseuM4GOUMCOiEQCxqx4Y2A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Urgent Position:- PERFORMANCE ENGINEER (12+Months,PA)

2015-01-19 Thread pragyan dixit
*Hi,
*


*Hope you are doing great!!Please find the requirement below , If you find
yourself comfortable with the requirement please reply back with your
updated resume.*



*Position:Salesforce Location:  Malvern ,PADuration:   12+ Month*


*Required:-*

*Experience on Performance Profiling Tools like VSTS Profiler,.Net Memory
Profiler, CLR Profiler, J Probe, J Analyzer, Web Logic Analyzer, Win Dbg,
SQL Analyzer, SQL Profiler, Oracle OEM, Network Sniffers, Network
Profiler,Disk Defragmenter, Memory Analyzers, Performance Monitors,
Sitesope, Application Vantage, Vantage Analyzer, PMD,Dynatrace APM,HP
Diagnostics APM, HP Performance Center v9  etc.*
*Experience on J2EE and .Net Scalability analysis and fixing performance.*
*All required tools of Client, JVM and Database Tuning.*
*Experience on Middleware Tuning and assessment.*
*Effectively carried out performance engineering methodology analysis.*
*Experience on performance testing tools like Load Runner, QA Load, Open
STA, VSTS, and Silk Performer, JMeter, Rational Performance Tester, etc.
Experience in WAPT (Web Application Performance Testing) *
*Instrumental in working on all UNIX and Windows Flavors. *
*Prepared the load test scripts using Microsoft VSTS and executed the
scripts. *
*Prepared the profiling snapshots using JProbe for Java related
applications and measured the transaction cost ( For machine cycles and
memory cost)*
*Memory leak specific profiling was done and provides recommendations. *
*Profiled the .Net server components using VSTS Profiler.*
*Read the .Net and J2EE code via static analysis. *
*Used PMD and Sonar for static performance recommendations. *
*Used Dynatrace for APM level measurements*
*Used Fiddler and HTTP Watch for client level measurements. *
*Used browser profiling components (chrome and IE profiling) for Java
Script execution times.*
*Used UML for class normalization options.*
*Periodic analysis of the website#8217;s new version code using all the
above techniques.*
*Provided trainings and discussions regarding performance to other
stakeholders*
*Discussed and provided the recommendations for SEO*
*Involved in the design level discussions and improvements.*
*Took the code and tuned the code for better performance wherever required
(Both J2EE and .Net Applications.)*
*Prepared the load test scripts using Microsoft Loadrunner and executed the
scripts. *
*Prepared the profiling snapshots using JProbe, JProfiler for Java related
applications and measured the transaction cost.*
*Memory leak specific profiling was done and provides recommendations. *
*Profiled the .Net server components using VSTS Profiler.*
*Read the .Net and J2EE code via static analysis. *
*Used PMD and Sonar for static performance recommendations. *
*Used Dynatrace for APM level measurements*
*Used Fiddler and HTTP Watch for client level measurements. *
*Used browser profiling components (chrome and IE profiling) for Java
Script execution times.*
*Used UML for class normalization options.*
*Periodic analysis of the website#8217;s new version code using all the
above techniques.*
*Provided trainings and discussions regarding performance to other
stakeholders*
*Discussed and provided the recommendations for SEO (search engine
optimizations) related operations. *
*Involved in the design level discussions and improvements.*
*Took the code and tuned the code for better performance wherever required
(Both J2EE and .Net Applications.)*
*Analyzed Performance Center test result Involved in Preparing Test Plan
and Test Cases based on the analysis of the business requirements.*
*Executed Performance tests using Performance Center and modified the
scripts from performance Center.*
*Used Performance Center for activities like Load generator setup and agent
setup *
*Used Performance Center for load scripts management and performance test
management.*
*Launched and maintained the performance test facilities using Performance
center.*
*Also utilized Performance Center for load test agent management.*

Thanks  Regards,


*Pragyan DixitTechnical ExecutiveEmail*:pragyan.sysm...@gmail.com
38 Washington Road, Princeton Junction, NJ: 08550
Ph:609-897-9670 Ext :- 2154
M: 609-297-0794
[image: Description: Description: Description: Description: Description:
cid:image001.gif@01CC0A79.D4FFDB80]

P *Help! Preserve trees. Please don't print this e-mail unless you really
need to.*

-- 
You received this message because you are subscribed to the Google Groups 
Jenkins Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAHLXk_zT%3DBs6vgqfkosePPc_R-SC6B63WRDT8uSzAoEM2J0myQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.