Checklist progress
0/168Learned
Heroku Architect
Study Checklist
Checklist progress
0/168Learned
Recommend architectures that use Heroku Connect appropriately, including the correct use of External IDs.
0/13
When should an architect choose Heroku Connect accelerated streaming over polling?
Learn this conceptRecommend techniques to integrate Heroku apps with the Salesforce Lightning Platform, and understand when to apply particular techniques.
0/11
Prepare for the Exam
Study Community
Ask questions and get the latest info from other Heroku Architect studiers. 595 members and growing.
Heroku Connect is an eventually consistent system, not immediately consistent, so simultaneous updates to the same record in Salesforce and Heroku Postgres can produce temporary inconsistencies rather than a deterministic conflict winner. The sync mechanism uses a trigger log to queue Postgres-side changes and a separate polling thread for Salesforce-side changes, and these two processes run concurrently without a global lock, which is the root cause of race conditions.