Skip to main content

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
configurationNamestringETL configuration name
transformationNamestringName of ETL transformation

Example

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