Skip to content

Commit a08bae2

Browse files
committed
Update README.md
1 parent 5a85a09 commit a08bae2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Heroku Integration - Scaling Batch Jobs with Heroku - Java
66
77
This sample seamlessly delegates the processing of large amounts of data with significant compute requirements to Heroku Worker processes. It also demonstrates the use of the Unit of Work aspect of the SDK (JavaScript only for the pilot) for easier utilization of the Salesforce Composite APIs.
88

9+
# Architecture Overview
10+
911
The scenario used in this sample illustrates a basis for processing large volumes of Salesforce data using elastically scalable Heroku worker processes that execute complex compute calculations. In this case **Opportunity** data is read and calculated pricing data is stored in an associated **Quote**. Calculating quote information from opportunities can become quite intensive, especially when large multinational businesses have complex rules that impact pricing related to region, products, and discount thresholds. It's also possible that such code already exists, and there is a desire to reuse it within a Salesforce context.
1012

1113
<img src="images/arch.jpg" width="80%">
@@ -15,6 +17,15 @@ This sample includes two process types `web` and `worker`, both can be scaled ve
1517
> [!NOTE]
1618
> This sample could be considered an alternative to using Batch Apex if your data volumes and/or compute complexity requires it. In addition Heroku worker processes scale elastically and can thus avoid queue wait times impacting processing time that can occur with Batch Apex. For further information see **Technical Information** below.
1719
20+
# Requirements
21+
- Heroku login
22+
- Heroku Integration Pilot enabled
23+
- Heroku CLI installed
24+
- Heroku Integration Pilot CLI plugin is installed
25+
- Salesforce CLI installed
26+
- Login information for one or more Scratch, Development or Sandbox orgs
27+
- Watch the [Introduction to the Heroku Integration Pilot for Developers](https://www.youtube.com/watch?v=T5kOGNuTCLE) video
28+
1829
# Local Development and Testing
1930

2031
As with other samples (see below) this section focuses on how to develop and test locally before deploying to Heroku and testing from within a Salesforce org. Using the `heroku local` command and a local version of the standard `Procfile` we can easily launch locally both these processes from one command. Run the following commands to run the sample locally against a remotely provisioned [Heroku Key Value Store](https://devcenter.heroku.com/articles/heroku-redis).

0 commit comments

Comments
 (0)