You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 12, 2022. It is now read-only.
The OrientDB-ETL module is an amazing tool to move data from and to OrientDB by executing an [ETL process](http://en.wikipedia.org/wiki/Extract,_transform,_load). It's super easy to use. OrientDB ETL is based on the following principles:
2
-
- one [configuration file](https://github.com/orientechnologies/orientdb-etl/wiki/Configuration-File) in [JSON](http://en.wikipedia.org/wiki/JSON) format
3
-
- one [Extractor](https://github.com/orientechnologies/orientdb-etl/wiki/Extractor) is allowed to extract data from a source
4
-
- one [Loader](https://github.com/orientechnologies/orientdb-etl/wiki/Loader) is allowed to load data to a destination
5
-
- multiple [Transformers](https://github.com/orientechnologies/orientdb-etl/wiki/Transformer) that transform data in pipeline. They receive something in input, do something, return something as output that will be processed as input by the next component
4
+
- one [configuration file](http://www.orientechnologies.com/docs/last/orientdb-etl.wiki/Configuration-File.html) in [JSON](http://en.wikipedia.org/wiki/JSON) format
5
+
- one [Extractor](http://www.orientechnologies.com/docs/last/orientdb-etl.wiki/Extractor.html) is allowed to extract data from a source
6
+
- one [Loader](http://www.orientechnologies.com/docs/last/orientdb-etl.wiki/Loader.html) is allowed to load data to a destination
7
+
- multiple [Transformers](http://www.orientechnologies.com/docs/last/orientdb-etl.wiki/Transformer.html) that transform data in pipeline. They receive something in input, do something, return something as output that will be processed as input by the next component
Example of a process that extract from a CSV file, apply some change, lookup if the record has already been created and then store the record as document against OrientDB database:
0 commit comments