Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dremio/warpdrive
https://github.com/dremio/warpdrive
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/dremio/warpdrive
- Owner: dremio
- License: other
- Created: 2022-01-18T23:56:19.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-23T20:44:47.000Z (4 months ago)
- Last Synced: 2024-08-23T22:07:25.676Z (4 months ago)
- Language: C++
- Size: 15.8 MB
- Stars: 3
- Watchers: 4
- Forks: 6
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# Warpdrive
## Developing with Docker
Warpdrive for Linux currently builds only on CentOS 7.
There is a `Dockerfile` based on CentOS 7 image containing all the dependencies needed for building and developing Warpdrive.1. First you need to build the Dockerfile:
```bash
docker build -t warpdrive .
```2. Then you can start a container binding volumes for `warpdrive`, `flightsql-odbc` and `arrow` repos:
```bash
docker run -it \
-v /PATH_TO_LOCAL_WARPDRIVE_REPO:/opt/warpdrive \
-v /PATH_TO_LOCAL_FLIGHTSQL_ODBC_REPO:/opt/flightsql-odbc \
-v /PATH_TO_LOCAL_ARROW_REPO:/opt/arrow \
--rm --name warpdrive \
--add-host=host.docker.internal:host-gateway \
warpdrive:latest bash
```**NOTE:** Be sure to replace `PATH_TO_LOCAL_..._REPO` to the actual paths on your computer.
3. To build Warpdrive inside of this container, simply run `./build.sh`.
The build will generate a binary `/opt/warpdrive/_build/release/libarrow-odbc.so.` which is the driver to be loaded on ODBC tools such as odbcinst and iodbc.
4. To run the ODBC Integration tests (in the container)
```
export DSN=FlightSQL./_build/release/warpdrive_tests > tests.log
```