Managing Your Batch and Scheduled Apex Processes with Relax

19
Relax Effortlessly manage your Batch and Scheduled Apex processes Zach McElrath, Skuid, Lead Developer @zachelrath

description

Relax is a free, open-source app that provides fine-grained and bulk management of Batch and Scheduled Apex jobs. Join us to learn how to use Relax to mass-schedule a group of jobs, create ordered sequences of jobs that run on schedule, schedule ad-hoc, 'one-off' tasks, and more.

Transcript of Managing Your Batch and Scheduled Apex Processes with Relax

Page 1: Managing Your Batch and Scheduled Apex Processes with Relax

RelaxEffortlessly manage your Batch and Scheduled Apex processes Zach McElrath, Skuid, Lead Developer@zachelrath

Page 2: Managing Your Batch and Scheduled Apex Processes with Relax

(un) Safe harborSafe harbor statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services. The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site. Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Managing Your Batch and Scheduled Apex Processes with Relax

Testing the watersHave you ever…

▪ Written Scheduled Apex?• Tried to deploy Scheduled Apex between orgs, and had to manually delete each

Scheduled Job, 1-by-1, then recreate them, 1-by-1?

▪ Written Batch Apex?• Tried to run a sequence of Batch Apex jobs one after the other?• Wished you could run a sequence of Batch Apex jobs every 15 minutes, every

day --- without recoding the “sequence keep-alive” logic in the finish() method of every Batch Apex class?

Page 4: Managing Your Batch and Scheduled Apex Processes with Relax

Relax lets you…1. Manage your individually-Scheduled Apex jobs

▪ Activate/deactivate en masse, deploy via data loader, mass edit

2. Run scheduled sequences of Batch Apex jobs, as often as every 5 minutes, every day, without writing any additional code

3. Easily reuse common Batch Apex code

Page 5: Managing Your Batch and Scheduled Apex Processes with Relax

DEMO 1:

Mass-schedule, deactivate, and activate a group of Scheduled Apex Jobs with Relax

Page 6: Managing Your Batch and Scheduled Apex Processes with Relax

Standard method for scheduling an Apex job: 1 by 1

Page 7: Managing Your Batch and Scheduled Apex Processes with Relax

Standard method for managing jobs: 1 by 1

Page 8: Managing Your Batch and Scheduled Apex Processes with Relax

Hassles with standard scheduled job management1. Jobs have to be created 1-by-12. Jobs have to be unscheduled 1-by-1 in order to:

1. Make changes to any code that is referenced by a job’s Apex Class2. Deploy changes to code that referenced by a job’s Apex Class3. Change the Apex Class associated with a job

Page 9: Managing Your Batch and Scheduled Apex Processes with Relax

The Relax alternative: mass-management of jobs

Page 10: Managing Your Batch and Scheduled Apex Processes with Relax

Individually-scheduling an Apex Class with Relax

1. Enter Job Name2. Pick an Apex Class

that implements the Schedulable interface

3. Enter Cron Schedule

Page 11: Managing Your Batch and Scheduled Apex Processes with Relax

DEMO 2:

Create an ordered sequence of Relax Jobs that Relax will run every minute

Page 12: Managing Your Batch and Scheduled Apex Processes with Relax

Batchable Apex class that Relax can schedule

Page 13: Managing Your Batch and Scheduled Apex Processes with Relax

(another) Batchable Apex class that Relax can schedule

Page 14: Managing Your Batch and Scheduled Apex Processes with Relax

Batch Apex, scheduled with Relax

Page 15: Managing Your Batch and Scheduled Apex Processes with Relax

DEMO 3:

Use Relax Job parameters to rapidly create scheduled, batch Mass Update jobs

Page 16: Managing Your Batch and Scheduled Apex Processes with Relax

Leveraging Relax Job Parameters: Mass Update

Page 17: Managing Your Batch and Scheduled Apex Processes with Relax

How do I get my hands on this???

Relax is free and open-source!1. Install from AppExchange (bit.ly/install-relax)2. Contribute / enhance via Github (bit.ly/about-relax)

▪ Disclaimer: I have a full-time job at Skuid. And, hopefully, a life.

Page 18: Managing Your Batch and Scheduled Apex Processes with Relax

Zach McElrathLead Developer,

@zachelrath

bit.ly/install-relax

bit.ly/about-relax

Page 19: Managing Your Batch and Scheduled Apex Processes with Relax