README.md 2.3 KB
Newer Older
V
Vlad Ilyushchenko 已提交
1
[![Codacy Badge](https://api.codacy.com/project/badge/grade/83c6250bd9fc45a98c12c191af710754)](https://www.codacy.com/app/bluestreak/nfsdb)
V
Vlad Ilyushchenko 已提交
2
[![Build Status](https://semaphoreci.com/api/v1/appsicle/questdb-2/branches/master/badge.svg)](https://semaphoreci.com/appsicle/questdb-2)
V
Vlad Ilyushchenko 已提交
3
[![Slack Status](https://serieux-saucisson-79115.herokuapp.com/badge.svg)](https://serieux-saucisson-79115.herokuapp.com/)
V
Vlad Ilyushchenko 已提交
4

V
Vlad Ilyushchenko 已提交
5 6 7
QuestDB is a time series database built for non-compromising performance, data accessibility and operational simplicity. It bridges the gap between traditional relational and time series databases by providing fast SQL access to both types of data. 

Existing features and component are:
V
Vlad Ilyushchenko 已提交
8

V
Vlad Ilyushchenko 已提交
9 10 11 12 13 14 15 16 17 18
- SQL language supporting filtering, aggregation, joins, time series joins, sub-queries, analytic functions
- SQL language optimiser to help making queries declarative rather than procedural
- Build-in http server component and Web Console, supporting data import and query execution
- REST API for data import, query and export
- Data import for delimited text files (CSV, tab and pipe) with automatic data type recognition 
- Programmatic data import and query from Java programming language
- Data replication engine
- Ticker plant support with automatic failover
- Can be used as both standalone server or embedded database thanks to small library size and no external dependencies
- Minimal memory footprint, data streaming query engine and no-GC operation
V
Vlad Ilyushchenko 已提交
19

V
Vlad Ilyushchenko 已提交
20 21
## UI Screenshots

V
Vlad Ilyushchenko 已提交
22 23 24 25 26 27 28 29 30 31 32

Drag-Drop bulk import
![Import Progress] (https://cloud.githubusercontent.com/assets/7276403/16665958/70eecec8-447d-11e6-8e78-1437c9c15db5.png)


Automatic format recognition 
![Data Import Summary](https://cloud.githubusercontent.com/assets/7276403/16666673/ae88722c-4480-11e6-96d3-cd309475ca9d.png)


Query editor
![Query Editor](https://cloud.githubusercontent.com/assets/7276403/16667611/5339f3fa-4485-11e6-89d3-e2c92c440bd6.png "Query Editor")
V
Vlad Ilyushchenko 已提交
33

V
Vlad Ilyushchenko 已提交
34
## License
V
Vlad Ilyushchenko 已提交
35

V
Vlad Ilyushchenko 已提交
36
QuestDB is licensed under GNU Affero General Public License (AGPLv3).
V
Vlad Ilyushchenko 已提交
37 38 39

## Documentation

V
Vlad Ilyushchenko 已提交
40
Work in progress. Please stay tuned.
V
Vlad Ilyushchenko 已提交
41 42

## Releases
V
Vlad Ilyushchenko 已提交
43

V
Vlad Ilyushchenko 已提交
44
Beta version can be downloaded from our web site https://www.questdb.org. Snapthot of embedded database is available on maven central at these coordinates
V
Vlad Ilyushchenko 已提交
45 46

```xml
V
Vlad Ilyushchenko 已提交
47 48 49 50 51
<dependency>
    <groupId>org.questdb</groupId>
    <artifactId>questdb-core</artifactId>
    <version>1.0.0-SNAPSHOT</version>
</dependency>
V
Vlad Ilyushchenko 已提交
52
```