Skip to content

Commit d2d7a37

Browse files
xurui-cRachel Chen
and
Rachel Chen
authored
bug(sampling-in-storage): empty config should not do storage routing (#7007)
getsentry/eap-planning#230 Co-authored-by: Rachel Chen <[email protected]>
1 parent f38494c commit d2d7a37

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

snuba/web/rpc/v1/resolvers/R_eap_spans/common/sampling_in_storage_util.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,11 @@ def run_query_to_correct_tier(
128128
build_query: Callable[[T], Query],
129129
metrics_backend: MetricsBackend,
130130
) -> QueryResult:
131-
if not in_msg.meta.HasField("downsampled_storage_config"):
131+
if (
132+
not in_msg.meta.HasField("downsampled_storage_config")
133+
or in_msg.meta.downsampled_storage_config.mode
134+
== DownsampledStorageConfig.MODE_UNSPECIFIED
135+
):
132136
return run_query(
133137
dataset=PluggableDataset(name="eap", all_entities=[]),
134138
request=build_snuba_request(in_msg, query_settings, build_query),

tests/web/rpc/v1/test_endpoint_trace_item_table/test_endpoint_trace_item_table.py

+37
Original file line numberDiff line numberDiff line change
@@ -3205,6 +3205,43 @@ def use_eap_items_table(
32053205
snuba_set_config("use_eap_items_table", True)
32063206
snuba_set_config("use_eap_items_table_start_timestamp_seconds", 0)
32073207

3208+
def test_empty_downsampling_storage_config_does_not_have_downsampled_storage_meta(
3209+
self,
3210+
) -> None:
3211+
items_storage = get_storage(StorageKey("eap_items"))
3212+
msg_timestamp = BASE_TIME - timedelta(minutes=1)
3213+
messages = [
3214+
gen_message(
3215+
msg_timestamp,
3216+
)
3217+
for _ in range(30)
3218+
]
3219+
write_raw_unprocessed_events(items_storage, messages) # type: ignore
3220+
3221+
ts = Timestamp(seconds=int(BASE_TIME.timestamp()))
3222+
hour_ago = int((BASE_TIME - timedelta(hours=1)).timestamp())
3223+
3224+
empty_downsampled_storage_config_message = TraceItemTableRequest(
3225+
meta=RequestMeta(
3226+
project_ids=[1, 2, 3],
3227+
organization_id=1,
3228+
cogs_category="something",
3229+
referrer="something",
3230+
start_timestamp=Timestamp(seconds=hour_ago),
3231+
end_timestamp=ts,
3232+
request_id="be3123b3-2e5d-4eb9-bb48-f38eaa9e8480",
3233+
trace_item_type=TraceItemType.TRACE_ITEM_TYPE_SPAN,
3234+
downsampled_storage_config=DownsampledStorageConfig(),
3235+
),
3236+
columns=[
3237+
Column(key=AttributeKey(type=AttributeKey.TYPE_STRING, name="color"))
3238+
],
3239+
)
3240+
response = EndpointTraceItemTable().execute(
3241+
empty_downsampled_storage_config_message
3242+
)
3243+
assert not response.meta.HasField("downsampled_storage_meta")
3244+
32083245
def test_preflight(self) -> None:
32093246
items_storage = get_storage(StorageKey("eap_items"))
32103247
msg_timestamp = BASE_TIME - timedelta(minutes=1)

0 commit comments

Comments
 (0)