The OneStream Community is temporarily frozen until June 29th due to the ongoing maintenance. Please read the blog post here to learn more.
Forum Discussion
SaurinPatel
3 years agoNew Contributor III
Parallel Imports
Hello OS experts,
I have BR that load P&L bucket and one BR that loads my BS bucket. I have DM sequence which load P&L,BS and then does consolidation etc. I want to know if I am able to write new B...
- 3 years ago
yes, we load 12 parallel sequences for our customer cube load.
BRApi.Utilities.StartDataMgmtSequence(si, “Workflow_Sequence_1” )
…
BRApi.Utilities.StartDataMgmtSequence(si, “Workflow_Sequence_12”)do
thread.sleep(60000) 'wait a minute
num_of_completed_steps = [get number of steps completed so far using task activity or a global counter]
loop while num_of_completed_steps < 12I want to mention that our SQLServer takes a hit with alot of activity when this is running.
scottr
3 years agoNew Contributor III
yes, we load 12 parallel sequences for our customer cube load.
BRApi.Utilities.StartDataMgmtSequence(si, “Workflow_Sequence_1” )
…
BRApi.Utilities.StartDataMgmtSequence(si, “Workflow_Sequence_12”)
do
thread.sleep(60000) 'wait a minute
num_of_completed_steps = [get number of steps completed so far using task activity or a global counter]
loop while num_of_completed_steps < 12
I want to mention that our SQLServer takes a hit with alot of activity when this is running.
SaurinPatel
3 years agoNew Contributor III
Thanks a lot.
Related Content
- 2 months ago
- 2 years ago
- 2 months ago