Quickstart
This is very first and simple quickstart example.
Various and more detailed tutorials are here.
1. Set your ETL process as config
Above code block is an example of an ETL process in Dataverse. In Dataverse, the available registered ETL functions are referred to as blocks
, and this example is comprised of four blocks. You can freely combine these blocks using config to create the ETL processes for your needs. The list of available functions and args of them can be found in the API Reference. Each functions 'args' should be added in dictionary format.
2. Run ETLpipeline.
ETLPipeline is an object designed to manage the ETL processes. By inserting ETL_config
which is defined in the previous step into ETLpipeline object and calling the run
method, stacked ETL blocks will execute in the order they were stacked.
3. Check the result
As the example gave save_path
argument to the last block of ETL_config
, data passed through the process will be saved on the given path.
Last updated