Go to file
Jake Goulding bae67cf43a refactor: Use InternalResult on the implementations of `get` streams 2020-06-29 08:48:48 -04:00
.circleci feat: Add parquet writer, hook up conversion in dstool (#124) 2020-06-08 16:25:24 -04:00
.github chore: ensure commit messages are semantic 2020-06-02 12:34:30 +01:00
benches perf: Improve line protocol --> parquet conversion performance by ~20% (#177) 2020-06-23 05:42:19 -04:00
delorean_generated_types style: Unify lints everywhere 2020-06-25 07:28:42 -04:00
delorean_ingest refactor: use SNAFU more idiomatically in delorean_ingest 2020-06-26 13:26:51 -04:00
delorean_line_parser refactor: Support converting EscapedStr into a String 2020-06-26 13:12:19 -04:00
delorean_object_store refactor: Use InternalResult on the implementations of `get` streams 2020-06-29 08:48:48 -04:00
delorean_parquet refactor: use SNAFU more idiomatically in delorean_parquet 2020-06-26 13:26:51 -04:00
delorean_table chore: Add public constructors for delorean_table::Error 2020-06-26 13:26:51 -04:00
delorean_table_schema refactor: No need to return &String 2020-06-26 13:12:19 -04:00
delorean_test_helpers style: Enable the clippy warning to use `Self` when recommended 2020-06-25 07:38:58 -04:00
delorean_tsm refactor: Use cmp::min instead of an if 2020-06-26 10:36:27 -04:00
delorean_utilities style: Enable the clippy warning to use `Self` when recommended 2020-06-25 07:38:58 -04:00
delorean_wal style: Enable the clippy warning to use `Self` when recommended 2020-06-25 07:38:58 -04:00
docs fix: Setup parquet column encoding correctly 2020-06-23 09:54:16 -04:00
proto/delorean feat: Integrate the WAL with delorean 2020-05-11 15:38:47 -04:00
src Merge pull request #193 from influxdata/idiomatic-snafu 2020-06-26 16:35:23 -04:00
tests refactor: Merge unknown and missing extension errors 2020-06-26 16:07:35 -04:00
.gitignore chore: ignore tsm files 2020-06-04 14:36:43 +01:00
Cargo.lock refactor: address PR feedback 2020-06-26 12:08:42 +01:00
Cargo.toml perf: Improve line protocol --> parquet conversion performance by ~20% (#177) 2020-06-23 05:42:19 -04:00
Dockerfile.ci refactor: Don't install rust and clippy twice 2020-06-26 11:45:41 -04:00
README.md docs: Initial style guide with idomatic error handling (#174) 2020-06-22 16:41:36 -04:00
env feat: Object storage in S3 and GCS 2020-06-10 17:23:52 -04:00
rust-toolchain feat: Use rust nightly (#123) 2020-06-05 17:45:44 -04:00
storectl-bench.sh feature: Add a create bucket HTTP api 2020-04-13 16:40:38 -04:00

README.md

Project Delorean

To compile and run this, you'll need:

  • Stable Rust
  • The flatc flatbuffer compiler >= 1.12.0
  • .env file in the directory to specify configuration options. You can see an example in the env file.

Contributing:

  • Delorean is written mostly in idiomatic Rust -- please see the Style Guide for more details.