Skip to content

Commit

Permalink
fix(eap-spans): Add an index on project_id
Browse files Browse the repository at this point in the history
  • Loading branch information
phacops committed Dec 19, 2024
1 parent 5fc3d7d commit b840929
Showing 1 changed file with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
from typing import Sequence

from snuba.clusters.storage_sets import StorageSetKey
from snuba.migrations import migration, operations
from snuba.migrations.operations import SqlOperation

storage_set_name = StorageSetKey.EVENTS_ANALYTICS_PLATFORM
local_table_name = "eap_spans_2_local"


class Migration(migration.ClickhouseNodeMigration):
blocking = False

def forwards_ops(self) -> Sequence[SqlOperation]:
return [
operations.AddIndex(
storage_set=StorageSetKey.EVENTS_ANALYTICS_PLATFORM,
table_name=local_table_name,
index_name="bf_project_id",
index_expression="project_id",
index_type="bloom_filter",
granularity=1,
target=operations.OperationTarget.LOCAL,
),
]

def backwards_ops(self) -> Sequence[SqlOperation]:
return [
operations.DropIndex(
storage_set=StorageSetKey.EVENTS_ANALYTICS_PLATFORM,
table_name=local_table_name,
index_name="bf_project_id",
target=operations.OperationTarget.LOCAL,
),
]

0 comments on commit b840929

Please sign in to comment.