https://github.com/ceyhunkerti/elo
https://github.com/ceyhunkerti/elo
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ceyhunkerti/elo
- Owner: ceyhunkerti
- Created: 2025-01-10T18:22:22.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-02-19T16:27:22.000Z (8 months ago)
- Last Synced: 2025-04-11T22:07:58.324Z (6 months ago)
- Language: Zig
- Size: 1.39 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Fast data transfer utility for ELT workflows.
> This is not ready for production and still under heavy development.
> For this reason there is only test build instructions.## Development
- `mv .env.dev .env`
- Download oracle instant client from [here](https://www.oracle.com/database/technologies/instant-client/downloads.html)
- Extract instant client to a path and adjust the `LD_LIBRARY_PATH` in `.env`
- Install [zig](https://ziglang.org). (0.13)
- You may need to install `libaio` required by oracle client.```sh
sudo apt install libaio1# if your tests still fail with complaining about missing libaio
# you may also do the following
# adjust the paths according to your os.
# sudo ln -s /usr/lib/x86_64-linux-gnu/libaio.so.1t64 /usr/lib/x86_64-linux-gnu/libaio.so.1\
```- Run the test containers with `docker compose up`
- Run the tests with `source .env && zig build test`