-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow an InputSource to declare a run/lumi is the last to be merged #43457
Conversation
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-43457/38008
|
A new Pull Request was created by @wddgit (W. David Dagenhart) for master. It involves the following packages:
@rvenditti, @cmsbuild, @antoniovagnerini, @makortel, @syuvivida, @tjavaid, @smuzaffar, @nothingface0, @Dr15Jones can you please review it and eventually sign? Thanks. cms-bot commands are listed here |
please test |
-1 Failed Tests: AddOn AddOn Tests
Comparison SummarySummary:
|
please test Try again. See if the failures are reproducible. The only thing I noticed so far is that the 3 failures occurred within 20 seconds of each other in real time. Maybe some system glitch... |
abort test |
7b27eae
to
a4df6b8
Compare
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-43457/38041
|
please test Try again. I missed adding |
I implemented all Chris's suggestions except for making the ItemTypeInfo constructor explicit (see comment above). Thanks, it is better. Also rebased. I'll rerun the tests when code checks passes. |
+code-checks Logs: https://cmssdt.cern.ch/SDT/code-checks/cms-sw-PR-43457/38140
|
Pull request #43457 was updated. @syuvivida, @nothingface0, @rvenditti, @antoniovagnerini, @tjavaid, @smuzaffar, @makortel, @Dr15Jones, @cmsbuild can you please check and sign again. |
please test |
+1 Summary: https://cmssdt.cern.ch/SDT/jenkins-artifacts/pull-request-integration/PR-274562/36423/summary.html Comparison SummarySummary:
|
+core |
@cms-sw/dqm-l2 Could you review and sign? The changes in your area should be straightforward. |
+1
|
This pull request is fully signed and it will be integrated in one of the next master IBs (tests are also fine). This pull request will now be reviewed by the release team before it's merged. @rappoccio, @antoniovilela, @sextonkennedy (and backports should be raised in the release meeting by the corresponding L2) |
+1 |
PR description:
Allow an InputSource to declare that a run entry or a lumi entry is the last one that needs to be merged. The next run entry should have a different run number or ProcessHistoryID. Or the next lumi entry should be associated with a different run or have a different luminosity block number. Or the next run or lumi entry could be in a different file.
It is OK for InputSources not to make this declaration. The Framework can and already does figure this out by examining the next entry returned by getNextItemType. Existing sources should work OK.
This might be a useful optimization in an online source when the getNextItemType function takes a long time to return. If the last item is declared, then the global run transition or the global lumi transition can begin immediately. Otherwise, the Framework has to wait for getNextItemType to return for the next entry in order to know that the previous entry was the last. And that delays global begin run or global begin lumi.
This probably will not help much for offline input sources because getNextItemType returns quickly.
The Framework will detect the case where a source falsely declares an item is the last run or lumi entry. It will throw an exception indicating a bug in the InputSource.
This delay was noticed when investigating issue #42931, but this PR does not address either of the problems listed there.
There are some minor changes in the InputSource interface. The getNextItemType function now returns an object of type
ItemTypeInfo
instead of the enum ItemType. Also, the ItemType enum is changed to be anenum class
(more of a style modernization, I could back that out if requested).PR validation:
Three new unit tests are added for this feature. Existing core unit tests pass. Limited runTheMatrix passes.
Manually, you can also see the delay vanishes in the log file of one of the unit tests, but it is difficult to turn that into a pass/fail criteria as the timing of execution can vary and we don't want tests that occasionally fail due to timing variations.