Skip to content

Changing behaviours in Redis CE 8.0 #388

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

Merged
merged 3 commits into from
Jan 29, 2025
Merged
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
32 changes: 26 additions & 6 deletions tests/NRedisStack.Tests/Search/SearchTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
var ft = db.FT();
Schema sc = new Schema();
sc.AddTextField("name", 1.0, sortable: true);
ft.Create(index, FTCreateParams.CreateParams(), sc);

Check failure on line 67 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatim(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1673-877(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=9,QueuedItems=0,CompletedItems=66676,Timers=207), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 67 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatim(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1665-662(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=7,QueuedItems=0,CompletedItems=50145,Timers=163), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 67 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatim(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1048-712(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=15,QueuedItems=0,CompletedItems=59296,Timers=175), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 67 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatim(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1770-855(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=9,QueuedItems=0,CompletedItems=41262,Timers=148), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
AddDocument(db, new Document("data1").Set("name", "hello kitty"));

AggregationRequest r = new AggregationRequest("kitti");
Expand All @@ -87,7 +87,7 @@
var ft = db.FT();
Schema sc = new Schema();
sc.AddTextField("name", 1.0, sortable: true);
ft.Create(index, FTCreateParams.CreateParams(), sc);

Check failure on line 90 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatimAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1673-877(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=13,QueuedItems=0,CompletedItems=53919,Timers=214), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 90 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatimAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.02, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1665-662(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=15,QueuedItems=0,CompletedItems=41767,Timers=130), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 90 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatimAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1048-712(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=17,QueuedItems=0,CompletedItems=49548,Timers=142), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 90 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestAggregationRequestVerbatimAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.04, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1770-855(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=15,QueuedItems=0,CompletedItems=33377,Timers=115), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)
AddDocument(db, new Document("data1").Set("name", "hello kitty"));

AggregationRequest r = new AggregationRequest("kitti");
Expand Down Expand Up @@ -652,16 +652,26 @@
SearchResult noFilters = ft.Search(index, new Query());
Assert.Equal(5, noFilters.TotalResults);

SearchResult asOriginal = ft.Search(index, new Query("@first:Jo*"));
Assert.Equal(0, asOriginal.TotalResults);

SearchResult asAttribute = ft.Search(index, new Query("@given:Jo*"));
Assert.Equal(2, asAttribute.TotalResults);

SearchResult nonAttribute = ft.Search(index, new Query("@last:Rod"));
Assert.Equal(1, nonAttribute.TotalResults);
}

[SkipIfRedis(Comparison.LessThan, "7.9.0")]
[MemberData(nameof(EndpointsFixture.Env.StandaloneOnly), MemberType = typeof(EndpointsFixture.Env))]
public void FailWhenAttributeNotExist(string endpointId)
{
IDatabase db = GetCleanDatabase(endpointId);
var ft = db.FT();
Schema sc = new Schema().AddField(new TextField(FieldName.Of("first").As("given")))
.AddField(new TextField(FieldName.Of("last")));

Assert.True(ft.Create(index, FTCreateParams.CreateParams().Prefix("student:", "pupil:"), sc));
RedisServerException exc = Assert.Throws<RedisServerException>(() => ft.Search(index, new Query("@first:Jo*")));

Check failure on line 672 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.FailWhenAttributeNotExist(endpointId: "standalone")

Assert.Throws() Failure: No exception was thrown Expected: typeof(StackExchange.Redis.RedisServerException)

Check failure on line 672 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.FailWhenAttributeNotExist(endpointId: "standalone")

Assert.Throws() Failure: No exception was thrown Expected: typeof(StackExchange.Redis.RedisServerException)
}

[SkippableTheory]
[MemberData(nameof(EndpointsFixture.Env.StandaloneOnly), MemberType = typeof(EndpointsFixture.Env))]
public async Task CreateWithFieldNamesAsync(string endpointId)
Expand All @@ -684,16 +694,26 @@
SearchResult noFilters = await ft.SearchAsync(index, new Query());
Assert.Equal(5, noFilters.TotalResults);

SearchResult asOriginal = await ft.SearchAsync(index, new Query("@first:Jo*"));
Assert.Equal(0, asOriginal.TotalResults);

SearchResult asAttribute = await ft.SearchAsync(index, new Query("@given:Jo*"));
Assert.Equal(2, asAttribute.TotalResults);

SearchResult nonAttribute = await ft.SearchAsync(index, new Query("@last:Rod"));
Assert.Equal(1, nonAttribute.TotalResults);
}

[SkipIfRedis(Comparison.LessThan, "7.9.0")]
[MemberData(nameof(EndpointsFixture.Env.StandaloneOnly), MemberType = typeof(EndpointsFixture.Env))]
public async Task FailWhenAttributeNotExistAsync(string endpointId)
{
IDatabase db = GetCleanDatabase(endpointId);
var ft = db.FT();
Schema sc = new Schema().AddField(new TextField(FieldName.Of("first").As("given")))
.AddField(new TextField(FieldName.Of("last")));

Assert.True(await ft.CreateAsync(index, FTCreateParams.CreateParams().Prefix("student:", "pupil:"), sc));
RedisServerException exc = await Assert.ThrowsAsync<RedisServerException>(async () => await ft.SearchAsync(index, new Query("@first:Jo*")));

Check failure on line 714 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.FailWhenAttributeNotExistAsync(endpointId: "standalone")

Assert.Throws() Failure: No exception was thrown Expected: typeof(StackExchange.Redis.RedisServerException)

Check failure on line 714 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.FailWhenAttributeNotExistAsync(endpointId: "standalone")

Assert.Throws() Failure: No exception was thrown Expected: typeof(StackExchange.Redis.RedisServerException)
}

[SkipIfRedis(Is.Enterprise)]
[MemberData(nameof(EndpointsFixture.Env.StandaloneOnly), MemberType = typeof(EndpointsFixture.Env))]
public void AlterAdd(string endpointId)
Expand Down Expand Up @@ -1531,7 +1551,7 @@
.AddTextField("f1", 1.0)
.AddTextField("f2", 1.0)
.AddTextField("f3", 1.0);
ft.Create(index, FTCreateParams.CreateParams(), sc);

Check failure on line 1554 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCli(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1673-877(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=10,QueuedItems=0,CompletedItems=57926,Timers=226), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 1554 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCli(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1665-662(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=6,QueuedItems=0,CompletedItems=44723,Timers=142), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 1554 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCli(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1048-712(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=11,QueuedItems=0,CompletedItems=52662,Timers=154), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 1554 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCli(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1770-855(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=9,QueuedItems=0,CompletedItems=36187,Timers=127), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)


var res = ft.ExplainCli(index, explainQuery);
Expand All @@ -1554,7 +1574,7 @@
.AddTextField("f1", 1.0)
.AddTextField("f2", 1.0)
.AddTextField("f3", 1.0);
ft.Create(index, FTCreateParams.CreateParams(), sc);

Check failure on line 1577 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCliAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1673-877(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=9,QueuedItems=0,CompletedItems=62683,Timers=235), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 1577 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M02; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCliAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1665-662(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=7,QueuedItems=0,CompletedItems=47883,Timers=151), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 1577 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCliAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1048-712(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=4,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=15,QueuedItems=0,CompletedItems=56914,Timers=163), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)

Check failure on line 1577 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestExplainCliAsync(endpointId: "cluster")

StackExchange.Redis.RedisTimeoutException : Timeout performing FT.CREATE (10000ms), next: FT.CREATE, inst: 0, qu: 0, qs: 1, aw: False, bw: Inactive, rs: ReadAsync, ws: Idle, in: 0, in-pipe: 0, out-pipe: 0, last-in: 2, cur-in: 0, sync-ops: 8, async-ops: 1, serverEndpoint: localhost:16381, conn-sec: 10.01, aoc: 1, mc: 1/1/0, mgr: 10 of 10 available, clientName: fv-az1770-855(SE.Redis-v2.8.24.3255), IOCP: (Busy=0,Free=1000,Min=1,Max=1000), WORKER: (Busy=2,Free=32765,Min=4,Max=32767), POOL: (Threads=7,QueuedItems=0,CompletedItems=39163,Timers=136), v: 2.8.24.3255 (Please take a look at this article for some common client-side issues that can cause timeouts: https://stackexchange.github.io/StackExchange.Redis/Timeouts)


var res = await ft.ExplainCliAsync(index, explainQuery);
Expand Down Expand Up @@ -1879,7 +1899,7 @@
var q1 = new Query("foo").AddFilter(new Query.NumericFilter("num", 0, 2));
var q2 = new Query("foo").AddFilter(new Query.NumericFilter("num", 2, true, double.MaxValue, false));
q1.NoContent = q2.NoContent = true;
var res1 = ft.Search("idx", q1);

Check failure on line 1902 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestFilters(endpointId: "standalone")

StackExchange.Redis.RedisServerException : Unknown argument `0` at position 4 for <main>

Check failure on line 1902 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestFilters(endpointId: "standalone")

StackExchange.Redis.RedisServerException : Unknown argument `0` at position 4 for <main>
var res2 = ft.Search("idx", q2);

Assert.Equal(1, res1.TotalResults);
Expand Down Expand Up @@ -1929,7 +1949,7 @@
var q1 = new Query("foo").AddFilter(new Query.NumericFilter("num", 0, 2));
var q2 = new Query("foo").AddFilter(new Query.NumericFilter("num", 2, true, double.MaxValue, false));
q1.NoContent = q2.NoContent = true;
var res1 = await ft.SearchAsync("idx", q1);

Check failure on line 1952 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 6.0;

NRedisStack.Tests.Search.SearchTests.TestFiltersAsync(endpointId: "standalone")

StackExchange.Redis.RedisServerException : Unknown argument `0` at position 4 for <main>

Check failure on line 1952 in tests/NRedisStack.Tests/Search/SearchTests.cs

View workflow job for this annotation

GitHub Actions / Redis 8.0-M03; .NET 7.0;

NRedisStack.Tests.Search.SearchTests.TestFiltersAsync(endpointId: "standalone")

StackExchange.Redis.RedisServerException : Unknown argument `0` at position 4 for <main>
var res2 = await ft.SearchAsync("idx", q2);

Assert.Equal(1, res1.TotalResults);
Expand Down
Loading