Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
jtompkins
Creator
Creator

Running workflows from CLI in parallel on same server

I have the following batch script that runs a Compose workflow:

set arg1=%1
echo Connecting to Compose...
"D:\Program Files\Qlik\Compose\bin\ComposeCli.exe" connect && (
echo Connected.
echo Running Task...
"D:\Program Files\Qlik\Compose\bin\ComposeCli.exe" run_task --project SFS --type WF --task %arg1% --wait 0
) || (
echo ERROR ENCOUNTERED.
exit /b 1
)
echo Task complete.
exit /b 0

 When I go to run the same script but for a different Compose project (so the only difference to the above is the value for the project flag),  what is the expected behavior? Should it be able to run in parallel with the other workflow in a different project or should I be getting what I am currently seeing, which is "Another instance of this process is already running"?

Labels (3)
1 Solution

Accepted Solutions
sureshkumar
Support
Support

Hello Team,

The issue has been fixed in 2021.8.0.725 (SP18) and same thing is communicated in the case as well.

 

Regards,

Suresh

View solution in original post

1 Reply
sureshkumar
Support
Support

Hello Team,

The issue has been fixed in 2021.8.0.725 (SP18) and same thing is communicated in the case as well.

 

Regards,

Suresh