Skip to content

Commit

Permalink
add 2 encoding algorithms SPRINTZ and RLBE and 1 compression algorith…
Browse files Browse the repository at this point in the history
…m LZMA2 (#82)
  • Loading branch information
xjz17 authored Apr 11, 2023
1 parent 367b02d commit a503925
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion client/protocol.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ const (
GORILLA_V1 TSEncoding = 6
REGULAR TSEncoding = 7
GORILLA TSEncoding = 8
ZIGZAG TSEncoding = 9
FREQ TSEncoding = 10
CHIMP TSEncoding = 11
SPRINTZ TSEncoding = 12
RLBE TSEncoding = 13
)

const (
Expand All @@ -57,6 +62,7 @@ const (
PLA TSCompressionType = 6
LZ4 TSCompressionType = 7
ZSTD TSCompressionType = 8
LZMA2 TSCompressionType = 9
)

// TSStatusCode
Expand Down Expand Up @@ -195,4 +201,4 @@ const (
CqAlreadyActive int32 = 1401
CqAlreadyExist int32 = 1402
CqUpdateLastExecTimeError int32 = 1403
)
)

0 comments on commit a503925

Please sign in to comment.