Jayvee is our open-source domain-specific language for everyone to participate in building efficient data pipelines!
For more information, visit the documentation or our GitHub projects.
// Get started with your first pipeline!
pipeline MyAwesomePipeline {
// Just connect blocks into a sequence
MyAwesomeDataExtractor
-> MyAwesomeDataTransformer
-> MyAwesomeSinkLoader;
// And describe the blocks' behavior
block MyAwesomeDataExtractor oftype HttpExtractor {
url: "https://my-awesome-dataset.com";
retries: 3;
}
// ...
}
You can follow along on the jvalue-announce mailing list.
Or you can join the discussion on the jvalue-dev mailing list.