-
Notifications
You must be signed in to change notification settings - Fork 68
Add specifyStreams function #4765
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
Conversation
Ignore every streams except specified one.
import specifyStreams function
|
This wont work as athe streams are addit to the configuration after we pull the data from storage manager |
|
Here is were we get the data from storage manager. After this, the tier0Config object is populated. T0/src/python/T0Component/Tier0Feeder/Tier0FeederPoller.py Lines 156 to 178 in c4cc364
You need to set the Processing type as |
|
That means that the list of streams to process needs to be stored in the tier0Config object, so it can be used by Tier0Feeder after reading the configuration file. |
|
You mean even I set ignore to streams of tier0Config at the end of ReplayOfflineConfiguration.py, more streams will be loaded after? |
* Update Tier0Config.py Ignore every streams except specified one. * Update ReplayOfflineConfiguration.py import specifyStreams function Co-authored-by: Yunjae Lee <[email protected]>
Add specifyStreams(config, streamNames) at Tier0Config.py
Add speicifyStreams at end of ReplayOfflineConfiguration.py to ignore every stream except specified streams.
for example,
specifyStreams(tier0Config, ["Calibration","LookArea"])
Replay at vocms0500
Describe the configuration
specifyStreams(tier0Config, ["Calibration"])at the end of ReplayOfflineConfiguration.py