Skip to content

Commit

Permalink
feat(cubestore): Support HLL from Apache DataSketches (for DataBricks) (
Browse files Browse the repository at this point in the history
  • Loading branch information
ovr committed May 13, 2024
1 parent 117f332 commit baf2667
Show file tree
Hide file tree
Showing 20 changed files with 666 additions and 34 deletions.
202 changes: 196 additions & 6 deletions rust/cubestore/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions rust/cubestore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ members = [
"cubestore",
"cubestore-sql-tests",
"cubehll",
"cubedatasketches",
"cubezetasketch",
"cuberpc",
"cuberockstore",
Expand Down
1 change: 1 addition & 0 deletions rust/cubestore/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ COPY Cargo.lock .
COPY cuberockstore cuberockstore
COPY cubehll cubehll
COPY cubezetasketch cubezetasketch
COPY cubedatasketches cubedatasketches
COPY cuberpc cuberpc
COPY cubestore-sql-tests cubestore-sql-tests
COPY cubestore/Cargo.toml cubestore/Cargo.toml
Expand Down
12 changes: 12 additions & 0 deletions rust/cubestore/cubedatasketches/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "cubedatasketches"
version = "0.1.0"
authors = ["Cube Dev, Inc."]
edition = "2021"
license = "Apache-2.0"
description = "Implementation of HLL from Apache DataSketches"

[dependencies]

[target.'cfg(not(target_os = "windows"))'.dependencies]
dsrs = { git = "https://github.com/cube-js/datasketches-rs.git", branch = "cubestore" }
1 change: 1 addition & 0 deletions rust/cubestore/cubedatasketches/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Overview

0 comments on commit baf2667

Please sign in to comment.