Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/basin-etl/basin
Basin is a visual programming editor for building Spark and PySpark pipelines. Easily build, debug, and deploy complex ETL pipelines from your browser
https://github.com/basin-etl/basin
emr etl hadoop informatica odi pipeline pyspark spark
Last synced: about 1 month ago
JSON representation
Basin is a visual programming editor for building Spark and PySpark pipelines. Easily build, debug, and deploy complex ETL pipelines from your browser
- Host: GitHub
- URL: https://github.com/basin-etl/basin
- Owner: basin-etl
- License: other
- Created: 2020-03-12T22:48:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T12:29:11.000Z (almost 2 years ago)
- Last Synced: 2024-08-03T01:20:28.343Z (5 months ago)
- Topics: emr, etl, hadoop, informatica, odi, pipeline, pyspark, spark
- Language: TypeScript
- Homepage:
- Size: 7.08 MB
- Stars: 35
- Watchers: 2
- Forks: 3
- Open Issues: 45
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-AIML-Data-Ops - Basin - etl/basin.svg?style=social) - Visual programming editor for building Spark and PySpark pipelines (Data Pipeline ETL Frameworks)
- awesome-production-machine-learning - Basin - etl/basin.svg?style=social) - Visual programming editor for building Spark and PySpark pipelines. (Data Pipeline)
README
# Basin
Extract, transform, load using visual programming that can run Spark jobs on any environment
Create and debug from your browser and export into pure python code!
![Basin screenshot](https://github.com/zalmane/superglue-ui/blob/master/doc/basin_screenshot.png?raw=true)
# Features
- Up and running as simple as `docker pull`
- Create complex pipelines and flows using drag and drop
- Debug and preview step by step
- Integrated dataview grid viewer for easier debugging
- Auto-generates comments so you don't have to
- Export to beautiful, pure python code
- Build artifacts for AWS Glue deployment (Work in progress)
# Install
## Install from dockerhub
`$ docker pull zalmane/basin:latest`### Create data folder
`$ mkdir data`
This is the folder that will hold all input and output files### Run image
Run image mapping data directory to your local environment. This is where input/output goes (extract and load)`docker run --rm -d -v $PWD/data:/opt/basin/data --name basin_server -p 3000:3000 zalmane/basin:latest`
That's it. Point your browser to [http://localhost:3000](http://localhost:3000) and you're done!
Notes:
- Metadata is stored in the browser's indexeddb.## Install from source
### Install dev environment with docker
```
docker-compose up
```This will set up 2 containers: `basin-client` and `basin-server`
That's it. Point your browser to [http://localhost:8860](http://localhost:8860) and you're done!
To run npm commands in the basin-client container use:
```
docker exec basin-client npm
```To update changes in py files (block templates, lib), use:
```
docker exec basin-client npm run build-py
```# Getting started
## Creating sources
A source defines the information needed to parse and import a dataset. Sources are referenced when using an *Extract* block.
The source defines the following information:
- type of file (delimited, fixed width, json, parquet)
- regular expression to match when identifying the file. This will match against the file name
- information about headers and footers
- specific metadata based on type of file (for csv includes the delimiter etc)## Creating a flow
## Running and debugging a flow
## Exporting to python code
# Configuration
# Extending
## Creating new block typesEach block type consists of:
- Descriptor json
- code template
- optional code library template
- Properties panel### Descriptor
### Code template
### Ccode library template
### Properties panel# License
This program is free software: you can redistribute it and/or modify it under the terms of the Server Side Public License, version 1, as published by MongoDB, Inc. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Server Side Public License for more details. You should have received a copy of the Server Side Public License along with this program. If not, see
Copyright © 2018-2020 G.M.M Ltd.