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: handle InfluxDBError when writing data #3788

Merged
merged 4 commits into from
Apr 17, 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
9 changes: 7 additions & 2 deletions api/app_analytics/influxdb_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from django.conf import settings
from influxdb_client import InfluxDBClient, Point
from influxdb_client.client.exceptions import InfluxDBError
from influxdb_client.client.write_api import SYNCHRONOUS
from sentry_sdk import capture_exception
from urllib3 import Retry
Expand Down Expand Up @@ -61,8 +62,12 @@ def add_data_point(self, field_name, field_value, tags=None):
def write(self):
try:
self.write_api.write(bucket=settings.INFLUXDB_BUCKET, record=self.records)
except HTTPError:
logger.warning("Failed to write records to Influx.")
except (HTTPError, InfluxDBError) as e:
logger.warning(
"Failed to write records to Influx: %s",
str(e),
exc_info=e,
)
logger.debug(
"Records: %s. Bucket: %s",
self.records,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from datetime import date
from typing import Generator, Type
from unittest import mock
from unittest.mock import MagicMock

import app_analytics
import pytest
from _pytest.monkeypatch import MonkeyPatch
from app_analytics.influxdb_wrapper import (
InfluxDBWrapper,
build_filter_string,
Expand All @@ -14,6 +17,9 @@
get_usage_data,
)
from django.conf import settings
from influxdb_client.client.exceptions import InfluxDBError
from influxdb_client.rest import ApiException
from urllib3.exceptions import HTTPError

# Given
org_id = 123
Expand All @@ -24,15 +30,42 @@
read_bucket = settings.INFLUXDB_BUCKET + "_downsampled_15m"


def test_write(monkeypatch):
# Given
@pytest.fixture()
def mock_influxdb_client(monkeypatch: Generator[MonkeyPatch, None, None]) -> MagicMock:
mock_influxdb_client = mock.MagicMock()
monkeypatch.setattr(
app_analytics.influxdb_wrapper, "influxdb_client", mock_influxdb_client
)
return mock_influxdb_client


@pytest.fixture()
def mock_write_api(mock_influxdb_client: MagicMock) -> MagicMock:
mock_write_api = mock.MagicMock()
mock_influxdb_client.write_api.return_value = mock_write_api
return mock_write_api


def test_write(mock_write_api: MagicMock) -> None:
# Given
influxdb = InfluxDBWrapper("name")
influxdb.add_data_point("field_name", "field_value")

# When
influxdb.write()

# Then
mock_write_api.write.assert_called()


@pytest.mark.parametrize("exception_class", [HTTPError, InfluxDBError, ApiException])
def test_write_handles_errors(
mock_write_api: MagicMock,
exception_class: Type[Exception],
caplog: pytest.LogCaptureFixture,
) -> None:
# Given
mock_write_api.write.side_effect = exception_class

influxdb = InfluxDBWrapper("name")
influxdb.add_data_point("field_name", "field_value")
Expand All @@ -41,7 +74,9 @@ def test_write(monkeypatch):
influxdb.write()

# Then
# The write API was called
mock_write_api.write.assert_called()
# but the exception was not raised


def test_influx_db_query_when_get_events_then_query_api_called(monkeypatch):
Expand Down