Skip to content

Commit

Permalink
Revert "feat(replays): add replay_id uuid processors to config (#5791)"
Browse files Browse the repository at this point in the history
This reverts commit 8ede52a.

Co-authored-by: JoshFerge <[email protected]>
  • Loading branch information
getsentry-bot and JoshFerge committed Apr 18, 2024
1 parent 8ede52a commit cdfd3ba
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
5 changes: 3 additions & 2 deletions snuba/datasets/configuration/discover/storages/discover.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,6 @@ schema:
args: { schema_modifiers: [nullable], size: 64 },
},
{ name: deleted, type: UInt, args: { size: 8 } },
{ name: replay_id, type: UUID, args: { schema_modifiers: [nullable] } }
]
local_table_name: discover_local
dist_table_name: discover_dist
Expand Down Expand Up @@ -116,7 +115,9 @@ query_processors:
column_name: tags
- processor: UUIDColumnProcessor
args:
columns: [event_id, trace_id, replay_id]
columns: !!set
trace_id: null
event_id: null
- processor: HexIntColumnProcessor
args:
columns: !!set
Expand Down
6 changes: 5 additions & 1 deletion snuba/datasets/configuration/events/storages/errors.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ allocation_policies:
getsentry.tasks.backfill_grouping_records:
max_threads: 2
concurrent_limit: 4

query_processors:
- processor: UniqInSelectAndHavingProcessor
- processor: TupleUnaliaser
Expand All @@ -302,7 +303,10 @@ query_processors:
- processor: UserColumnProcessor
- processor: UUIDColumnProcessor
args:
columns: [event_id, primary_hash, trace_id, replay_id]
columns: !!set
event_id: null
primary_hash: null
trace_id: null
- processor: HexIntColumnProcessor
args:
columns: !!set
Expand Down
7 changes: 6 additions & 1 deletion snuba/datasets/configuration/events/storages/errors_ro.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,8 @@ allocation_policies:
getsentry.tasks.backfill_grouping_records:
max_threads: 2
concurrent_limit: 4


query_processors:
- processor: UniqInSelectAndHavingProcessor
- processor: TupleUnaliaser
Expand All @@ -300,7 +302,10 @@ query_processors:
- processor: UserColumnProcessor
- processor: UUIDColumnProcessor
args:
columns: [event_id, primary_hash, trace_id, replay_id]
columns: !!set
primary_hash: null
event_id: null
trace_id: null
- processor: HexIntColumnProcessor
args:
columns: !!set
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@ schema:
},
{ name: app_start_type, type: String },
{ name: profile_id, type: UUID, args: { schema_modifiers: [nullable] } },
{ name: replay_id, type: UUID, args: { schema_modifiers: [nullable] } },
]
local_table_name: transactions_local
dist_table_name: transactions_dist
Expand Down Expand Up @@ -203,7 +202,7 @@ query_processors:
trace.span_id: span_id
- processor: UUIDColumnProcessor
args:
columns: [event_id, trace_id, profile_id, replay_id]
columns: [event_id, trace_id, profile_id]
- processor: HexIntColumnProcessor
args:
columns: [span_id]
Expand Down

0 comments on commit cdfd3ba

Please sign in to comment.