Before this commit, getting the running job executions loaded all job executions from the database and filtered them in-memory. This commit uses `JobExplorer#findRunningJobExecutions` which issues a query that does the filtering on the database side. This change considerably improves the performance of stopping a job. Resolves BATCH-2422