oskardudycz on master
Updated Azure Pipelines connect… Fixes #2480 - Increased paralle… (compare)
oskardudycz on master
Updated Azure Pipelines connect… Fixes #2480 - Increased paralle… (compare)
oskardudycz on parallel_patching_ci
oskardudycz on parallel_patching_ci
oskardudycz on parallel_patching_ci
Fixes #2480 - Increased paralle… (compare)
oskardudycz on parallel_patching_ci
Fixes #2480 - Increased paralle… (compare)
appending
as well for each method. Also a a link to a section in the above mentioned page with a short explanation.
IQuerySession
for doing additional lookups, I wonder if it is feasible to query against documents generated by other projections? But for that, we'd need to have some guarantees on the order of processing.projections
command I almost changed it to rebuild inline projections first before starting the async, but punted on that
Published Type
concept in the ProjectionBase. Will try to implement something around that :)
.ToAsyncEnumerable()
? My code is as follows, and it appears that the session is not always (ever?) disposed properly, leaving the connection to postgres open and occasionally resulting in connection pool exhaustion on the server end.public IAsyncEnumerable<UserAggregate> GetUsers(CancellationToken cancellationToken)
{
using var session = _store.LightweightSession();
return session.Query<UserAggregate>().Where(x => x.IsActive).ToAsyncEnumerable(cancellationToken);
}