1

I have a stream with 40GB of data. Every time I am deleting the sandbox, accepting changesets and loading the sandbox.
Loading whole data is taking longer.

Is there anyway to accept the changesets without deleting sandbox and to build that, through Jenkins.

Do we have RTC plugin for Jenkins that loads sandbox in incremental manner (by accepting&loading only delta changesets).

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
Ras
  • 543
  • 1
  • 9
  • 25

1 Answers1

1

The Job configuration of that Jenkins RTC plugin does include an option:

  • "Delete directory before loading."

and:

  • "Accept latest changes before loading": When loading the jenkins build workspace from a RTC repository workspace, there is an option to configure whether to accept latest changes before loading. By default, this option is selected.

https://wiki.jenkins.io/download/attachments/66847632/jenkins_configure_job_1200_11.png?version=1&modificationDate=1461332037000&api=v2

Check if, in your case, that option is selected or not.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • Problem with this is, once you do a build, repository will go out of sync or metadata corrupts etc. isn't it the case ? – Ras Jun 13 '18 at 16:10
  • @RasDama Each build can checkout a fresh copy of the repo, rebuilding from scratch, avoiding any sync or metadata corruption issue. – VonC Jun 13 '18 at 19:48