2,609 questions
0 votes
1 answer
151 views
SQL CLR function bad performance comparing to .NET App
In our system we are hashing passwords with the following method. public static string HashPassword(string password, byte[] salt) { if (salt == null) { throw new ArgumentNullException($...
2 votes
1 answer
115 views
How to improve query performance on large time-series container in GridDB Cloud?
I’m using GridDB Cloud (Free Tier) with Python to store time-series IoT data. My container currently has around 10 million rows, and it continues to grow daily. Schema: device_id STRING, created_at ...
4 votes
1 answer
108 views
How to aggregate hierarchical data efficiently in Django without causing N+1 queries?
I’m working with a hierarchical model structure in Django, where each level can represent a region, district, or village. The structure looks like this: class Location(models.Model): name = models....
-1 votes
1 answer
132 views
Improve name search performance across FirstName/LastName (Hebrew + English) with paging on 3.1M-row join
I need to speed up a query that lists transactions from BillingInfo joined to site/customer tables. Users filter by CustomerName (first + last). Data volume: BillingInfo ≈ 3.1M rows CREATE TABLE [dbo]....
0 votes
2 answers
223 views
Why correlated scalar is 10x times slower in MySQL comparing to PG
Let's create a table with 3000 rows create table tt(id int, txt text); insert into tt with recursive r(id) as (select 1 union all select id + 1 from r where id < 3e3) select id, concat('name', id) ...
4 votes
1 answer
173 views
Why does 'Index Seek' read 20 million rows for `select max(uk) from T where uk <= @x`?
In a table T with 20 million rows and a unique constraint on integer column uk, the following query induces SQL Server 2019 to perform a scan of all index entries instead of a single seek: select max(...
0 votes
1 answer
222 views
How to optimize slow TypeORM find() query with multiple nested relations in NestJS?
I am working in the backend of an application. One part of this application (like every application nowadays) is using AI for multiple things. The application's main purpose is building data warehouse ...
0 votes
1 answer
83 views
How do I benchmark queries in PostgreSQL? [closed]
I'm learning PostgreSQL Clustering abilities and I would like to compare performance of the same query with table not clustered and with table clustered. I tried to generate 25 million user events and ...
0 votes
3 answers
51 views
How to achieve target of 10KTPM in one minute using jmeter
I am working on one scenario where I have to check login flow of application for 10KTPM in minute. In my login flow exist- load the URL, Login and Home page load. In entire login flow we have 55 ...
0 votes
1 answer
100 views
Cassandra Java driver: high latency when executing many async reads in a loop
We're using DSE 6.0.18 (Cassandra version 3.11) and our application is both read and write heavy. I have a situation where I need to fire N number of read queries for each API (by partition key) using ...
0 votes
1 answer
88 views
"Query Targeting: Scanned Objects / Returned" Exceeding 1000 – How to Fix?
I'm using MongoDB Atlas and noticed a warning in the Performance Advisor and monitoring dashboard: "Query Targeting: Scanned Objects / Returned" has gone above 1000 From my understanding, ...
0 votes
1 answer
72 views
Evaluate the memory usage of a View being used to populate an AAS table
I need help evaluating the actual execution plan of an SQL Server View: https://www.brentozar.com/pastetheplan/?id=zAFOrTkUxr Context The above View is being called by Azure Data Factory to populate a ...
0 votes
1 answer
42 views
mongodb compound index for $or query
For the following query, what indexes should I create $match:{ "from_time": { "$gte": "2024-12-17T18:00:00.000Z" }, "to_time": ...
2 votes
1 answer
88 views
Wondering why spring leader election with JDBCLockRepository is constantly trying to insert into DB
Some year ago, we switched from some self built leader election mechanism to spring integration leader election, both on MariaDB clusters, relying on duplicate key violation. We switched to spring ...
1 vote
1 answer
66 views
Is a localField $lookup faster than a pipeline?
In MongoDB (version 8) I'm wondering about the most read-efficient way of storing a "sharing mechanism". I.e. the users can share items with other items within the same collection. When ...