Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

358

359

360

361

362

363

364

365

366

367

368

369

370

371

372

373

374

375

376

377

378

379

380

381

382

383

384

385

386

387

388

389

390

391

392

393

394

395

396

397

398

399

400

401

402

403

404

405

406

407

408

409

410

411

412

413

414

415

416

417

418

419

420

421

422

423

424

425

426

427

428

429

430

431

432

433

434

435

436

437

438

439

440

441

442

443

444

445

446

447

448

449

450

451

452

453

454

455

456

457

458

459

460

461

462

463

464

465

466

467

468

469

470

471

472

473

474

475

476

477

478

479

480

481

482

483

484

485

486

487

488

489

490

491

492

493

494

495

496

497

498

499

500

501

502

503

504

505

506

507

508

509

510

511

512

513

514

515

516

517

518

519

520

521

522

523

524

525

526

527

528

529

530

531

532

533

534

535

536

537

538

539

540

541

542

543

544

545

546

547

548

549

550

551

552

553

554

555

556

557

558

559

560

561

562

563

564

565

566

567

568

569

570

571

572

573

574

575

576

577

578

579

580

581

582

583

584

585

586

587

588

589

590

591

592

593

594

595

596

597

598

599

600

601

602

603

604

605

606

607

608

609

610

611

612

613

614

615

616

617

618

619

620

621

622

623

624

625

626

627

628

629

630

631

632

633

634

635

636

637

638

639

640

641

642

643

644

645

646

647

648

649

650

651

652

653

654

655

656

657

658

659

660

661

662

663

664

665

666

667

668

669

670

671

672

673

674

675

676

677

678

679

680

681

682

683

684

685

686

687

688

689

690

691

692

693

694

695

696

697

698

699

700

701

702

703

704

705

706

707

708

709

710

711

712

713

714

715

716

717

718

719

720

721

722

723

724

725

726

727

728

729

730

731

732

733

734

735

736

737

738

739

740

741

742

743

744

745

746

747

748

749

750

751

752

753

754

755

756

757

758

759

760

761

762

763

764

765

766

767

768

769

770

771

772

773

774

775

776

777

778

779

780

781

782

783

784

785

786

787

788

789

790

791

792

793

794

from __future__ import absolute_import 

from __future__ import division 

from __future__ import print_function 

from __future__ import unicode_literals 

 

from builtins import str 

from past.builtins import basestring 

from collections import defaultdict 

from datetime import datetime 

from itertools import product 

import getpass 

import logging 

import signal 

import socket 

import subprocess 

import sys 

from time import sleep 

 

from sqlalchemy import Column, Integer, String, DateTime, func, Index, and_ 

from sqlalchemy.orm.session import make_transient 

 

from airflow import executors, models, settings, utils 

from airflow import configuration 

from airflow.utils import AirflowException, State 

 

 

Base = models.Base 

ID_LEN = models.ID_LEN 

 

# Setting up a statsd client if needed 

statsd = None 

if configuration.getboolean('scheduler', 'statsd_on'): 

    from statsd import StatsClient 

    statsd = StatsClient( 

        host=configuration.get('scheduler', 'statsd_host'), 

        port=configuration.getint('scheduler', 'statsd_port'), 

        prefix=configuration.get('scheduler', 'statsd_prefix')) 

 

 

class BaseJob(Base): 

    """ 

    Abstract class to be derived for jobs. Jobs are processing items with state 

    and duration that aren't task instances. For instance a BackfillJob is 

    a collection of task instance runs, but should have it's own state, start 

    and end time. 

    """ 

 

    __tablename__ = "job" 

 

    id = Column(Integer, primary_key=True) 

    dag_id = Column(String(ID_LEN),) 

    state = Column(String(20)) 

    job_type = Column(String(30)) 

    start_date = Column(DateTime()) 

    end_date = Column(DateTime()) 

    latest_heartbeat = Column(DateTime()) 

    executor_class = Column(String(500)) 

    hostname = Column(String(500)) 

    unixname = Column(String(1000)) 

 

    __mapper_args__ = { 

        'polymorphic_on': job_type, 

        'polymorphic_identity': 'BaseJob' 

    } 

 

    __table_args__ = ( 

        Index('job_type_heart', job_type, latest_heartbeat), 

    ) 

 

    def __init__( 

            self, 

            executor=executors.DEFAULT_EXECUTOR, 

            heartrate=configuration.getfloat('scheduler', 'JOB_HEARTBEAT_SEC'), 

            *args, **kwargs): 

        self.hostname = socket.gethostname() 

        self.executor = executor 

        self.executor_class = executor.__class__.__name__ 

        self.start_date = datetime.now() 

        self.latest_heartbeat = datetime.now() 

        self.heartrate = heartrate 

        self.unixname = getpass.getuser() 

        super(BaseJob, self).__init__(*args, **kwargs) 

 

    def is_alive(self): 

        return ( 

            (datetime.now() - self.latest_heartbeat).seconds < 

            (configuration.getint('scheduler', 'JOB_HEARTBEAT_SEC') * 2.1) 

        ) 

 

    def kill(self): 

        session = settings.Session() 

        job = session.query(BaseJob).filter(BaseJob.id == self.id).first() 

        job.end_date = datetime.now() 

        try: 

            self.on_kill() 

        except: 

            logging.error('on_kill() method failed') 

        session.merge(job) 

        session.commit() 

        session.close() 

        raise AirflowException("Job shut down externally.") 

 

    def on_kill(self): 

        ''' 

        Will be called when an external kill command is received 

        ''' 

        pass 

 

    def heartbeat_callback(self): 

        pass 

 

    def heartbeat(self): 

        ''' 

        Heartbeats update the job's entry in the database with a timestamp 

        for the latest_heartbeat and allows for the job to be killed 

        externally. This allows at the system level to monitor what is 

        actually active. 

 

        For instance, an old heartbeat for SchedulerJob would mean something 

        is wrong. 

 

        This also allows for any job to be killed externally, regardless 

        of who is running it or on which machine it is running. 

 

        Note that if your heartbeat is set to 60 seconds and you call this 

        method after 10 seconds of processing since the last heartbeat, it 

        will sleep 50 seconds to complete the 60 seconds and keep a steady 

        heart rate. If you go over 60 seconds before calling it, it won't 

        sleep at all. 

        ''' 

        session = settings.Session() 

        job = session.query(BaseJob).filter(BaseJob.id == self.id).first() 

 

        if job.state == State.SHUTDOWN: 

            self.kill() 

 

        if job.latest_heartbeat: 

            sleep_for = self.heartrate - ( 

                datetime.now() - job.latest_heartbeat).total_seconds() 

            if sleep_for > 0: 

                sleep(sleep_for) 

 

        job.latest_heartbeat = datetime.now() 

 

        session.merge(job) 

        session.commit() 

        session.close() 

 

        self.heartbeat_callback() 

        logging.debug('[heart] Boom.') 

 

    def run(self): 

        if statsd: 

            statsd.incr(self.__class__.__name__.lower()+'_start', 1, 1) 

        # Adding an entry in the DB 

        session = settings.Session() 

        self.state = State.RUNNING 

        session.add(self) 

        session.commit() 

        id_ = self.id 

        make_transient(self) 

        self.id = id_ 

 

        # Run 

        self._execute() 

 

        # Marking the success in the DB 

        self.end_date = datetime.now() 

        self.state = State.SUCCESS 

        session.merge(self) 

        session.commit() 

        session.close() 

 

        if statsd: 

            statsd.incr(self.__class__.__name__.lower()+'_end', 1, 1) 

 

    def _execute(self): 

        raise NotImplementedError("This method needs to be overridden") 

 

 

class SchedulerJob(BaseJob): 

    """ 

    This SchedulerJob runs indefinitely and constantly schedules the jobs 

    that are ready to run. It figures out the latest runs for each 

    task and see if the dependencies for the next schedules are met. 

    If so it triggers the task instance. It does this for each task 

    in each DAG and repeats. 

 

    :param dag_id: to run the scheduler for a single specific DAG 

    :type dag_id: string 

    :param subdir: to search for DAG under a certain folder only 

    :type subdir: string 

    :param test_mode: used for unit testing this class only, runs a single 

        schedule run 

    :type test_mode: bool 

    :param refresh_dags_every: force refresh the DAG definition every N 

        runs, as specified here 

    :type refresh_dags_every: int 

    :param do_pickle: to pickle the DAG object and send over to workers 

        for non-local executors 

    :type do_pickle: bool 

    """ 

 

    __mapper_args__ = { 

        'polymorphic_identity': 'SchedulerJob' 

    } 

 

    def __init__( 

            self, 

            dag_id=None, 

            subdir=None, 

            test_mode=False, 

            refresh_dags_every=10, 

            num_runs=None, 

            do_pickle=False, 

            *args, **kwargs): 

 

        self.dag_id = dag_id 

        self.subdir = subdir 

        if test_mode: 

            self.num_runs = 1 

        else: 

            self.num_runs = num_runs 

        self.refresh_dags_every = refresh_dags_every 

        self.do_pickle = do_pickle 

        super(SchedulerJob, self).__init__(*args, **kwargs) 

 

        self.heartrate = configuration.getint('scheduler', 'SCHEDULER_HEARTBEAT_SEC') 

 

    @utils.provide_session 

    def manage_slas(self, dag, session=None): 

        """ 

        Finding all tasks that have SLAs defined, and sending alert emails 

        where needed. New SLA misses are also recorded in the database. 

 

        Where assuming that the scheduler runs often, so we only check for 

        tasks that should have succeeded in the past hour. 

        """ 

        TI = models.TaskInstance 

        sq = ( 

            session 

            .query( 

                TI.task_id, 

                func.max(TI.execution_date).label('max_ti')) 

            .filter(TI.dag_id == dag.dag_id) 

            .filter(TI.state == State.SUCCESS) 

            .filter(TI.task_id.in_(dag.task_ids)) 

            .group_by(TI.task_id).subquery('sq') 

        ) 

 

        max_tis = session.query(TI).filter( 

            TI.dag_id == dag.dag_id, 

            TI.task_id == sq.c.task_id, 

            TI.execution_date == sq.c.max_ti, 

        ).all() 

 

        ts = datetime.now() 

        SlaMiss = models.SlaMiss 

        for ti in max_tis: 

            task = dag.get_task(ti.task_id) 

            dttm = ti.execution_date 

            if task.sla: 

                dttm = dag.following_schedule(dttm) 

                following_schedule = dag.following_schedule(dttm) 

                while dttm < datetime.now(): 

                    if following_schedule + task.sla < datetime.now(): 

                        session.merge(models.SlaMiss( 

                            task_id=ti.task_id, 

                            dag_id=ti.dag_id, 

                            execution_date=dttm, 

                            timestamp=ts)) 

                    dttm = dag.following_schedule(dttm) 

        session.commit() 

 

        slas = ( 

            session 

            .query(SlaMiss) 

            .filter(SlaMiss.email_sent == False) 

            .filter(SlaMiss.dag_id == dag.dag_id) 

            .all() 

        ) 

 

        if slas: 

            sla_dates = [sla.execution_date for sla in slas] 

            blocking_tis = ( 

                session 

                .query(TI) 

                .filter(TI.state != State.SUCCESS) 

                .filter(TI.execution_date.in_(sla_dates)) 

                .filter(TI.dag_id == dag.dag_id) 

                .all() 

            ) 

            for ti in blocking_tis: 

                    ti.task = dag.get_task(ti.task_id) 

            blocking_tis = ([ti for ti in blocking_tis 

                            if ti.are_dependencies_met(main_session=session)]) 

            task_list = "\n".join([ 

                sla.task_id + ' on ' + sla.execution_date.isoformat() 

                for sla in slas]) 

            blocking_task_list = "\n".join([ 

                ti.task_id + ' on ' + ti.execution_date.isoformat() 

                for ti in blocking_tis]) 

            from airflow import ascii 

            email_content = """\ 

            Here's a list of tasks thas missed their SLAs: 

            <pre><code>{task_list}\n<code></pre> 

            Blocking tasks: 

            <pre><code>{blocking_task_list}\n{ascii.bug}<code></pre> 

            """.format(**locals()) 

            emails = [] 

            for t in dag.tasks: 

                if t.email: 

                    if isinstance(t.email, basestring): 

                        l = [t.email] 

                    elif isinstance(t.email, (list, tuple)): 

                        l = t.email 

                    for email in l: 

                        if email not in emails: 

                            emails.append(email) 

            if emails and len(slas): 

                utils.send_email( 

                    emails, 

                    "[airflow] SLA miss on DAG=" + dag.dag_id, 

                    email_content) 

                for sla in slas: 

                    sla.email_sent = True 

                    session.merge(sla) 

            session.commit() 

            session.close() 

 

    def import_errors(self, dagbag): 

        session = settings.Session() 

        session.query(models.ImportError).delete() 

        for filename, stacktrace in list(dagbag.import_errors.items()): 

            session.add(models.ImportError( 

                filename=filename, stacktrace=stacktrace)) 

        session.commit() 

 

 

    def schedule_dag(self, dag): 

        """ 

        This method checks whether a new DagRun needs to be created 

        for a DAG based on scheduling interval 

        """ 

        if dag.schedule_interval: 

            DagRun = models.DagRun 

            session = settings.Session() 

            qry = session.query(func.max(DagRun.execution_date)).filter(and_( 

                DagRun.dag_id == dag.dag_id, 

                DagRun.external_trigger == False 

            )) 

            last_scheduled_run = qry.scalar() 

            next_run_date = None 

            if not last_scheduled_run: 

                # First run 

                TI = models.TaskInstance 

                latest_run = ( 

                    session.query(func.max(TI.execution_date)) 

                    .filter_by(dag_id=dag.dag_id) 

                    .scalar() 

                ) 

                if latest_run: 

                    # Migrating from previous version 

                    # make the past 5 runs active 

                    next_run_date = dag.date_range(latest_run, -5)[0] 

                else: 

                    next_run_date = min([t.start_date for t in dag.tasks]) 

            elif dag.schedule_interval != '@once': 

                next_run_date = dag.following_schedule(last_scheduled_run) 

            elif dag.schedule_interval == '@once' and not last_scheduled_run: 

                next_run_date = datetime.now() 

 

            if next_run_date and next_run_date <= datetime.now(): 

                next_run = DagRun( 

                    dag_id=dag.dag_id, 

                    run_id='scheduled__' + next_run_date.isoformat(), 

                    execution_date=next_run_date, 

                    state=State.RUNNING, 

                    external_trigger=False 

                ) 

                session.add(next_run) 

                session.commit() 

 

    def process_dag(self, dag, executor): 

        """ 

        This method schedules a single DAG by looking at the latest 

        run for each task and attempting to schedule the following run. 

 

        As multiple schedulers may be running for redundancy, this 

        function takes a lock on the DAG and timestamps the last run 

        in ``last_scheduler_run``. 

        """ 

        TI = models.TaskInstance 

        DagModel = models.DagModel 

        session = settings.Session() 

 

        # picklin' 

        pickle_id = None 

        if self.do_pickle and self.executor.__class__ not in ( 

                executors.LocalExecutor, executors.SequentialExecutor): 

            pickle_id = dag.pickle(session).id 

 

        db_dag = session.query(DagModel).filter_by(dag_id=dag.dag_id).first() 

        last_scheduler_run = db_dag.last_scheduler_run or datetime(2000, 1, 1) 

        secs_since_last = ( 

            datetime.now() - last_scheduler_run).total_seconds() 

        # if db_dag.scheduler_lock or 

        if secs_since_last < self.heartrate: 

            session.commit() 

            session.close() 

            return None 

        else: 

            # Taking a lock 

            db_dag.scheduler_lock = True 

            db_dag.last_scheduler_run = datetime.now() 

            session.commit() 

 

        active_runs = dag.get_active_runs() 

        for task, dttm in product(dag.tasks, active_runs): 

            if task.adhoc: 

                continue 

            ti = TI(task, dttm) 

            ti.refresh_from_db() 

            if ti.state in (State.RUNNING, State.QUEUED, State.SUCCESS): 

                continue 

            elif ti.is_runnable(flag_upstream_failed=True): 

                logging.debug('Firing task: {}'.format(ti)) 

                executor.queue_task_instance(ti, pickle_id=pickle_id) 

 

        # Releasing the lock 

        logging.debug("Unlocking DAG (scheduler_lock)") 

        db_dag = ( 

            session.query(DagModel) 

            .filter(DagModel.dag_id == dag.dag_id) 

            .first() 

        ) 

        db_dag.scheduler_lock = False 

        session.merge(db_dag) 

        session.commit() 

 

        session.close() 

 

    @utils.provide_session 

    def prioritize_queued(self, session, executor, dagbag): 

        # Prioritizing queued task instances 

 

        pools = {p.pool: p for p in session.query(models.Pool).all()} 

        TI = models.TaskInstance 

        queued_tis = ( 

            session.query(TI) 

            .filter(TI.state == State.QUEUED) 

            .all() 

        ) 

        session.expunge_all() 

        d = defaultdict(list) 

        for ti in queued_tis: 

            if ( 

                    ti.dag_id not in dagbag.dags or not 

                    dagbag.dags[ti.dag_id].has_task(ti.task_id)): 

                # Deleting queued jobs that don't exist anymore 

                session.delete(ti) 

                session.commit() 

            else: 

                d[ti.pool].append(ti) 

 

        for pool, tis in list(d.items()): 

            open_slots = pools[pool].open_slots(session=session) 

            if not open_slots: 

                return 

            tis = sorted( 

                tis, key=lambda ti: (-ti.priority_weight, ti.start_date)) 

            for ti in tis: 

                if not open_slots: 

                    return 

                task = None 

                try: 

                    task = dagbag.dags[ti.dag_id].get_task(ti.task_id) 

                except: 

                    logging.error("Queued task {} seems gone".format(ti)) 

                    session.delete(ti) 

                if task: 

                    ti.task = task 

 

                    # picklin' 

                    dag = dagbag.dags[ti.dag_id] 

                    pickle_id = None 

                    if self.do_pickle and self.executor.__class__ not in ( 

                            executors.LocalExecutor, 

                            executors.SequentialExecutor): 

                        pickle_id = dag.pickle(session).id 

 

                    if ( 

                            ti.are_dependencies_met() and 

                            not task.dag.concurrency_reached): 

                        executor.queue_task_instance( 

                            ti, force=True, pickle_id=pickle_id) 

                        open_slots -= 1 

                    else: 

                        session.delete(ti) 

                        continue 

                    ti.task = task 

 

                    # picklin' 

                    dag = dagbag.dags[ti.dag_id] 

                    pickle_id = None 

                    if self.do_pickle and self.executor.__class__ not in ( 

                        executors.LocalExecutor, executors.SequentialExecutor): 

                        pickle_id = dag.pickle(session).id 

 

                    if ti.are_dependencies_met(): 

                        executor.queue_task_instance( 

                            ti, force=True, pickle_id=pickle_id) 

                    else: 

                        session.delete(ti) 

                    session.commit() 

 

    def _execute(self): 

        dag_id = self.dag_id 

 

        def signal_handler(signum, frame): 

            logging.error("SIGINT (ctrl-c) received") 

            sys.exit(1) 

        signal.signal(signal.SIGINT, signal_handler) 

 

        utils.pessimistic_connection_handling() 

 

        logging.basicConfig(level=logging.DEBUG) 

        logging.info("Starting the scheduler") 

 

        dagbag = models.DagBag(self.subdir, sync_to_db=True) 

        executor = dagbag.executor 

        executor.start() 

        i = 0 

        while not self.num_runs or self.num_runs > i: 

            try: 

                loop_start_dttm = datetime.now() 

                try: 

                    self.prioritize_queued(executor=executor, dagbag=dagbag) 

                except Exception as e: 

                    logging.exception(e) 

 

                i += 1 

                try: 

                    if i % self.refresh_dags_every == 0: 

                        dagbag = models.DagBag(self.subdir, sync_to_db=True) 

                    else: 

                        dagbag.collect_dags(only_if_updated=True) 

                except: 

                    logging.error("Failed at reloading the dagbag") 

                    if statsd: 

                        statsd.incr('dag_refresh_error', 1, 1) 

                    sleep(5) 

 

                if dag_id: 

                    dags = [dagbag.dags[dag_id]] 

                else: 

                    dags = [ 

                        dag for dag in dagbag.dags.values() if not dag.parent_dag] 

                paused_dag_ids = dagbag.paused_dags() 

                for dag in dags: 

                    logging.debug("Scheduling {}".format(dag.dag_id)) 

                    dag = dagbag.get_dag(dag.dag_id) 

                    if not dag or (dag.dag_id in paused_dag_ids): 

                        continue 

                    try: 

                        self.schedule_dag(dag) 

                        self.process_dag(dag, executor) 

                        self.manage_slas(dag) 

                    except Exception as e: 

                        logging.exception(e) 

                logging.info( 

                    "Done queuing tasks, calling the executor's heartbeat") 

                duration_sec = (datetime.now() - loop_start_dttm).total_seconds() 

                logging.info("Loop took: {} seconds".format(duration_sec)) 

                try: 

                    self.import_errors(dagbag) 

                except Exception as e: 

                    logging.exception(e) 

                try: 

                    dagbag.kill_zombies() 

                except Exception as e: 

                    logging.exception(e) 

                try: 

                    # We really just want the scheduler to never ever stop. 

                    executor.heartbeat() 

                    self.heartbeat() 

                except Exception as e: 

                    logging.exception(e) 

                    logging.error("Tachycardia!") 

            except Exception as deep_e: 

                logging.exception(deep_e) 

        executor.end() 

 

    def heartbeat_callback(self): 

        if statsd: 

            statsd.gauge('scheduler_heartbeat', 1, 1) 

 

 

class BackfillJob(BaseJob): 

    """ 

    A backfill job consists of a dag or subdag for a specific time range. It 

    triggers a set of task instance runs, in the right order and lasts for 

    as long as it takes for the set of task instance to be completed. 

    """ 

 

    __mapper_args__ = { 

        'polymorphic_identity': 'BackfillJob' 

    } 

 

    def __init__( 

            self, 

            dag, start_date=None, end_date=None, mark_success=False, 

            include_adhoc=False, 

            donot_pickle=False, 

            ignore_dependencies=False, 

            pool=None, 

            *args, **kwargs): 

        self.dag = dag 

        dag.override_start_date(start_date) 

        self.dag_id = dag.dag_id 

        self.bf_start_date = start_date 

        self.bf_end_date = end_date 

        self.mark_success = mark_success 

        self.include_adhoc = include_adhoc 

        self.donot_pickle = donot_pickle 

        self.ignore_dependencies = ignore_dependencies 

        self.pool = pool 

        super(BackfillJob, self).__init__(*args, **kwargs) 

 

    def _execute(self): 

        """ 

        Runs a dag for a specified date range. 

        """ 

        session = settings.Session() 

 

        start_date = self.bf_start_date 

        end_date = self.bf_end_date 

 

        # picklin' 

        pickle_id = None 

        if not self.donot_pickle and self.executor.__class__ not in ( 

                executors.LocalExecutor, executors.SequentialExecutor): 

            pickle = models.DagPickle(self.dag) 

            session.add(pickle) 

            session.commit() 

            pickle_id = pickle.id 

 

        executor = self.executor 

        executor.start() 

 

        # Build a list of all instances to run 

        tasks_to_run = {} 

        failed = [] 

        succeeded = [] 

        started = [] 

        wont_run = [] 

        for task in self.dag.tasks: 

            if (not self.include_adhoc) and task.adhoc: 

                continue 

 

            start_date = start_date or task.start_date 

            end_date = end_date or task.end_date or datetime.now() 

            for dttm in self.dag.date_range(start_date, end_date=end_date): 

                ti = models.TaskInstance(task, dttm) 

                tasks_to_run[ti.key] = ti 

 

        # Triggering what is ready to get triggered 

        while tasks_to_run: 

            for key, ti in list(tasks_to_run.items()): 

                ti.refresh_from_db() 

                if ti.state in ( 

                        State.SUCCESS, State.SKIPPED) and key in tasks_to_run: 

                    succeeded.append(key) 

                    tasks_to_run.pop(key) 

                elif ti.state in (State.RUNNING, State.QUEUED): 

                    continue 

                elif ti.is_runnable(flag_upstream_failed=True): 

                    executor.queue_task_instance( 

                        ti, 

                        mark_success=self.mark_success, 

                        task_start_date=self.bf_start_date, 

                        pickle_id=pickle_id, 

                        ignore_dependencies=self.ignore_dependencies, 

                        pool=self.pool) 

                    ti.state = State.RUNNING 

                    if key not in started: 

                        started.append(key) 

            self.heartbeat() 

            executor.heartbeat() 

 

            # Reacting to events 

            for key, state in list(executor.get_event_buffer().items()): 

                dag_id, task_id, execution_date = key 

                if key not in tasks_to_run: 

                    continue 

                ti = tasks_to_run[key] 

                ti.refresh_from_db() 

                if ( 

                        ti.state in (State.FAILED, State.SKIPPED) or 

                        state == State.FAILED): 

                    if ti.state == State.FAILED or state == State.FAILED: 

                        failed.append(key) 

                        logging.error("Task instance " + str(key) + " failed") 

                    elif ti.state == State.SKIPPED: 

                        wont_run.append(key) 

                        logging.error("Skipping " + str(key) + " failed") 

                    tasks_to_run.pop(key) 

                    # Removing downstream tasks that also shouldn't run 

                    for t in self.dag.get_task(task_id).get_flat_relatives( 

                            upstream=False): 

                        key = (ti.dag_id, t.task_id, execution_date) 

                        if key in tasks_to_run: 

                            wont_run.append(key) 

                            tasks_to_run.pop(key) 

                elif ti.state == State.SUCCESS and state == State.SUCCESS: 

                    succeeded.append(key) 

                    tasks_to_run.pop(key) 

                elif ( 

                        ti.state not in (State.SUCCESS, State.QUEUED) and 

                        state == State.SUCCESS): 

                    logging.error( 

                        "The airflow run command failed " 

                        "at reporting an error. This should not occur " 

                        "in normal circustances. State is {}".format(ti.state)) 

 

            msg = ( 

                "[backfill progress] " 

                "waiting: {0} | " 

                "succeeded: {1} | " 

                "kicked_off: {2} | " 

                "failed: {3} | " 

                "wont_run: {4} ").format( 

                    len(tasks_to_run), 

                    len(succeeded), 

                    len(started), 

                    len(failed), 

                    len(wont_run)) 

            logging.info(msg) 

 

        executor.end() 

        session.close() 

        if failed: 

            logging.error( 

                "------------------------------------------\n" 

                "Some tasks instances failed, " 

                "here's the list:\n{}".format(failed)) 

            sys.exit(1) 

        logging.info("All done. Exiting.") 

 

 

class LocalTaskJob(BaseJob): 

 

    __mapper_args__ = { 

        'polymorphic_identity': 'LocalTaskJob' 

    } 

 

    def __init__( 

            self, 

            task_instance, 

            ignore_dependencies=False, 

            force=False, 

            mark_success=False, 

            pickle_id=None, 

            task_start_date=None, 

            pool=None, 

            *args, **kwargs): 

        self.task_instance = task_instance 

        self.ignore_dependencies = ignore_dependencies 

        self.force = force 

        self.pool = pool 

        self.pickle_id = pickle_id 

        self.mark_success = mark_success 

        self.task_start_date = task_start_date 

        super(LocalTaskJob, self).__init__(*args, **kwargs) 

 

    def _execute(self): 

        command = self.task_instance.command( 

            raw=True, 

            ignore_dependencies=self.ignore_dependencies, 

            force=self.force, 

            pickle_id=self.pickle_id, 

            mark_success=self.mark_success, 

            task_start_date=self.task_start_date, 

            job_id=self.id, 

            pool=self.pool, 

        ) 

        self.process = subprocess.Popen(['bash', '-c', command]) 

        return_code = None 

        while return_code is None: 

            self.heartbeat() 

            return_code = self.process.poll() 

 

    def on_kill(self): 

        self.process.terminate()