Platform Explorer / Nuxeo Platform LTS 2019 10.10

Component org.nuxeo.ecm.core.automation.features.bulk

Requirements

Resolution Order

851
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.

Contributions

XML Source

<?xml version="1.0"?>
<component name="org.nuxeo.ecm.core.automation.features.bulk" version="1.0.0">

  <require>org.nuxeo.ecm.core.bulk.config</require>

  <extension target="org.nuxeo.ecm.core.bulk" point="actions">
    <action name="automation" bucketSize="100" batchSize="10" httpEnabled="true"
      validationClass="org.nuxeo.ecm.automation.core.operations.services.bulk.validation.AutomationBulkValidation"/>
  </extension>

  <extension target="org.nuxeo.runtime.stream.service" point="streamProcessor">
    <streamProcessor name="automation"
      class="org.nuxeo.ecm.automation.core.operations.services.bulk.AutomationBulkAction" logConfig="bulk"
      defaultConcurrency="2" defaultPartitions="2">
      <policy name="automation" maxRetries="3" delay="1s" continueOnFailure="true" />
    </streamProcessor>
  </extension>

</component>