Skip to main content

Questions tagged [performance]

An evaluation of whether a system works well enough to be fit for purpose. Normally performance refers to the speed with which a system completes an operation or set of operations over time.

Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

I have multiple publication in the sql server with SQL Server version: 2017 Transactional REplication Distributor and Publisher are in the same server Subscriber is on the different server Also: 9 ...
Dmitriy Ryabin's user avatar
0 votes
1 answer
107 views

I’m running MySQL server on Linux. I have a long-standing issue on my database server — it keeps consuming an excessive amount of memory for no clear reason. As a result, I was forced to periodically ...
n0whereman's user avatar
0 votes
0 answers
54 views

We have observed an unusual CPU behavior on our SQL Server 2022 (Core Edition) starting from a specific date. The issue is that a few specific CPU cores — particularly cores 1, 7, 14, and 21 — ...
Mohammad Safyar's user avatar
0 votes
1 answer
37 views

I have a 24-node cluster that receives 400k to 600k ops/s at a latency of approximately 15ms-20ms at the 99th percentile. I haven't found the reason why after restarting the nodes, writes increase to ...
Enrique Alcocer's user avatar
0 votes
1 answer
54 views

I am running Fedora 42 KDE spin, and the output from mysql -V is mysql Ver 15.1 Distrib 10.11.11-MariaDB, for Linux (x86_64) using EditLine wrapper I have a script that runs weekly that creates a ...
Jeff's user avatar
  • 161
-1 votes
1 answer
53 views

I recently came across the NKTg Law on Varying Inertia in physics, which describes an object’s movement tendency based on its position (x), velocity (v), and mass (m), with m allowed to change over ...
TheNKTLaw's user avatar
3 votes
2 answers
505 views

I’m trying to track impacts of stored procedure executions - CPU time, execution duration, logical/physical reads, memory grants, etc. - in order to visualize them. In particular, I'm looking for ...
Kaaniche Emna's user avatar
0 votes
1 answer
60 views

In the course of optimizing my MariaDB database I have tried the following query (found in this blocg post): ANALYZE TABLE <my_table> PERSISTENT FOR ALL; The command runs without an error, ...
comodoro's user avatar
  • 103
1 vote
0 answers
110 views

Yesterday, I witnesses a running query in sp_WhoIsActive that I could not explain. It had the following properties: It ran in a nested transaction. The first transaction bulk inserts into a temp ...
J. Mini's user avatar
  • 1,322
3 votes
1 answer
314 views

I have to make multiple UPDATE statements, but I'm looking for the best approach to do so, in terms of readability and performance. I looked for another answers but the only thing I found is that &...
Gabriel A.'s user avatar
-1 votes
1 answer
149 views

Environment We run three Jira Service Management DC clusters that all share the same topology: MySQL 8.0.36 on Ubuntu 22.04 – 32 vCPU, 100 GB RAM, buffer-pool now 80 GB (only ~33 GB in use), NVMe ...
user340962's user avatar
1 vote
0 answers
110 views

since Oracle will increase the costs for running databases my employer is currently evaluating alternatives for oracle databases. In one application we currently use oracle db with no specific ...
Marcus's user avatar
  • 11
3 votes
1 answer
82 views

I run this SP at night, when there’s almost no activity. The SP performs an accumulative calculation of machine usage from a laundromat—an artisanal BI query. It writes the result to a table. On most ...
chronotrigger's user avatar
0 votes
2 answers
183 views

I've set up a SQL Server instance on a dedicated Windows server. The .mdf data file is placed on a dedicated disk configured as RAID 10, with the RAID controller cache ratio set to 90% write / 10% ...
Hamidreza Shokouhi's user avatar
0 votes
1 answer
48 views

I have a single physical server running Cassandra. Given that Cassandra performs poorly with fat nodes, which strategy is better: Running a single large node on the server (allocating all resources ...
Amir reza Riahi's user avatar
1 vote
0 answers
154 views

I have a SQL Server 2019 Enterprise and Quest LiteSpeed for SQL Server installed on all servers. On some of the servers the connection from LiteSpeed to SQL Server in GUI times out. After talking to ...
yanka24's user avatar
  • 37
5 votes
3 answers
971 views

The Problem I have a query that will always only hit the data from the past two weeks. It is business critical, so it must be fast. The table is inserted into very many times per hour. The table is ...
J. Mini's user avatar
  • 1,322
0 votes
4 answers
160 views

Context I have an entity called 'Interaction'. interaction | CREATE TABLE `interaction` ( `id` varchar(36) NOT NULL, `entity_id` varchar(36) DEFAULT NULL, `request_date` datetime DEFAULT NULL, ...
Naman's user avatar
  • 123
0 votes
2 answers
66 views

I have the following 2 queries: SELECT * FROM mytable WHERE id=1; and SELECT * FROM mytable WHERE id IN(1); Assuming that mytable is very large, I am interested in the performance difference for the ...
TheMemeMachine's user avatar
0 votes
1 answer
111 views

Will a hash index make this query faster? LIKE 'abc%' Hash indices can speed up point queries.
Marlon Brando's user avatar
0 votes
3 answers
98 views

I receive a .bak file from a 3rd party on a monthly basis and create 1 db each receipt. .bak file size is ~1Gb. This data is for lookup only and I never write to it. Are there any steps I can take to ...
ttugates's user avatar
1 vote
1 answer
129 views

If you are well read on partitioning, then you will be completely aware that partitioning is not a performance feature for rowstore indexes. However, whenever I see arguments made for this, as most ...
J. Mini's user avatar
  • 1,322
0 votes
1 answer
38 views

I’m building a blog application in React where each blog displays a list of comments. Each comment includes: Like count (total number of likes for the comment) Like status (whether the currently ...
Solruhama's user avatar
0 votes
1 answer
148 views

Excuse my grammar Im dyslexic: The main issue is that after calculating all the lags and flows at the ISIN level, when I try to do the final grouping by bucket, asset class, and date, I'm forced to re-...
Frank's user avatar
  • 11
0 votes
0 answers
71 views

Scenario is as follows: Table T is created as of CREATE TABLE T ( f_a ... ,f_b ... ,f_c ... ,ctv NUMBER(*,0) NOT NULL ,ffc DATE NOT NULL ,v NUMBER(1,0) ,uc NUMBER(1,...
glezo's user avatar
  • 121

1
2 3 4 5
130