All Projects → duckdb → duckdb

duckdb / duckdb

Licence: MIT License
DuckDB is an in-process SQL OLAP Database Management System

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
julia
2034 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to duckdb

Duckdb
DuckDB is an in-process SQL OLAP Database Management System
Stars: ✭ 4,014 (-14.72%)
Mutual labels:  analytics, olap, embedded-database
Sparta
Real Time Analytics and Data Pipelines based on Spark Streaming
Stars: ✭ 513 (-89.1%)
Mutual labels:  analytics, olap
Crate
CrateDB is a distributed SQL database that makes it simple to store and analyze massive amounts of data in real-time.
Stars: ✭ 3,254 (-30.87%)
Mutual labels:  analytics, olap
Cubesviewer
Explore and visualize analytical datasets
Stars: ✭ 416 (-91.16%)
Mutual labels:  analytics, olap
Clickhouse
ClickHouse® is a free analytics DBMS for big data
Stars: ✭ 21,089 (+348.03%)
Mutual labels:  analytics, olap
cannyls
An embedded persistent key-value storage for Rust that is optimized for random-access workload and huge-capacity HDD
Stars: ✭ 104 (-97.79%)
Mutual labels:  embedded-database
mojito
🧪 Source-controlled split testing stack for building, launching and analysing A/B tests.
Stars: ✭ 49 (-98.96%)
Mutual labels:  analytics
stocklist
Stock data collection and analysis
Stars: ✭ 27 (-99.43%)
Mutual labels:  analytics
swetrix-js
The JavaScript analytics client for Swetrix Analytics
Stars: ✭ 28 (-99.41%)
Mutual labels:  analytics
viper
Real-time tracking and analytics using Node.js and Socket.IO
Stars: ✭ 12 (-99.75%)
Mutual labels:  analytics
goanalytics-web
移动端数据统计webUI
Stars: ✭ 36 (-99.24%)
Mutual labels:  analytics
pathling
Turn your FHIR data set into a powerful API that can be used to develop analytics applications and augment data science workflow.
Stars: ✭ 31 (-99.34%)
Mutual labels:  analytics
goatcounter
Easy web analytics. No tracking of personal data.
Stars: ✭ 2,468 (-47.57%)
Mutual labels:  analytics
hassio-addons
DSMR Reader Datalogger and Metabase Home Assistant Add-ons
Stars: ✭ 29 (-99.38%)
Mutual labels:  analytics
hastic
Hastic standalone
Stars: ✭ 37 (-99.21%)
Mutual labels:  analytics
tics
🎢 Simple self-hosted analytics ideal for Express / React Native stacks
Stars: ✭ 22 (-99.53%)
Mutual labels:  analytics
SQLGitHub
💻 SQLGitHub — Managing GitHub organization made easier
Stars: ✭ 34 (-99.28%)
Mutual labels:  analytics
Attendance-Portal
We have developed a cutting-edge attendance recorder. Using face recognition, you can easily record attendance and have access to in-depth analysis and a wide range of functionalities. Because of the covid-19 pandemic, stringent guidelines have been established, and precautions must be made to minimise unnecessary physical encounters. As a resul…
Stars: ✭ 20 (-99.58%)
Mutual labels:  analytics
swift-standard-clients
Client declarations and live implementations for standard iOS managers
Stars: ✭ 28 (-99.41%)
Mutual labels:  analytics
FSCNMF
An implementation of "Fusing Structure and Content via Non-negative Matrix Factorization for Embedding Information Networks".
Stars: ✭ 16 (-99.66%)
Mutual labels:  analytics

 

.github/workflows/main.yml CodeFactor codecov discord

DuckDB

DuckDB is a high-performance analytical database system. It is designed to be fast, reliable and easy to use. DuckDB provides a rich SQL dialect, with support far beyond basic SQL. DuckDB supports arbitrary and nested correlated subqueries, window functions, collations, complex types (arrays, structs), and more. For more information on the goals of DuckDB, please refer to the Why DuckDB page on our website.

Installation

If you want to install and use DuckDB, please see our website for installation and usage instructions.

Data Import

For CSV files and Parquet files, data import is as simple as referencing the file in the FROM clause:

SELECT * FROM 'myfile.csv';
SELECT * FROM 'myfile.parquet';

Refer to our Data Import section for more information.

SQL Reference

The website contains a reference of functions and SQL constructs available in DuckDB.

Development

For development, DuckDB requires CMake, Python3 and a C++11 compliant compiler. Run make in the root directory to compile the sources. For development, use make debug to build a non-optimized debug version. You should run make unit and make allunit to verify that your version works properly after making changes. To test performance, you can run several standard benchmarks from the root directory by executing ./build/release/benchmark/benchmark_runner.

Please also refer to our Contribution Guide.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].