Section "Storage"

In this section you will find storage related settings of kenaflow.

"Storage" means that you can use the following cmdlets to store and retrieve binara data or serialized objects to/from disk storage. Please read article Storage.

storageEnabled

    <entry key="storageEnabled" type="System.Boolean" default="true"></entry>

With this setting the storage function can be disabled globally.

If disabled but workflows try to use the storage cmdlets an exception is thrown.

storagePath

    <entry key="storagePath" type="System.String" default=".\storage"></entry>

This setting specifies the storage path. The kenaflow execution account and every workflow developer user account must have permissions to

  • Create
  • Read
  • Modify
  • Delete files and folders in the directory.

storageMaxSize

    <entry key="storageMaxSize" type="System.Int32" default="1073741824" comment="1GB"></entry>

This setting can be used to control the maximum size of data that can be written to the storage.

Full Section Default

<section name="storage">
  <entry key="storageEnabled" type="System.Boolean" default="true"></entry>
  <entry key="storagePath" type="System.String" default=".\storage"></entry>
  <entry key="storageMaxSize" type="System.Int64" default="1073741824" comment="1GB"></entry>
</section>