Go to file
alamb 8be278aadd fix: speed up end-to-end test harness so it polls rather than waits 2020-06-30 12:21:25 -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 refactor: Change enum variant names to be PascalCase 2020-06-29 10:54:08 -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 feat: Add a local filesystem implementation of the object store 2020-06-29 08:48:48 -04:00
delorean_parquet refactor: Change enum variant names to be PascalCase 2020-06-29 10:54:08 -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 fix: speed up end-to-end test harness so it polls rather than waits 2020-06-30 12:21:25 -04:00
tests fix: speed up end-to-end test harness so it polls rather than waits 2020-06-30 12:21:25 -04:00
.gitignore chore: ignore tsm files 2020-06-04 14:36:43 +01:00
Cargo.lock Merge pull request #197 from influxdata/alamb/log-requests 2020-06-30 10:47:11 -04:00
Cargo.toml feat: enable rpc debug tracing, tweaked logging levels, respect RUST_FMT env var 2020-06-29 09:59:22 -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.