Operations: How to Reset ETL

ETL is processing documents from the point where the last batch finished. To start the processing from the very beginning you can reset the ETL by using ResetEtlOperation.

Syntax

public ResetEtlOperation(string configurationName, string transformationName)
Parameters
configurationName string ETL configuration name
transformationName string Name of ETL transformation

Example

ResetEtlOperation operation = new ResetEtlOperation("OrdersExport", "script1");
store.Maintenance.Send(operation);