You can now map array fields with the graphical UI using “New Mapping Experience”. Mapping process is similar to a mapping of an object field, with few restrictions:
2.6.7
required)When you retry erroneous messages, they get marked with retry=true
header, so
lookout doesn’t write data record.
Also, now sailor retries publishing messages to next step infinitely, for those cases when the next queue is overloaded. Retries will happen with exponential back-off. For example, if it starts with retry in 5 seconds, the next will be in 10, then 20, then 40, then 80 seconds, etc. The maximum delay is configurable with an environment variable. By default, there is no limit to retries.
The following variables control the retry process:
AMQP_PUBLISH_RETRY_DELAY
: 100 msAMQP_PUBLISH_RETRY_ATTEMPTS
: InfinityAMQP_PUBLISH_MAX_RETRY_DELAY:
5 minutes.You can now use pub-sub topics via the new API endpoints:
POST /v2/workspaces/:id/topics
- creates a topic in the Workspace, requires WORKSPACE.TOPIC.CREATE
permissionGET /v2/workspaces/:id/topics
- lists topics in the Workspace, requires WORKSPACE.TOPIC.GET
permissionGET /v2/workspaces/:id/topics/:id
- get topic in the Workspace, requires WORKSPACE.TOPIC.GET
permissionPATCH /v2/workspaces/:id/topics/:id
- update topic in the Workspace, requires WORKSPACE.TOPIC.EDIT
permissionDELETE /v2/workspaces/:id/topics/:id
- delete topic in the Workspace, requires WORKSPACE.TOPIC.DELETE
permission.Details can be found here.
You will now have the de-facto latest Component version set as default. Previously,
the default Component version was Latest
, meaning the Platform checked for the
latest version. Now there is no automatic check, and the latest version at the
point of Flow creation is selected. If you need to set the current version, you
should manually select it from the list.
The confusing “next” button on the last page of log records list is now disabled. If you hover the cursor on it, you’ll see the new tool-tip that suggests you reduce your results number with filters.
Improvements:
select items
filtering code moved to async workerselect items
is now an async operation (async computed in ember)wiper-flow-suspended-due-to-queue-overflow
are sent againConvert Between Timezones
write_attachment_from_json
write_attachment_from_array
JSON to XML
actionReassemble
Describe Object
List Custom Objects
Lookup Objects
Bulk Import
Bulk Export
Lookup Activities
Upsert Objects By Unique Criteria
Get New Activities Polling
Get New Leads Polling
This is a new component with the following functions:
Subscriber
with a dynamically configurable field for topics. This trigger receives the data of a certain type from a topic as an input to start a new execution of the flow.Publisher
with a dynamically configurable field for topics. This action published an event of a certain type to topic to be received by loosely coupled subscribers.