Data Sync Using Watermarking and Batch

(3 reviews)

home

A watermark refers to the high-water mark in a wall after a flood. This example finds the last item that was updated.

52b8fb20-image.png

Assumptions

This document describes the details of the example within the context of Anypoint™ Studio, Mule ESB’s graphical user interface (GUI). Where appropriate, the XML configuration is provided.

This document assumes that you are familiar with Mule, Anypoint Studio, Mule flows, Mule Global Elements.

Example Use Case

In this example, the scheduler is used to periodically make pull requests to the data store in order to retrieve only the records that were modified since the last request. Salesforce CRM is queried for contacts that were recently modified and just prints them in the console.

Set Up and Run the Example

Create and run this example in your own instance of Anypoint Studio. Or, skip ahead to the next section if you prefer to simply examine this example.

  1. Open the Example project in Anypoint Studio from Anypoint Exchange. Do not run the application.
  2. Log in to your Salesforce account. From your account menu (your account is labeled with your name), select Setup.
  3. In the left navigation bar, under the Personal Setup heading, click to expand the My Personal Information folder.
  4. Click Reset My Security Token. Salesforce resets the token and emails you the new one.
  5. Access the email that Salesforce sent and copy the new token onto your local clipboard.
  6. In your application in Studio, click the Global Elements tab.
  7. Double-click the Salesforce global element to open its Global Element Properties panel. In the Security Token field, paste the new Salesforce token you copied from the email. Alternatively, configure the global element in the XML Editor.
  8. Change the contents of the Username and Password fields to your account-specific values, then click OK to save your changes.
  9. In the Package Explorer, right-click the connect-with-salesforce project name, then select Run As > Mule Application. Studio runs the application on the embedded server.
  10. In your browser, access your Salesforce account, then navigate to the Contacts tab.
  11. Use the drop-down menu to display All Contacts, then select one contact and edit (for example, change the first name).
  12. Go back to Anypoint Studio and click the console view and search for a log similar to this one: INFO 2018-07-04 08:17:01,502 [salesforce-sync-Batch_Job-work-manager.05] org.mule.api.processor.LoggerMessageProcessor: Contact recently modified: {Name=Avi123 Green, LastModifiedDate=2018-07-04T06:16:54.000Z, Id=0032000001DpkrEAAR, type=Contact}
  13. Stop the Mule application by clicking the square, red terminate button in the Console.

How it Works

Using a single flow, this application queries Salesforce CRM for recently modified contacts and prints them in the console view.

The Scheduler Component periodically invokes Salesforce Connector to perform a query in your Salesforce account: to get Id, Name, and LastModifiedDate attributes of Contact objects that were modified since the last polling. The last invocation timestamp is stored by using Objectstore Component and updated after each Salesforce query. The polling is set to be executed every 10 seconds, but can be easily changed by accessing the component configuration. The polling is executed in the Input Phase of Batch Processing. To keep the example simple, Process Records Phase only prints the obtained records to the console.

The following steps outline the process to build this application.

  1. Drop a Batch Job in your application.
  2. Drop a Scheduler Component into flow's Source field to enable the polling mechanism. Set Frequency and Time units to 10 seconds or any time period you wish.
  3. Drop the Retrieve component from ObjectStore Connector after scheduler, set the Key field to lastUpdateTimestampKey and Default value to yesterday:#[now() - |P1D|]
  4. In the Advanced tab set Target Variable to lastUpdateTimestamp and Target Value to:#[payload as String]
  5. Next, put a Salesforce Connector after Retrieve. At this point, you can configure the connector with your Salesforce account details and test the connection to Salesforce.
  6. When you click Test Connection, Mule tests the connection to Salesforce. With a valid username, password and security token, the connection test results in success and Mule saves your global element configurations. If any of the values are invalid, the connection test results in failure, and Mule does not save the global element, prompting you to correct the invalid configurations.
  7. Back in the Salesforce Connector properties editor, choose Query operation from the dropdown menu and set Query Text toSELECT Id,Name,LastModifiedDate FROM Contact WHERE LastModifiedDate > :lastUpdateTimestamp
  8. Set the parameter lastUpdateTimestamp to vars.lastUpdateTimestamp
  9. Put the Store component from ObjectStore Connector after Query, set the Key field to lastUpdateTimestampKey and Value to: #[now()]
  10. Add a Logger Component to the Process Records Phase of the batch and set Message to: #['Contact recently modified: ' ++ write(payload, "application/json", {"indent": "false"})]
  11. The configuration is complete. Save and run the application. Modify an existing contact in your Salesforce account and watch it appear in the console.

Documentation

Studio includes a feature that enables you to easily export all the documentation you have recorded for your project. Whenever you want to share your project with others outside the Studio environment, you can export the project's documentation to print, email or share online. Studio's auto-generated documentation includes:

  • A visual diagram of the flows in your application
  • The XML configuration which corresponds to each flow in your application
  • The text you entered in the Notes tab of any building block in your flow

Follow the procedure to export auto-generated Studio documentation.


Reviews

TypeExample
OrganizationMuleSoft
Published by
MuleSoft Organization
Published onSep 6, 2018
Asset overview

Asset versions for 2.1.x

Asset versions
VersionActions
2.1.4
2.1.3
2.1.2

Categories

Difficulty
AverageNo values left to add
Object
ContactNo values left to add
Functions
MarketingSalesNo values left to add
Products
SalesforceNo values left to add

Tags