Skip to content

v6.0.0

Compare
Choose a tag to compare
@michel-kraemer michel-kraemer released this 24 Jun 07:33
· 338 commits to master since this release

We are very proud to announce Steep 6! This is the biggest release we've ever done. It contains a lot of cool new features, bug fixes, but also some breaking changes. Make sure to have a look at the detailed list below and read the documentation on the Steep website.

Thanks a lot to @hwuerz for the support!


Highlights in this release:

  • Improved workflow syntax
  • Improved workflow validation
  • Eager process chain generation (improved parallelization)
  • Named workflows
  • Workflow priorities
  • Full-text search
  • Improved performance (DB + Web UI + HTTP + Event bus)

New features:

  • Improved workflow model:
    • Support input parameters with values instead of pre-defined variables
    • Allow output variables to be used without declaring them in vars
  • Enable full parallelisation of process chains and for-each actions:
    • Process chains are now generated eagerly. This means as soon as the first results of running process chains are available, new process chains can be generated.
    • For-each actions are now eagerly unrolled. This means that execution of for-each actions that depend on the output of other actions or that are recursive can now start even if the results are only partially available yet.
  • Add possibility to prioritize workflows
  • Add powerful full-text search for workflows and process chains
  • Improved workflow validation:
    • Disallow variables to be used more than once as output
    • Make sure enumerators cannot be reused as enumerators or outputs
    • Validate if variable values are accessed within the right scope
    • Display path to error in validation result
  • Add dependency injection mechanism for plugin interfaces
  • Add process chain consistency checker plugin
  • Add plugin versions
  • Add more Prometheus metrics
  • Display timeout policies in UI
  • Display workflow name in UI
  • Display original YAML source on workflow detail page in UI if available
  • Add button to create new workflow to UI
  • Improved performance:
    • Database requests (less requests and faster queries)
    • HTTP API
    • Web UI
    • Cluster communication
  • Implement timeout for creating a VM
  • Compress large messages sent over the event bus
  • Add shortcut button to create new workflow from scratch to UI
  • Add more parameters for cluster configuration:
    • Add possibility to configure placement group name
    • Add possibility to make a Steep instance a Hazelcast lite member
  • Improve reliability by increasing backup count of distributed Hazelcast data structures

Breaking changes:

  • Hazelcast has been updated. Steep 6 instances cannot connect to Steep 5.x instances. You have to restart your whole cluster during update.
  • Workflow API version 3.x has been removed. Please upgrade your workflows to API version 4.x.
  • All model properties are now camel case. For example, data_type in service metadata has been renamed to dataType. The same applies to properties such as required_capabilities or file_suffix. Please refer to the documentation on the Steep website for more information.
  • The deprecated property supportedServiceId in plugin descriptors has been removed. It was replaced by supportedServiceIds in earlier versions already.
  • Deprecated plugin interfaces have been removed
  • Executable.serviceId is now mandatory. Make sure to update your plugins if you create Executable objects (this particularly applies to process chain adapters)
  • The deprecated configuration property onlyTraverseDirectoryOutputs has been removed. Steep now always only traverses output directories if the dataType in the service metadata is directory. All other data types will not be traversed but directly passed to the subsequent service.
  • Remove deprecated store actions and action parameters
  • Configuration items denoting periods of time have been renamed. All items must now be specified as durations. For example, lookupIntervalMilliseconds: 2000 becomes lookupInterval: 2s. Refer to the documentation for an overview of all configuration items.
  • Configuration item steep.http.cors.maxAge has been renamed to steep.http.cors.maxAgeSeconds to make clear that it has to be specified in seconds and to be in line with the corresponding CORS HTTP header.

Bug fixes:

  • Fix issue where some Docker containers were not killed when the workflow was cancelled
  • Do not fail if plugin configuration file is empty
  • Fix reading arbitrarily large GridFS files from MongoDB
  • Do not create more VMs if there already are enough providing a given required capability set
  • Fix intermittent crashes in UI if connection to event bus was lost
  • When looking for orphaned process chains, the scheduler does not send a message to itself anymore

Maintenance:

  • Upgrade Vert.x to 4.3.0
  • Switch to Zulu OpenJDK Docker base image
  • Install security patches on Docker image build
  • Update other dependencies