-
Notifications
You must be signed in to change notification settings - Fork 620
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
Handle redis.exceptions.WatchError as a non-error event in instrumentation #2668
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
3a801a7
add test
zhihali e0c326b
add test
zhihali b5fdaf5
Merge branch 'bugfix-2639' into bugfix-2639-dev
zhihali 99fab66
Merge pull request #1 from Charlie-lizhihan/bugfix-2639-dev
zhihali d329c7f
add test
zhihali f54ddff
Merge remote-tracking branch 'origin/bugfix-2639-dev' into bugfix-263…
zhihali bb00df7
add test
zhihali 251d07a
Merge pull request #2 from Charlie-lizhihan/bugfix-2639-dev
zhihali 045f84a
finish the fix
zhihali 4064762
Merge pull request #3 from Charlie-lizhihan/main
zhihali 0a4dbfc
black and isort
zhihali cda09c3
Merge pull request #4 from Charlie-lizhihan/bugfix-2639-dev
zhihali 830ab12
update changelog
zhihali dbda317
lint check
zhihali d90f66a
lint check
zhihali bc71666
bugfix
zhihali 963cca3
update the test
zhihali 8d21f23
Merge branch 'main' into bugfix-2639
zhihali ab023c8
add more error test
zhihali 7cdad8a
Merge remote-tracking branch 'origin/bugfix-2639' into bugfix-2639
zhihali 995966f
lint check
zhihali f0655e3
bug fix and add new test for sync watcherror
zhihali 1706bc1
Merge branch 'main' into bugfix-2639
zhihali 84247a9
Merge branch 'main' into bugfix-2639
zhihali 952b44c
Merge branch 'main' into bugfix-2639
zhihali 1c55cba
Merge branch 'main' into bugfix-2639
lzchen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
instrumentation/opentelemetry-instrumentation-redis/test-requirements.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -12,11 +12,16 @@ | |||||||||||||||||||||||||||||||||||||
# See the License for the specific language governing permissions and | ||||||||||||||||||||||||||||||||||||||
# limitations under the License. | ||||||||||||||||||||||||||||||||||||||
import asyncio | ||||||||||||||||||||||||||||||||||||||
from unittest import mock | ||||||||||||||||||||||||||||||||||||||
from unittest import IsolatedAsyncioTestCase, mock | ||||||||||||||||||||||||||||||||||||||
from unittest.mock import AsyncMock | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
import fakeredis | ||||||||||||||||||||||||||||||||||||||
import pytest | ||||||||||||||||||||||||||||||||||||||
import redis | ||||||||||||||||||||||||||||||||||||||
import redis.asyncio | ||||||||||||||||||||||||||||||||||||||
from fakeredis.aioredis import FakeRedis | ||||||||||||||||||||||||||||||||||||||
from redis.exceptions import ConnectionError as redis_ConnectionError | ||||||||||||||||||||||||||||||||||||||
from redis.exceptions import WatchError | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
from opentelemetry import trace | ||||||||||||||||||||||||||||||||||||||
from opentelemetry.instrumentation.redis import RedisInstrumentor | ||||||||||||||||||||||||||||||||||||||
|
@@ -311,3 +316,113 @@ def test_attributes_unix_socket(self): | |||||||||||||||||||||||||||||||||||||
span.attributes[SpanAttributes.NET_TRANSPORT], | ||||||||||||||||||||||||||||||||||||||
NetTransportValues.OTHER.value, | ||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def test_connection_error(self): | ||||||||||||||||||||||||||||||||||||||
server = fakeredis.FakeServer() | ||||||||||||||||||||||||||||||||||||||
server.connected = False | ||||||||||||||||||||||||||||||||||||||
redis_client = fakeredis.FakeStrictRedis(server=server) | ||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||
redis_client.set("foo", "bar") | ||||||||||||||||||||||||||||||||||||||
except redis_ConnectionError: | ||||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
spans = self.memory_exporter.get_finished_spans() | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(len(spans), 1) | ||||||||||||||||||||||||||||||||||||||
span = spans[0] | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.name, "SET") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.status.status_code, trace.StatusCode.ERROR) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def test_response_error(self): | ||||||||||||||||||||||||||||||||||||||
redis_client = fakeredis.FakeStrictRedis() | ||||||||||||||||||||||||||||||||||||||
redis_client.lpush("mylist", "value") | ||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||
redis_client.incr( | ||||||||||||||||||||||||||||||||||||||
"mylist" | ||||||||||||||||||||||||||||||||||||||
) # Trying to increment a list, which is invalid | ||||||||||||||||||||||||||||||||||||||
except redis.ResponseError: | ||||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
spans = self.memory_exporter.get_finished_spans() | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(len(spans), 2) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
span = spans[0] | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.name, "LPUSH") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.status.status_code, trace.StatusCode.UNSET) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
span = spans[1] | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.name, "INCRBY") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.status.status_code, trace.StatusCode.ERROR) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def test_watch_error_sync(self): | ||||||||||||||||||||||||||||||||||||||
def redis_operations(): | ||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||
redis_client = fakeredis.FakeStrictRedis() | ||||||||||||||||||||||||||||||||||||||
pipe = redis_client.pipeline(transaction=True) | ||||||||||||||||||||||||||||||||||||||
pipe.watch("a") | ||||||||||||||||||||||||||||||||||||||
redis_client.set("a", "bad") # This will cause the WatchError | ||||||||||||||||||||||||||||||||||||||
pipe.multi() | ||||||||||||||||||||||||||||||||||||||
pipe.set("a", "1") | ||||||||||||||||||||||||||||||||||||||
pipe.execute() | ||||||||||||||||||||||||||||||||||||||
except WatchError: | ||||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
redis_operations() | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
spans = self.memory_exporter.get_finished_spans() | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(len(spans), 3) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# there should be 3 tests, we start watch operation and have 2 set operation on same key | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(len(spans), 3) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
self.assertEqual(spans[0].attributes.get("db.statement"), "WATCH ?") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(spans[0].kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(spans[0].status.status_code, trace.StatusCode.UNSET) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
for span in spans[1:]: | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.attributes.get("db.statement"), "SET ? ?") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.status.status_code, trace.StatusCode.UNSET) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
class TestRedisAsync(TestBase, IsolatedAsyncioTestCase): | ||||||||||||||||||||||||||||||||||||||
def setUp(self): | ||||||||||||||||||||||||||||||||||||||
super().setUp() | ||||||||||||||||||||||||||||||||||||||
RedisInstrumentor().instrument(tracer_provider=self.tracer_provider) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
def tearDown(self): | ||||||||||||||||||||||||||||||||||||||
super().tearDown() | ||||||||||||||||||||||||||||||||||||||
RedisInstrumentor().uninstrument() | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@pytest.mark.asyncio | ||||||||||||||||||||||||||||||||||||||
async def test_watch_error_async(self): | ||||||||||||||||||||||||||||||||||||||
async def redis_operations(): | ||||||||||||||||||||||||||||||||||||||
try: | ||||||||||||||||||||||||||||||||||||||
redis_client = FakeRedis() | ||||||||||||||||||||||||||||||||||||||
async with redis_client.pipeline(transaction=False) as pipe: | ||||||||||||||||||||||||||||||||||||||
await pipe.watch("a") | ||||||||||||||||||||||||||||||||||||||
await redis_client.set("a", "bad") | ||||||||||||||||||||||||||||||||||||||
pipe.multi() | ||||||||||||||||||||||||||||||||||||||
await pipe.set("a", "1") | ||||||||||||||||||||||||||||||||||||||
await pipe.execute() | ||||||||||||||||||||||||||||||||||||||
except WatchError: | ||||||||||||||||||||||||||||||||||||||
pass | ||||||||||||||||||||||||||||||||||||||
Comment on lines
+403
to
+412
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd recommend this instead, so that we ensure the
Suggested change
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
await redis_operations() | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
spans = self.memory_exporter.get_finished_spans() | ||||||||||||||||||||||||||||||||||||||
zhihali marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# there should be 3 tests, we start watch operation and have 2 set operation on same key | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(len(spans), 3) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
self.assertEqual(spans[0].attributes.get("db.statement"), "WATCH ?") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(spans[0].kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(spans[0].status.status_code, trace.StatusCode.UNSET) | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
for span in spans[1:]: | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.attributes.get("db.statement"), "SET ? ?") | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.kind, SpanKind.CLIENT) | ||||||||||||||||||||||||||||||||||||||
self.assertEqual(span.status.status_code, trace.StatusCode.UNSET) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.