Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: row protocol support for opentsdb #2468

Closed
wants to merge 36 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
2df6350
feat: open_tsdb support for row insert requests
Lilit0x Sep 21, 2023
67651e2
refactor: remove SqlStatementExecutor (#2464)
waynexia Sep 22, 2023
2292c41
feat: limit grpc message size (#2459)
TheWaWaR Sep 22, 2023
f9315bd
chore: remove unused region_stats method form table (#2458)
fengjiachun Sep 22, 2023
37156fc
feat: support for show full tables (#2410)
Lilit0x Sep 22, 2023
8a12762
feat: update proto and remove create_if_not_exists (#2467)
evenyag Sep 22, 2023
e2a8c0c
fix(mito): compaction scheduler schedules more tasks than expected (#…
evenyag Sep 22, 2023
5e1322e
refactor: not allowed int64 type as time index (#2460)
QuenKar Sep 22, 2023
e7c1d91
chore: typo (#2470)
fengjiachun Sep 22, 2023
ff2b44e
feat: implement storage for OTLP histogram (#2282)
sunng87 Sep 23, 2023
2d22d60
fix(mito): reset is_sorted to true after the merger finishing one ser…
evenyag Sep 23, 2023
a3ff532
fix(mito): normalize region dir in RegionOpener (#2475)
evenyag Sep 23, 2023
e4cbe5f
chore: refactor options (#2476)
fengjiachun Sep 24, 2023
e051841
chore: fix typo (#2477)
zyy17 Sep 24, 2023
198fcba
chore: add integration test for issue2437 (#2481)
NiwakaDev Sep 25, 2023
c6c8c2a
fix: changed tags to string type
Lilit0x Sep 25, 2023
87589e7
fix: print root cause error message to user facing interface (#2486)
MichaelScofield Sep 25, 2023
958adf7
refactor(mito): remove #[allow(dead_code)] (#2479)
evenyag Sep 25, 2023
6efc972
refactor: datetime time unit (#2469)
QuenKar Sep 25, 2023
013a3fb
fix: dn doesn't have chance to send a heartbeat to the new leader (#2…
WenyXu Sep 26, 2023
212c490
fix(tests): fixed open tsdb integration test
Lilit0x Sep 26, 2023
6ede1be
fix(tests): aligned top row in table for failing test
Lilit0x Sep 26, 2023
662e9bb
fix(tests): aligned top row in table for failing test
Lilit0x Sep 26, 2023
13d22ad
feat: re-support query engine execute dml (#2484)
zhongzc Sep 26, 2023
a2fcb27
fix: convert datetime to chrono datetime (#2497)
zhongzc Sep 26, 2023
d80977a
feat: distribute truncate table in region server (#2414)
DevilExileSu Sep 26, 2023
c53f366
feat: stack trace style debug print for error (#2489)
waynexia Sep 26, 2023
090e100
feat(mito): Add cache manager (#2488)
evenyag Sep 26, 2023
c20bade
fix: check for table scan before expanding (#2491)
waynexia Sep 26, 2023
987eefb
fix(mito): fix region drop task runs multiple times but never clean t…
evenyag Sep 27, 2023
efbd857
refactor: simplify `warn!` and `error!` macros (#2503)
waynexia Sep 27, 2023
5d8f46f
fix: re-create heartbeat stream ASAP (#2499)
WenyXu Sep 27, 2023
cfbee03
chore: tune return msg (#2506)
shuiyisong Sep 27, 2023
a71bf83
fix: allow `.`(dot) literal in table name (#2483)
MichaelScofield Sep 27, 2023
6eb49b5
feat: push down filters to region engine (#2513)
zhongzc Sep 27, 2023
9d72117
chore: changed opentsd handler to accept collection of datapoints
Lilit0x Sep 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
74 changes: 43 additions & 31 deletions Cargo.lock

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

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,11 @@ datafusion-substrait = { git = "https://github.com/waynexia/arrow-datafusion.git
derive_builder = "0.12"
futures = "0.3"
futures-util = "0.3"
greptime-proto = { git = "https://github.com/GreptimeTeam/greptime-proto.git", rev = "9d3f28d07d29607d0e3c1823f4a4d2bc229d05b9" }
greptime-proto = { git = "https://github.com/GreptimeTeam/greptime-proto.git", rev = "693128abe9adc70ba636010a172c9da55b206bba" }
humantime-serde = "1.1"
itertools = "0.10"
lazy_static = "1.4"
moka = { version = "0.11" }
once_cell = "1.18"
opentelemetry-proto = { version = "0.2", features = ["gen-tonic", "metrics"] }
parquet = "43.0"
Expand Down
Loading
Loading