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

ref(buffering): Add BufferService with SQLite backend #1920

Merged
merged 39 commits into from
Mar 30, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
566cad9
ref(buffering): Add BufferService with SQLite backend
olksdr Mar 9, 2023
baa323e
Add changelog entry and fix lints
olksdr Mar 13, 2023
825ffc2
Add path to db in tmp
olksdr Mar 13, 2023
d3a5dc6
sorted relay-server deps
olksdr Mar 13, 2023
ddf87c0
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 13, 2023
76c102a
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 20, 2023
7c4f618
Post master merge fixes
olksdr Mar 20, 2023
fe3292d
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 22, 2023
601f947
Addressed some PR review comments
olksdr Mar 22, 2023
5a1c17b
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 22, 2023
60902f2
Cleanup
olksdr Mar 22, 2023
e46b14f
Extend the config and use BufferPermit
olksdr Mar 22, 2023
94ceb7a
Better error messages
olksdr Mar 22, 2023
de8b39e
ref: use one service for in-memory and on disk buffering
olksdr Mar 22, 2023
74ec158
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 22, 2023
dbb3b3b
Fix changelog
olksdr Mar 22, 2023
cb4e5c0
ref: remove unwrap, add another config option
olksdr Mar 23, 2023
4caed2e
Set limit on batch inserts.
olksdr Mar 23, 2023
d427ffc
Reserve permits before getting data from DB
olksdr Mar 23, 2023
c7d4de7
Request permits per key
olksdr Mar 23, 2023
1fd521b
Review comments
olksdr Mar 23, 2023
4a176fd
Address more review comments
olksdr Mar 24, 2023
d688a49
match on the reuest size
olksdr Mar 24, 2023
54d4c0a
ref: build in the migrations into the binary
olksdr Mar 24, 2023
fcd6740
reorganize the config
olksdr Mar 24, 2023
4356295
just use the provided path
olksdr Mar 24, 2023
8f73ccc
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 24, 2023
ecd339c
Add docs and enabled shared cache
olksdr Mar 25, 2023
97df208
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 27, 2023
b92449e
remove un-used imports
olksdr Mar 27, 2023
6bc057b
review comments: fetch all envelopes from disk till there is nothing …
olksdr Mar 27, 2023
28601e4
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 28, 2023
b038237
Review comments
olksdr Mar 28, 2023
05050ce
Chunk up the envelopes with future streams
olksdr Mar 28, 2023
d6d8d06
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 28, 2023
2a7e01f
fix docs
olksdr Mar 29, 2023
47f32ac
Merge branch 'master' into feat/buff-with-lite
olksdr Mar 29, 2023
69fce70
Switch to fetch using Stream to query db
olksdr Mar 29, 2023
c6a8714
small checks and logging
olksdr Mar 30, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
# Changelog

## Unreleased

**Internal**:

- Add BufferService with SQLite backend. ([#1920](https://github.com/getsentry/relay/pull/1920))

## 23.3.1

**Features**:

- Indicate if OS-version may be frozen with '>=' prefix. ([#1945](https://github.com/getsentry/relay/pull/1945))
- Normalize monitor slug parameters into slugs. ([#1913](https://github.com/getsentry/relay/pull/1913))
- Smart trim loggers for Java platforms. ([#1941](https://github.com/getsentry/relay/pull/1941))

**Internal**:

- PII scrub `span.data` by default. ([#1953](https://github.com/getsentry/relay/pull/1953))
- Scrub sensitive cookies. ([#1951](https://github.com/getsentry/relay/pull/1951)))

Expand Down
Loading