Documents limitations of calls to external resources in flows.

This commit is contained in:
Joel Dudley 2018-03-13 09:34:00 +00:00 committed by GitHub
parent d591ed5907
commit 568f7d7c17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -745,6 +745,12 @@ We then update the progress tracker's current step as we progress through the fl
:end-before: DOCEND 18
:dedent: 12
HTTP and database calls
-----------------------
HTTP, database and other calls to external resources are allowed in flows. However, their support is currently limited:
* The call must be executed in a BLOCKING way. Flows don't currently support suspending to await the response to a call to an external resource
* The call must be idempotent. If the flow fails and has to restart from a checkpoint, the call will also be replayed
Concurrency, Locking and Waiting
--------------------------------