Questions tagged [parallel-execution]
68 questions
0
votes
1 answer
Springboot get api taking too long time while multiple hits at a time
We have a springboot rest api get method which call downstream database. we use jdbc template queryforrowset method to get result set and map to object using while loop.
When we give single hit to the endpoint we are getting response in 25-30sec.…

Prasad Reddy
- 23
- 1
- 4
0
votes
0 answers
Selenium- Parallel test case using testng not working correctly. The same working fine in sequential mode
The driver instance initializes as Threadsafe.
Till the launching of the browser and pass the URL everything seems to be working.
But the credentials passing on anyone's browser, instead of all instances.
Below is the code for set and get the…

Niks
- 1
- 2
0
votes
1 answer
Error: Session ID is null. Using WebDriver after calling quit()? - Parallel execution - AfterMethod driver.quit/close
Find below my code
TestBase.java
protected WebDriver driver;
@BeforeMethod
public void setUpDriver() {
System.setProperty("webdriver.chrome.driver", getConfigProp.getChromeDriverPath());
driver = new ChromeDriver();
} …

Vijay
- 33
- 5
0
votes
2 answers
Airflow parallelism failuer while changing the DB to postgres
I have installed airflow locally and I am changing the executor to run parallel tasks
For that, I changed
1- the Database to Postgres 13.3
2- in the config file
sql_alchemy_conn = postgresql+psycopg2://postgres:postgres@localhost/postgres
3-…

saleh saleh
- 3
- 2
0
votes
0 answers
How to run ansible roles in parallel
I'm on the latest version of ansible and python
I wrote a testcase depicting the issue I m facing.
I run the below shell-script and pass three application names each of which is an ansible role that executes task on the same node and sleeps (waits)…

Ashar
- 2,942
- 10
- 58
- 122
0
votes
0 answers
use std::thread and join for parallelism
I'm making a script that iterates through all chromosomes of a fasta file and splitting it into pieces of 10 bp, the function is called chrdata and i am saving these fragments into a single file. This fragmentation can occur on each chromosome…

RAHenriksen
- 143
- 2
- 12
0
votes
1 answer
TestNG Parallel execution always fails when i run more than one testcase, Among all only one testscript was passing
I am using Testng for parallel execution of my web testcase. Totally i am having 5 classes.
BaseClass - for initializing and closing of my browser
Core class - Mediator for all drivers initialized
Reusable methods - Click, settext, gettext...…

Ram
- 11
- 2
0
votes
0 answers
Issues with test-ng parallel execution
I am not sure if this is a problem with the latest test-ng version, or it was there earlier too (never ran tests in parallel tbh), but.
I configured my testng.xml file to run tests in parallel, it kinda doesn't work.
Based on the thread-count…

Zeeni
- 1
- 3
0
votes
0 answers
Cucumber - Running feature files in Parallel - JUnit+Gradle
I am unable to find solution to configure gradle to run cucumber features in parallel using JUnit.
Cucumber site is documented with Maven solution for parallel execution. It is not documented for gradle.
Please help me with gradle configuration…

Naveen
- 59
- 3
0
votes
1 answer
Can you run 2 SQL queries in parallel **IN A SINGLE SSMS TAB**?
Not a dupe of any of these:
Can run query parallel in SQL?
How to run sql query in parallel
Can 2 Linq Queries be run parallel?
Since those relate to how to execute parallel queries from particular language. To which the answer is naturally "just…

Brondahl
- 7,402
- 5
- 45
- 74
0
votes
1 answer
How to hold Jenkins multiJob execution until chosen nodes are free?
I have a question about jenkins multijob possibilities:
current state:
I have 8 Jenkins nodes for job execution, 2 Linux and 6 Windows.
I have Multijob set up, consisting of 3 subJobs.
MultiJob setting: it has restriction to run only on Linux…

VladoH
- 27
- 4
0
votes
1 answer
Talend executing parallel merge statements on a single table in snowflake with 32 threads, the process is failing
With Talend executing parallel merge statements on a single table in snowflake with 32 threads, the process is failing showing error as "statement X' was aborted because the number of waiters for this lock exceeds the 20 statements limit".
Now my…

Sayantan Mandal
- 53
- 7
0
votes
0 answers
how to use pabot --testlevelsplit when running parallel execution in robot framework?
I have a test suite A which contains multiple testcases and I want to perform the parallel execution on test level via pycharm terminal. I came across this command pabot --testlevelsplit but I am getting error. Please help out with the proper way to…

RuTw
- 1
- 1
0
votes
1 answer
Safari does not support execution of automation scripts on multiple thread,
Safari does not support execution of automation scripts on multiple threads, Please let me know if there are any alternatives to run selenium tests in parallel. I am running tests in parallel on other browsers like chrome and firefox. The Framework…

Rohit
- 376
- 3
- 9
0
votes
1 answer
Selenium + Java : Parallel execution for test cases having login functionality
I have an application which requires a login and does not allow multiple logins of same account at a given time. So i have upto 60 such testcases. Currently i am handling their parallel execution as follows:
Login in the @BeforeSuite with CredzSet1…

Manasi k.
- 43
- 7