Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dremio/dremio-oss
Dremio - the missing link in modern data
https://github.com/dremio/dremio-oss
analytics big-data data-analytics ui
Last synced: 3 days ago
JSON representation
Dremio - the missing link in modern data
- Host: GitHub
- URL: https://github.com/dremio/dremio-oss
- Owner: dremio
- License: apache-2.0
- Created: 2017-07-17T20:17:04.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-25T21:40:23.000Z (about 2 months ago)
- Last Synced: 2024-10-29T15:34:11.666Z (about 2 months ago)
- Topics: analytics, big-data, data-analytics, ui
- Language: Java
- Homepage: https://www.dremio.com
- Size: 127 MB
- Stars: 1,371
- Watchers: 91
- Forks: 445
- Open Issues: 52
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-datalake - Dremio - Dremio is a next-generation data lake engine that liberates your data with live, interactive queries directly on cloud data lake storage, including S3 and lakeFS. (Data Lake Engines)
- awesome-datalake - Dremio - Dremio is a next-generation data lake engine that liberates your data with live, interactive queries directly on cloud data lake storage, including S3 and lakeFS. (Data Lake Engines)
README
# Dremio
Dremio enables organizations to unlock the value of their data.
## Table of Contents
1. [Documentation](#documentation)
2. [Quickstart](#quickstart-how-to-build-and-run-dremio)
3. [Codebase Structure](#codebase-structure)
4. [Contributing](#contributing)
5. [Questions](#questions)## Documentation
Documentation is available at https://docs.dremio.com.
## Quickstart: How to build and run Dremio
### (a) Prerequisites
* JDK 21 ([OpenJDK](https://adoptium.net/temurin/releases/) or Oracle) as the default JDK (`JAVA_HOME` set to it)
* JDK 17 ([OpenJDK](https://adoptium.net/temurin/releases/) or Oracle) in Maven toolchain, required to run certain integration tests
* JDK 11 ([OpenJDK](https://adoptium.net/temurin/releases/) or Oracle) in Maven toolchain, required to run unit and integration tests
* (Optional) Maven 3.9.3 or later (using Homebrew: `brew install maven`)Run the following commands to verify that you have the correct versions of Maven and JDK installed:
java -version
mvn --versionAdd JDK 17 to the Maven toolchain, easiest to use `${HOME}/.m2/toolchains.xml`. Example:
```xml
jdk
11
sun
FULL_PATH_TO_YOUR_JAVA_11_HOME
jdk
17
sun
FULL_PATH_TO_YOUR_JAVA_17_HOME
jdk
21
sun
FULL_PATH_TO_YOUR_JAVA_21_HOME
```
### (b) Clone the Repository
git clone https://github.com/dremio/dremio-oss.git dremio
### (c) Build the Code
cd dremio
mvn clean install -DskipTests (or ./mvnw clean install -DskipTests if maven is not installed on the machine)The "-DskipTests" option skips most of the tests. Running all tests takes a long time.
### (d) Run/Install
#### Run
distribution/server/target/dremio-community-{DREMIO_VERSION}/dremio-community-{DREMIO_VERSION}/bin/dremio start
OR to start a server with a default user (dremio/dremio123)
mvn compile exec:exec -pl dac/daemon
Once run, the UI is accessible at:
http://localhost:9047
#### Production Install
##### (1) Unpack the tarball to install.
mkdir /opt/dremio
tar xvzf distribution/server/target/*.tar.gz --strip=1 -C /opt/dremio##### (2) Start Dremio Embedded Mode
cd /opt/dremio
bin/dremio#### OSS Only
To have the best possible experience with Dremio, we include a number of dependencies when building Dremio that are distributed under non-oss free (as in beer) licenses.
Examples include drivers for major databases such as Oracle Database, Microsoft SQL Server, MySQL as well as enhancements to improve source pushdowns and thread
scheduling. If you'd like to only include dependencies with OSS licenses, Dremio will continue to work but some features will be unavailable (such as
connecting to databases that rely on these drivers).To build dremio with only OSS dependencies, you can add the following option to your Maven commandline: `-Ddremio.oss-only=true`
The distribution directory will be `distribution/server/target/dremio-oss-{DREMIO_VERSION}/dremio-oss-{DREMIO_VERSION}`
## Codebase Structure
| Directory | Details |
|----------------------------------------|----------------------------------------------------------|
| [dac](dac/README.md) | Dremio Analyst Center - The Dremio management component. |
| [common](common/README.md) | Dremio Common |
| [distribution](distribution/README.md) | Dremio Distribution |
| [plugins](plugins/README.md) | Dremio Plugins |## Contributing
If you want to contribute to Dremio, please see [Contributing to Dremio](CONTRIBUTING.md).
## Questions?
If you have questions, please post them on https://community.dremio.com.