Skip to main content

Questions tagged [innodb]

InnoDB : MySQL's ACID-compliant Storage Engine

0 votes
2 answers
13 views

For example, if a table has columns A, B, ID, and (ID) is the primary key, and (A) is a secondary index. I wonder if the leaf nodes on the secondary index (A) is sorted by (A,ID), or just (A), and the ...
Name Null's user avatar
  • 101
0 votes
1 answer
112 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
36 views

I am using MySQL 8.0. I have a sales table with only 30,000 rows. I had a problem where the table was frozen and I couldn't alter the values in any of the columns. I attempted to duplicate the data ...
smdhkv's user avatar
  • 1
-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
0 votes
2 answers
114 views

I have a purely theoretical question that would help me understand how exactly data is stored in the database. Database settings: MySQL 8.0.15, Innodb; Innodb_file_per_table - ON (default); ...
Kontar Maryna's user avatar
1 vote
0 answers
122 views

I successfully encrypted my MariaDB database using file_key_management and following this guide. Now I'd like to change the encryption key and suppose I need to decrypt the database first, before I ...
NablaDelta's user avatar
0 votes
0 answers
68 views

I have a large production MySQL 8.0.33 primary node with two replication nodes. Today, our database suddenly hung. SHOW FULL PROCESSLIST showed many connections in the Waiting for handler commit state,...
ERFANIUM's user avatar
3 votes
1 answer
379 views

MySQL refuses to start up and I was only able to start in read-only mode using innodb_force_recovery = 6. Every answer I've found on this topic suggests making a backup, deleting ibdata and ...
You Old Fool's user avatar
2 votes
1 answer
118 views

MySQL (libmysql - mysqlnd 5.0.12-dev - 20150407. I tried to get it updated a few times but I get push back). When I run this: SELECT (SELECT EXISTS(select 1 from cadran_item where id_parcelle = ...
Mickael Bergeron Néron's user avatar
2 votes
1 answer
173 views

Assume the following table: DROP TABLE IF EXISTS person; CREATE TABLE person ( id int unsigned auto_increment primary key, name varchar(255) not null, age tinyint unsigned, key (age)...
William's user avatar
  • 155
0 votes
4 answers
162 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
140 views

I've been running into this issue on a production instance and so tried a small scale local re-create and managed to do it. I have a simple test table CREATE TABLE `test` ( `id` int unsigned NOT ...
Wodlo's user avatar
  • 103
0 votes
1 answer
120 views

We have a percona mysql database where one of the table which is touching almost 26.8Gb in size. The server is just 4Gb but its specifically only hosting mysql. Now when I am trying to run a simple ...
user8012596's user avatar
3 votes
1 answer
223 views

We get this warning in our online shop report.WARNING: Memory size allocated for the temporary table is more than 20% of innodb_buffer_pool_size. Please update innodb_buffer_pool_size or decrease ...
Black's user avatar
  • 135
0 votes
2 answers
100 views

A very basic query but from a huge table SELECT profile_id FROM clients WHERE is_vip = 0 execution has a duration of 0.716s and data fetch time of 15.072s Obviously my question is if I can speed this ...
slash197's user avatar
  • 101

15 30 50 per page
1
2 3 4 5
150