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

fix: ENABLE_LW_DELETIONS_CONSUMER default to False #6546

Merged
merged 2 commits into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion snuba/cli/devserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def devserver(*, bootstrap: bool, workers: bool) -> None:
[
"snuba",
"lw-deletions-consumer",
"--storage-name=search_issues",
"--storage=search_issues",
"--consumer-group=search_issues_deletes_group",
"--max-rows-batch-size=10",
"--max-batch-time-ms=1000",
Expand Down
2 changes: 1 addition & 1 deletion snuba/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ class RedisClusters(TypedDict):
)

# Enable lw deletions consumer (search issues only for now)
ENABLE_LW_DELETIONS_CONSUMER = os.environ.get("ENABLE_LW_DELETIONS_CONSUMER", True)
ENABLE_LW_DELETIONS_CONSUMER = os.environ.get("ENABLE_LW_DELETIONS_CONSUMER", False)

# Cutoff time from UTC 00:00:00 to stop running optimize jobs to
# avoid spilling over to the next day.
Expand Down
Loading