Giter Site home page Giter Site logo

anirudhacharya / incubator-horaedb Goto Github PK

View Code? Open in Web Editor NEW

This project forked from apache/incubator-horaedb

0.0 0.0 0.0 7.25 MB

HoraeDB is a high-performance, distributed, cloud native time-series database.

Home Page: https://horaedb.apache.org

License: Apache License 2.0

Shell 0.25% Python 0.37% Java 0.09% Go 0.25% Rust 98.86% Makefile 0.17% Dockerfile 0.02%

incubator-horaedb's Introduction

License CI OpenIssue

δΈ­ζ–‡

HoraeDB is a high-performance, distributed, cloud native time-series database.

Documentation

Quick Start

Run with Docker

Run HoraeDB standalone Server.

docker run -d --name horaedb-server \
  -p 8831:8831 \
  -p 3307:3307 \
  -p 5440:5440 \
  ghcr.io/apache/horaedb-server:nightly-20231222-f57b3827

Create Table.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
CREATE TABLE `demo` (
    `name` string TAG,
    `value` double NOT NULL,
    `t` timestamp NOT NULL,
    timestamp KEY (t))
ENGINE=Analytic
  with
(enable_ttl="false")
'

Write data with SQL.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
INSERT INTO demo (t, name, value)
    VALUES (1702224000000, "horaedb", 100)
'

Read data with SQL.

curl --location --request POST 'http://127.0.0.1:5440/sql' \
-d '
SELECT * FROM `demo`
'

Run from source code

See details here.

Contributing

Any contribution is welcome!

Discuss at dev mailing list (subscribe / unsubscribe / archives)

Read our Contributing Guide and make your first contribution!

Acknowledgment

When develop HoraeDB, we benefit a lot from several other open source projects, such as influxdb_iox, tikv etc, thanks for their awesome work.

In our production usage, we heavily use OceanBase as implementation of both WAL and ObjectStorage, and OceanBase team help us maintain stability of our cluster, thanks for their kindly support.

License

HoraeDB is under Apache License 2.0.

incubator-horaedb's People

Contributors

archerny avatar baojinri avatar caicancai avatar chunshao90 avatar dennis40816 avatar dependabot[bot] avatar dust1 avatar fengmk2 avatar gogim1 avatar hehex9 avatar holicc avatar huachao avatar infdahai avatar jackwener avatar jakemcf22 avatar jiacai2050 avatar michaelleehz avatar quintintao avatar rachelint avatar shikaiwi avatar suyanhanx avatar tanruixiang avatar tisonkun avatar virrages avatar waynexia avatar ygf11 avatar zouxiang1993 avatar zuliangwang avatar zuston avatar zwpaper avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.