<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>MySQL Forums</title>
        <description></description>
        <link>https://forums.mysql.com/index.php</link>
        <lastBuildDate>Fri, 01 May 2026 06:50:58 +0000</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741801,741801#msg-741801</guid>
            <title>Optimizing InnoDB for high-concurrency REST API traffic (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741801,741801#msg-741801</link>
            <description><![CDATA[ I am relatively new to advanced MySQL optimization and could use some architecture advice from the veterans here. <br />
<br />
I am currently scaling the backend database infrastructure for our platform, LuvSMM, which processes a very high volume of concurrent REST API requests. We are trying to maintain an API response latency of under 200ms globally.<br />
<br />
Right now, we are dealing with sudden traffic &quot;surges&quot;—sometimes thousands of concurrent requests hitting our endpoints simultaneously. The workflow is mostly fast SELECT queries (to check user balances), immediately followed by rapid, bulk INSERTs (queuing the new orders).<br />
<br />
My questions are:<br />
1. What is the best practice for managing connection pooling in MySQL when dealing with these sudden, massive spikes in API traffic?<br />
2. Are there specific InnoDB settings (like `innodb_buffer_pool_size` or `innodb_flush_log_at_trx_commit`) that I should tweak to prioritize write speed and reduce database-level locking/latency?<br />
3. Is it standard practice to queue these API insertions externally (using something like Redis) before writing to MySQL, or can MySQL handle the raw concurrency if tuned correctly?<br />
<br />
I appreciate any guidance or documentation you can point me towards. Thank you for helping a newbie learn the ropes of enterprise-level database scaling!]]></description>
            <dc:creator>Sarthak Sarthak</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 29 Apr 2026 07:27:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741800,741800#msg-741800</guid>
            <title>Optimizing InnoDB for high-frequency concurrent API status updates? (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741800,741800#msg-741800</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I am looking for some architectural advice regarding a write-heavy database workload.<br />
<br />
I manage the backend infrastructure for SMM Bear, a B2B digital routing platform for marketing agencies. Because our system relies on algorithmic drip-feed pacing, our core MySQL database handles a massive number of concurrent transactions. Specifically, our cron jobs are constantly reading queued orders, fetching data from external APIs, and writing back status updates (Processing, Completed, Partial) multiple times per minute.<br />
<br />
We are using InnoDB. During peak hours, when thousands of status updates hit the database simultaneously, we are noticing some transaction queuing and occasional deadlock warnings in the logs.<br />
<br />
My questions for the DBA experts here are:<br />
<br />
For a queue-like table structure where a &#039;status&#039; column is being updated constantly, what are the best practices for configuring innodb_buffer_pool_size and innodb_flush_log_at_trx_commit to maximize write throughput safely?<br />
<br />
Do you recommend any specific indexing strategies to prevent row-locking bottlenecks when multiple API threads are trying to update different rows in the same table simultaneously?<br />
<br />
Any advice on optimizing MySQL for a heavy, high-frequency API environment would be greatly appreciated!<br />
<br />
Thanks,<br />
Aaryan Sharma]]></description>
            <dc:creator>Aaryan Sharma</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 29 Apr 2026 03:58:07 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741788,741788#msg-741788</guid>
            <title>QUESTION ABOUT FOREIGN KEY (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,741788,741788#msg-741788</link>
            <description><![CDATA[ Hello,<br />
<br />
I use MySQL Workbench 8.0 CE for Windows.<br />
<br />
I have a table of parameters : table PARAMS :<br />
<br />
ParamTyp	ParamNum	ParamDescription<br />
Type1		1		Description 1-1<br />
Type1		2		Description 1-2<br />
Type2		1		Description 2-1<br />
Type2		2		Description 2-2<br />
Type2		3		Description 2-3<br />
<br />
on this table there is an index (just an ordinary index, not a primary key) on (ParamTyp, ParamNum).<br />
<br />
I have another table of activity : table ACTIVITY :<br />
<br />
create table  ACTIVITY<br />
(<br />
Info1 &lt;type&gt;,<br />
Info2 &lt;type&gt;,<br />
MyTypeNum &lt;same type as ParamNum in PARAMS table&gt;<br />
) ;<br />
<br />
Now, what I’d like to do, is :<br />
<br />
alter table ACTIVITY add constraint FK_ACTIVITY foreign key (MyTypeNum) references PARAMS(ParamNum) where ParamTyp = &#039;Type1&#039; ;<br />
<br />
in order to make sure that ACTIVITY.MyTypeNum has a value referenced in the « Type1 » parameters ; so that  ACTIVITY.MyTypeNum could only have value 1 or 2 ; but not value 3 which does not exist for PARAMS.ParamTyp = &#039;Type1&#039;.<br />
<br />
But when I try, the alter table query makes an error :<br />
<br />
Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;where ParamTyp = &#039;Type1&#039;&#039; at line 1<br />
<br />
Is it because it’s possible, but the syntax I used is wrong (= the alter table query should be written differently) ?<br />
Or is it just impossible to create a foreign key on filtered datas ?<br />
<br />
Thanks for your answer and advices.<br />
<br />
Regards,<br />
Herve]]></description>
            <dc:creator>Herve Anselme</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 28 Apr 2026 17:20:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,741785,741785#msg-741785</guid>
            <title>Announcing April 2026 Releases featuring MySQL Server 9.7.0, 8.4.9 and 8.0.46 (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,741785,741785#msg-741785</link>
            <description><![CDATA[ <pre class="bbcode">

Dear MySQL users,

We are pleased to announce the release of the following products:

    * MySQL Server 9.7.0, 8.4.9, and 8.0.46
    * MySQL Shell, Router 9.7.0, 8.4.9, and 8.0.46
    * MySQL 9.7.0 Connectors
    * MySQL NDB Cluster 9.7.0, 8.4.9, 8.0.46, and 7.6.38

These releases are recommended for use on production systems and are
available in source and binary form for a number of platforms from our
MySQL Community download pages at:

<a href="https://dev.mysql.com/downloads/"  rel="nofollow">https://dev.mysql.com/downloads/</a>

Regardless of server version, always use the latest version of MySQL
Clients, Tools, and Connectors as they support both MySQL Server 8.0
and 8.4 LTS too.

Windows packages are available via the Installer for Windows or .ZIP
(no-install) packages for more advanced needs. The point and click
configuration wizards and MySQL products are available in the unified
Installer for Windows:

<a href="https://dev.mysql.com/downloads/installer/"  rel="nofollow">https://dev.mysql.com/downloads/installer/</a>

Enterprise binaries for these new releases are available on My Oracle
Support:

<a href="https://support.oracle.com"  rel="nofollow">https://support.oracle.com</a>

Choose the “Patches &amp; Updates” tab, and then choose the “Product or
Family (Advanced Search)” side tab in the “Patch Search” portlet.

MySQL Enterprise binaries are also available on the Oracle Software
Delivery Cloud:

<a href="https://edelivery.oracle.com/"  rel="nofollow">https://edelivery.oracle.com/</a>

Developers can download MySQL Enterprise Edition from

<a href="https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html"  rel="nofollow">https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html</a>

Innovation releases are supported until the next innovation release, and
are recommended for production use. The 8.0, 8.4 and 9.7 series
will focus on security and bug fixes only. Please refer to the following
for more information:

<a href="https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html</a>

As of April 2026, with version 8.0.46, MySQL 8.0 reaches End of Life (EoL). MySQL 8.0 
users are encouraged to upgrade to the latest MySQL 8.4 LTS or MySQL Innovation release.

Changes since the previous releases can be viewed online:

<a href="https://dev.mysql.com/doc/#current-release-notes"  rel="nofollow">https://dev.mysql.com/doc/#current-release-notes</a>

On Behalf of the MySQL Engineering Team,
Balasubramanian Kandasamy

</pre>]]></description>
            <dc:creator>Balasubramanian Kandasamy</dc:creator>
            <category>Announcements</category>
            <pubDate>Mon, 27 Apr 2026 09:22:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?11,741783,741783#msg-741783</guid>
            <title>tar.gz package for Debian 13 (no replies)</title>
            <link>https://forums.mysql.com/read.php?11,741783,741783#msg-741783</link>
            <description><![CDATA[ Hello,<br />
is it possible that you provide a tar.xz package for Debian 13?<br />
<br />
With debian 12 i was using the generic linux package. But this does not work for debian 13 because of changed libs.<br />
<br />
<br />
Thanks<br />
Andi]]></description>
            <dc:creator>Andreas SACHS</dc:creator>
            <category>Install &amp; Repo</category>
            <pubDate>Sun, 26 Apr 2026 19:30:46 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741782,741782#msg-741782</guid>
            <title>MySQL Workbench for Ubuntu 26.04 (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741782,741782#msg-741782</link>
            <description><![CDATA[ Is there a prediction when a version of MySQL Workbench for Ubuntu 26.04 will be released?]]></description>
            <dc:creator>Gil W</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Sat, 25 Apr 2026 13:37:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?11,741781,741781#msg-741781</guid>
            <title>MySQL community repo missing package (1 reply)</title>
            <link>https://forums.mysql.com/read.php?11,741781,741781#msg-741781</link>
            <description><![CDATA[ Hello,<br />
could you check repository for communty? We are getting issue about missing package mysql84-community-release-el8-3.noarch.rpm but it is repoda.<br />
<br />
Could you add missing package and rebuild repository?<br />
<br />
404, message=&#039;Not Found&#039;, url=&#039;<a href="https://repo.mysql.com/yum/mysql-8.4-community/el/8/x86_64/mysql84-community-release-el8-3.noarch.rpm&#039"  rel="nofollow">https://repo.mysql.com/yum/mysql-8.4-community/el/8/x86_64/mysql84-community-release-el8-3.noarch.rpm&#039</a>;]]></description>
            <dc:creator>Michal Bartoš</dc:creator>
            <category>Install &amp; Repo</category>
            <pubDate>Mon, 27 Apr 2026 07:49:01 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?11,741769,741769#msg-741769</guid>
            <title>NO_PUBKEY 9D769D5183E7DDC8 (1 reply)</title>
            <link>https://forums.mysql.com/read.php?11,741769,741769#msg-741769</link>
            <description><![CDATA[ Hi,<br />
<br />
When I follow the steps on <a href="https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#apt-repo-fresh-install"  rel="nofollow">https://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/#apt-repo-fresh-install</a> to install on Ubuntu, I&#039;m getting this error:<br />
<br />
        Err:4 <a href="http://repo.mysql.com/apt/ubuntu"  rel="nofollow">http://repo.mysql.com/apt/ubuntu</a> jammy InRelease<br />
          The following signatures couldn&#039;t be verified because the public key is not available: NO_PUBKEY 9D769D5183E7DDC8<br />
<br />
I&#039;m using the latest version of the apt-config repo (mysql-apt-config_0.8.36-1_all.deb), which still installs an older key:<br />
<br />
$ gpg --show-keys /usr/share/keyrings/mysql-apt-config.gpg <br />
pub   rsa4096 2023-10-23 [SC] [expires: 2027-10-23]<br />
      BCA43417C3B485DD128EC6D4B7B3B788A8D3785C<br />
uid                      MySQL Release Engineering &lt;mysql-build@oss.oracle.com&gt;<br />
sub   rsa4096 2023-10-23 [E] [expires: 2027-10-23]<br />
<br />
There isn&#039;t a new key available either at <a href="https://repo.mysql.com/"  rel="nofollow">https://repo.mysql.com/</a> (the latest is <a href="https://repo.mysql.com/RPM-GPG-KEY-mysql-2025"  rel="nofollow">https://repo.mysql.com/RPM-GPG-KEY-mysql-2025</a> which is the old key).<br />
<br />
Was there a key rotation yesterday? Will there be an update to the apt-config repo soon for the new key? This is blocking new repo-based installs on Ubuntu.]]></description>
            <dc:creator>Jeff Erbrecht</dc:creator>
            <category>Install &amp; Repo</category>
            <pubDate>Thu, 23 Apr 2026 11:05:18 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?26,741767,741767#msg-741767</guid>
            <title>MySQL Replication issue (no replies)</title>
            <link>https://forums.mysql.com/read.php?26,741767,741767#msg-741767</link>
            <description><![CDATA[ We are using MySQL Community Server version 8.0.45 for a database with a total data size more than 20 TB. Our setup includes a DC–DR replication using MySQL native replication. We are also using table partitioning.<br />
<br />
During replication, we are encountering the following errors:<br />
<br />
* *Error Code: 1030* – Got error -1 from storage engine<br />
* *Error Code: 1032* – Can&#039;t find record in table<br />
<br />
We have tested both binlog-based and GTID-based replication, and the issue persists in both configurations.<br />
<br />
Notably:<br />
<br />
* There were no network interruptions during the incidents.<br />
* No corresponding OS-level errors were observed.<br />
<br />
We are trying to understand the root cause of these errors in a large, partitioned environment and how to resolve them without risking data inconsistency.<br />
<br />
Any guidance on possible causes and recommended troubleshooting steps would be greatly appreciated.<br />
<br />
Thank you.]]></description>
            <dc:creator>Beekshan Chaki</dc:creator>
            <category>Replication</category>
            <pubDate>Mon, 20 Apr 2026 08:34:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741766,741766#msg-741766</guid>
            <title>Two tables with bidirectional relationships (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741766,741766#msg-741766</link>
            <description><![CDATA[ Hello,<br />
<br />
i am new two MySQL and i am trying to setup my first project which is based on an existing DB (non MySQL).<br />
<br />
Now i face a problem.<br />
<br />
I have two tables: Departments and Persons. Both tables have unique primary keys.<br />
<br />
Each department has a person as head of the department. 1:N This relationship formed no problem.<br />
<br />
The second relationship says that every person can belong to a department. But this is not mandatory. So this relationship is 1:N but in the opposite direction.<br />
<br />
When i try to send my model to the DB i get a nice little error message (as many i suppose):<br />
<br />
Executing SQL script in server<br />
ERROR: Error 6125: Failed to add the foreign key constraint. Missing unique key for constraint &#039;fk_tbl_persons_tbl_departments1&#039; in the referenced table &#039;tbl_departments&#039;<br />
SQL Code:<br />
        ALTER TABLE `mydb`.`tbl_persons` <br />
        ADD CONSTRAINT `fk_tbl_persons_tbl_addresses1`<br />
          FOREIGN KEY (`per_adr_index`)<br />
          REFERENCES `mydb`.`tbl_addresses` (`adr_index`)<br />
          ON DELETE NO ACTION<br />
          ON UPDATE NO ACTION,<br />
        ADD CONSTRAINT `fk_tbl_persons_tbl_departments1`<br />
          FOREIGN KEY (`per_dep_index`)<br />
          REFERENCES `mydb`.`tbl_departments` (`dep_index`)<br />
          ON DELETE NO ACTION<br />
          ON UPDATE NO ACTION<br />
<br />
I am not sure if i am doing something here which is not possible or what the error might be or how i have to deal with this situation.]]></description>
            <dc:creator>Magnus Müller</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 21 Apr 2026 05:15:57 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741759,741759#msg-741759</guid>
            <title>Asking for a password (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741759,741759#msg-741759</link>
            <description><![CDATA[ Trying to start my uni assignment, had a connectionmad that I couldn&#039;t open because it was asking for a password. I did not set a password when making the connection, when I input one it tells me it is wrong and access is denied.<br />
<br />
Can&#039;t change the password using windows terminal because it says mysqld is not recognised.<br />
Just kinda confused because I havent had any issue using mySQL in university or having to input a password to open connections there, not sure if i set something up wrong.]]></description>
            <dc:creator>Javier Nguyen</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 29 Apr 2026 02:09:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?149,741748,741748#msg-741748</guid>
            <title>What are the three arguments expected by this script (build_deps.sh)? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?149,741748,741748#msg-741748</link>
            <description><![CDATA[ I need to upgrade kopf to fix a bug, but the required version depends on a newer Python.<br />
I&#039;m not sure how Python is installed in your base image — is it provided via PYTHON_TARBALL in this script?<br />
Is this a custom-built Python package maintained internally?]]></description>
            <dc:creator>Bing Ma</dc:creator>
            <category>MySQL &amp; Kubernetes</category>
            <pubDate>Thu, 23 Apr 2026 11:39:27 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741713,741713#msg-741713</guid>
            <title>MySQL Workbench (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,741713,741713#msg-741713</link>
            <description><![CDATA[ Why does Workbench not allow us to DISCONNECT from a database.  Connection deleted, but it still connects even if there is a connection to a different database.<br />
ALL sql commands operate on the UNWANTED database.<br />
There are aspects of this tool which are so useless!<br />
Code entered in the editor, after copying from a text editor produce a sql error.  yet copying the exact same code into the command line editor run fine.<br />
Is workbench only able to connect to a single database?<br />
It does not allow us to specify a paarticular one anyway.<br />
This is the latest version too.]]></description>
            <dc:creator>Nick Cole</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 28 Apr 2026 17:28:06 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741708,741708#msg-741708</guid>
            <title>Database wont start (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741708,741708#msg-741708</link>
            <description><![CDATA[ We Recently installed new artifacts on our server and now mysql will not start. any help is appreciated. it told us to copy and paste this in the forums so heres what i got. thank you for any help in advance<br />
4:26:39 PM  [main] 	Initializing Control Panel<br />
4:26:39 PM  [main] 	Windows Version:   64-bit<br />
4:26:39 PM  [main] 	XAMPP Version: 8.2.12<br />
4:26:39 PM  [main] 	Control Panel Version: 3.3.0  [ Compiled: Apr 6th 2021 ]<br />
4:26:39 PM  [main] 	Running with Administrator rights - good!<br />
4:26:39 PM  [main] 	XAMPP Installation Directory: &quot;c:\users\administrator\desktop\xampp\&quot;<br />
4:26:39 PM  [main] 	Checking for prerequisites<br />
4:26:39 PM  [main] 	All prerequisites found<br />
4:26:39 PM  [main] 	Initializing Modules<br />
4:26:39 PM  [Apache] 	XAMPP Apache is already running on port 80<br />
4:26:39 PM  [Apache] 	XAMPP Apache is already running on port 443<br />
4:26:39 PM  [mysql] 	MySQL Service detected with wrong path<br />
4:26:39 PM  [mysql] 	Change XAMPP MySQL and Control Panel settings or<br />
4:26:39 PM  [mysql] 	Uninstall/disable the other service manually first<br />
4:26:39 PM  [mysql] 	Found Path: C:\Users\Administrator\Desktop\XAMPP\mysql\bin\mysqld --defaults-file=C:\Users\Administrator\Desktop\XAMPP\mysql\bin\my.ini mysql<br />
4:26:39 PM  [mysql] 	Expected Path: c:\users\administrator\desktop\xampp\mysql\bin\mysqld.exe --defaults-file=c:\users\administrator\desktop\xampp\mysql\bin\my.ini mysql<br />
4:26:39 PM  [main] 	The FileZilla module is disabled<br />
4:26:39 PM  [main] 	The Mercury module is disabled<br />
4:26:39 PM  [main] 	The Tomcat module is disabled<br />
4:26:39 PM  [main] 	Enabling autostart for module &quot;Apache&quot;<br />
4:26:39 PM  [main] 	Enabling autostart for module &quot;MySQL&quot;<br />
4:26:39 PM  [main] 	Starting Check-Timer<br />
4:26:39 PM  [main] 	Control Panel Ready<br />
4:26:40 PM  [Apache] 	Autostart aborted: Apache is already running<br />
4:26:40 PM  [mysql] 	Autostart active: starting...<br />
4:26:40 PM  [mysql] 	Attempting to start MySQL service...<br />
4:26:40 PM  [mysql] 	Status change detected: running<br />
4:26:47 PM  [mysql] 	Status change detected: stopped<br />
4:26:47 PM  [mysql] 	Error: MySQL shutdown unexpectedly.<br />
4:26:47 PM  [mysql] 	This may be due to a blocked port, missing dependencies, <br />
4:26:47 PM  [mysql] 	improper privileges, a crash, or a shutdown by another method.<br />
4:26:47 PM  [mysql] 	Press the Logs button to view error logs and check<br />
4:26:47 PM  [mysql] 	the Windows Event Viewer for more clues<br />
4:26:47 PM  [mysql] 	If you need more help, copy and post this<br />
4:26:47 PM  [mysql] 	entire log window on the forums]]></description>
            <dc:creator>Jie D</dc:creator>
            <category>Newbie</category>
            <pubDate>Sun, 29 Mar 2026 20:34:29 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,741688,741688#msg-741688</guid>
            <title>Oracle MySQL Community Early Access (EA) Builds: MySQL 9.7.0 EA now available (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,741688,741688#msg-741688</link>
            <description><![CDATA[ The MySQL 9.7.0 Community Edition Early Access (EA) Release build is now available on MySQL Labs. <br />
======================<br />
As part of our continued focus on MySQL Community collaboration, we’re pursuing a three-pronged strategy: <br />
<br />
     1. Deliver innovation by introducing developer-focused features into MySQL Community Edition  <br />
     2. Extend and enrich the ecosystem and adoption  <br />
     3. Increase transparency and encourage broader community participation<br />
     <br />
<br />
What’s new in MySQL 9.7.0 (feature highlights) <br />
======================<br />
The release notes remain the authoritative source for complete details and final behavior. Highlights include: <br />
<br />
    * Flow-control monitoring for MySQL InnoDB Cluster (Group Replication)<br />
    * MySQL JSON Duality Views<br />
    * Hypergraph Optimizer<br />
    * Telemetry (OpenTelemetry / OTLP)<br />
    * Profile-Guided Optimization (PGO)<br />
    * Multi-threaded applier: extended applier statistics (new replication observability tables)<br />
     <br />
Early Access (EA) builds: intended for early feedback <br />
======================<br />
EA builds are pre-GA / developer preview packages meant for testing and feedback before GA. They may change prior to GA and are not intended for production use. <br />
<br />
Download EA builds: <a href="https://labs.mysql.com/"  rel="nofollow">https://labs.mysql.com/</a>  <br />
<br />
Join the discussion (and help shape what’s next) <br />
======================<br />
Our next public MySQL Community discussion is on March 23:<br />
Public MySQL Community Roadmap Discussion Webinar (Edition #2) <br />
Registration: <a href="https://oracle.zoom.us/webinar/register/WN_KSzOt8qTRNm6q7ez-5ym_Q?_x_zm_rtaid=W8ywnK#/registration"  rel="nofollow">https://oracle.zoom.us/webinar/register/WN_KSzOt8qTRNm6q7ez-5ym_Q?_x_zm_rtaid=W8ywnK#/registration</a><br />
<br />
Worklogs (WL): increased transparency <br />
======================<br />
We have also resumed publishing selected MySQL Worklogs (WL) to increase transparency and invite earlier design feedback:<br />
<a href="https://dev.mysql.com/worklog/"  rel="nofollow">https://dev.mysql.com/worklog/</a>  <br />
<br />
More info and links <br />
======================<br />
    * Blog post (full context + details): <a href="https://blogs.oracle.com/mysql/mysql-community-early-access-builds"  rel="nofollow">https://blogs.oracle.com/mysql/mysql-community-early-access-builds</a>   <br />
    * EA builds download page: <a href="https://labs.mysql.com/"  rel="nofollow">https://labs.mysql.com/</a>   <br />
    * Webinar registration: <a href="https://oracle.zoom.us/webinar/register/WN_KSzOt8qTRNm6q7ez-5ym_Q?_x_zm_rtaid=W8ywnK#/registration"  rel="nofollow">https://oracle.zoom.us/webinar/register/WN_KSzOt8qTRNm6q7ez-5ym_Q?_x_zm_rtaid=W8ywnK#/registration</a>   <br />
    * Worklogs: <a href="https://dev.mysql.com/worklog/"  rel="nofollow">https://dev.mysql.com/worklog/</a>   <br />
    * Report and view bugs: <a href="https://bugs.mysql.com/"  rel="nofollow">https://bugs.mysql.com/</a>   <br />
    * MySQL on GitHub: <a href="https://github.com/mysql/"  rel="nofollow">https://github.com/mysql/</a>   <br />
    * MySQL Community Slack channel: <a href="http://mysqlcommunity.slack.com/"  rel="nofollow">http://mysqlcommunity.slack.com/</a>]]></description>
            <dc:creator>Lenka Kašparová</dc:creator>
            <category>Announcements</category>
            <pubDate>Wed, 18 Mar 2026 12:38:56 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741681,741681#msg-741681</guid>
            <title>Who designed this all but useless tool? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?152,741681,741681#msg-741681</link>
            <description><![CDATA[ Why not ask for a directory of where the data is held?<br />
Why not have a list of users to manage?<br />
Migration task list does NOTHING, CANNOT MIGRATE withoUT SPECIFYING WHAT TO MIGRATE FROM AND TO!<br />
How do we specify where the data is stored?<br />
cannot connect to a previous database set up under mySQL.<br />
<br />
Someone clearly hasn&#039;t thought through these basic functional processes.<br />
cannot bulk load data, and neither have hundreds of other people.]]></description>
            <dc:creator>Nick Cole</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 28 Apr 2026 17:32:31 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?26,741676,741676#msg-741676</guid>
            <title>MYSQL 8.4.8 CE - Group Replication - read_only ON (2 replies)</title>
            <link>https://forums.mysql.com/read.php?26,741676,741676#msg-741676</link>
            <description><![CDATA[ Hello,<br />
<br />
I have an issue with a cluster from 3 nodes and Group replication, oracle linux 9.7 and MYSQL CE 8.4.8.<br />
<br />
Every time I restart the mysqld service the read_only and super_read_only remain ON.<br />
<br />
If I check the cluster all nodes are online and primary and no errors (it`s a multi master).<br />
<br />
What`s the problem ?<br />
<br />
I`ve tried to set the /etc/my.cnf with setting:<br />
read_only = OFF<br />
super_read_only = OFF<br />
<br />
<br />
but no success.<br />
<br />
Once I restart mysqld service read_only came back to ON.<br />
<br />
Thank you.]]></description>
            <dc:creator>Mircea Ispasoiu</dc:creator>
            <category>Replication</category>
            <pubDate>Mon, 23 Mar 2026 16:21:41 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741651,741651#msg-741651</guid>
            <title>Tips for Optimizing MySQL Queries for Beginners (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741651,741651#msg-741651</link>
            <description><![CDATA[ Hi everyone,<br />
<br />
I’m new to MySQL and learning how to manage databases efficiently. I’ve noticed that some queries, especially when joining tables or filtering large datasets, can be slower than expected.<br />
<br />
I’d love some advice on a few things:<br />
<br />
How to use indexes effectively without slowing down insert/update operations.<br />
<br />
Best practices for writing joins and subqueries to make queries faster.<br />
<br />
Ways to monitor slow queries and find bottlenecks.<br />
<br />
Tips on structuring tables and choosing the right data types for better performance.<br />
<br />
Any guidance, examples, or beginner-friendly tips would be very helpful. I’m eager to learn from the community’s experience and improve my database skills.<br />
<br />
Thanks in advance for your insights!]]></description>
            <dc:creator>Funnelsflex Team</dc:creator>
            <category>Newbie</category>
            <pubDate>Wed, 25 Feb 2026 18:07:39 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?52,741646,741646#msg-741646</guid>
            <title>AWS Ubuntu / MariaDB / MySQL can&#039;t view tables but data looks like it&#039;s there (no replies)</title>
            <link>https://forums.mysql.com/read.php?52,741646,741646#msg-741646</link>
            <description><![CDATA[ Recently my phpBB forums stopped working with DB errors, I tried to go and view the tables and nothing returns.  I went to the /lib/ mysql directory and the DB directory is there and full of the files many very large, but I cannot access them.<br />
<br />
I also get authentication errors now.  I have root/ownership of the domain.<br />
<br />
Ubuntu is the latest LTS release.<br />
<br />
Can someone help?]]></description>
            <dc:creator>Christopher Feeny</dc:creator>
            <category>PHP</category>
            <pubDate>Tue, 24 Feb 2026 21:58:32 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741640,741640#msg-741640</guid>
            <title>Alter table variable value (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741640,741640#msg-741640</link>
            <description><![CDATA[ I have been trying to figure out how to change a value in a table variable in a MySQL database, but I&#039;ve hit nothing but syntax errors, despite copying and pasting commands from bits I can find. I started at the CLI and couldn&#039;t find the commands to work, so I was going to try with the MySQL Workbench from my PC. I disabled the firewall, changed the binding to allow remote machines to connect, and then tried to grant access from both any machine or just my IP and that&#039;s where the syntax errors came in. Even direct copying and pasting full commands, changing that which needed to be changed resulted in the same syntax errors. <br />
<br />
Ideally, I&#039;d prefer to change it from the mysql cli in Linux as with the right command, that&#039;s probably super simple, the problem is I can&#039;t find the right command. Nothing I&#039;ve found has worked.<br />
<br />
I can get all the way down to looking the variable in the table after selecting the database, but I can&#039;t get further than that.<br />
<br />
mysql&gt; select * from my_variables\G;<br />
*************************** 1. row ***************************<br />
          variable_id: 1<br />
        variable_name: padding_tile<br />
variable_datetime_utc: 2026-02-21 19:04:23<br />
       variable_value: 754<br />
        variable_type: int<br />
<br />
<br />
Could someone please tell me what command I&#039;d need to run to change the &#039;variable_value&#039; of &#039;754&#039; to something else? It seems this should be so simple, but I haven&#039;t been able to find a clear command.]]></description>
            <dc:creator>David person</dc:creator>
            <category>Newbie</category>
            <pubDate>Mon, 23 Feb 2026 10:46:03 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741629,741629#msg-741629</guid>
            <title>Workbench running as background task after start, connect, exit (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741629,741629#msg-741629</link>
            <description><![CDATA[ I’ve just installed MySQL Workbench Version 8.0.44 build 5549652 CE (64 bits) Community on Windows 11 Pro OS Build 26200.7840, Version 25H2.<br />
<br />
I start the program, connect to a remote database and then exit the program.  The program will no longer start from its shortcut.  Task Manager reveals that it’s running as a background task, not as a service, just as a background task.  <br />
<br />
Killing the background task enables the program to start from its shortcut.  <br />
<br />
I did initially have MySql running as a service via xampp but I’ve subsequently uninstalled that service and rebooted.  Still have the issue.<br />
<br />
What’s going on?<br />
<br />
Thanks in advance.<br />
<br />
Ron James]]></description>
            <dc:creator>Ron James</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Tue, 17 Feb 2026 17:19:31 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?152,741622,741622#msg-741622</guid>
            <title>MacBook compatbility? (no replies)</title>
            <link>https://forums.mysql.com/read.php?152,741622,741622#msg-741622</link>
            <description><![CDATA[ I am currently running WorkBench 8 on a MacBook Pro 2019 with 2.6 ghz 6core Intel i7, 16 GM RAM, 2 TB hard drive.  I am considering upgrading to MacBook M4 Max 16core, 48GB RAM, 4 TB hard drive.  <br />
Will I have any compatibility issues with your application?<br />
How do I migrate?]]></description>
            <dc:creator>PATRICK DIXON</dc:creator>
            <category>MySQL Workbench</category>
            <pubDate>Fri, 13 Feb 2026 01:20:33 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?11,741621,741621#msg-741621</guid>
            <title>Mysql community edition upgrade from 8.0.36 to 8.4 (LTS) (no replies)</title>
            <link>https://forums.mysql.com/read.php?11,741621,741621#msg-741621</link>
            <description><![CDATA[ Could you please advise if anyone has successfully upgraded MySQL Community Edition from 8.0.36 to 8.4?<br />
<br />
We are planning to upgrade from MySQL 8.0.36 (Community Edition) to MySQL 8.4, and before proceeding we would like confirmation/guidance from the MySQL community (or any official references) on the following:<br />
<br />
Whether a direct in-place upgrade from 8.0.36 → 8.4 is supported (or if an intermediate upgrade step/version is recommended).<br />
<br />
Any required pre-upgrade steps or mandatory fixes that should be completed prior to the upgrade.<br />
<br />
Any known issues, upgrade advisories, or common pitfalls for this upgrade path.<br />
<br />
Any deprecated or removed features in MySQL 8.4 that could impact existing workloads.<br />
<br />
Environment details (for context):<br />
<br />
Current version: MySQL 8.0.36 (Community)<br />
<br />
Target version: MySQL 8.4 (Community)<br />
<br />
Platform: [AWS EC2 ] <br />
<br />
Application: Axway B2Bi (application layer already verified compatible with 8.4)<br />
<br />
Thank you in advance for any guidance or links to relevant documentation.]]></description>
            <dc:creator>Raja Pathri</dc:creator>
            <category>Install &amp; Repo</category>
            <pubDate>Thu, 12 Feb 2026 09:17:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741583,741583#msg-741583</guid>
            <title>How can I implement MySQL connection pooling in a Python Flask or Django application? (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741583,741583#msg-741583</link>
            <description><![CDATA[ Hello everyone,<br />
<br />
I am developing a web application using Python with either Flask or Django, and MySQL as the backend database. As the application grows, I want to manage database connections efficiently and avoid opening a new connection for every request.<br />
<br />
I would like to know:<br />
<br />
What is the recommended way to implement MySQL connection pooling in Flask or Django?<br />
<br />
Which libraries or tools work best for connection pooling (SQLAlchemy, mysql-connector, PyMySQL, etc.)?<br />
<br />
How should pool size and timeout values be configured for a production environment?<br />
<br />
Are there any common mistakes or performance issues to watch out for when using connection pooling?<br />
<br />
If possible, sample code snippets or real-world experiences would be very helpful.<br />
<br />
Thanks in advance for your guidance.]]></description>
            <dc:creator>harishma kumar</dc:creator>
            <category>Newbie</category>
            <pubDate>Fri, 06 Mar 2026 18:14:05 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?3,741575,741575#msg-741575</guid>
            <title>Announcing January 2026 Releases featuring MySQL Server 9.6.0 Innovation, 8.4.8 LTS and 8.0.45 (no replies)</title>
            <link>https://forums.mysql.com/read.php?3,741575,741575#msg-741575</link>
            <description><![CDATA[ <pre class="bbcode">

Dear MySQL users,

We are pleased to announce the release of the following products:

    * MySQL Server 9.6.0 Innovation, 8.4.8 LTS, and 8.0.45
    * MySQL Shell, Router 9.6.0, 8.4.8, and 8.0.45
    * MySQL 9.6.0 Connectors
    * MySQL NDB Cluster 9.6.0, 8.4.8, 8.0.45, and 7.6.37

These releases are recommended for use on production systems and are
available in source and binary form for a number of platforms from our
MySQL Community download pages at:

<a href="https://dev.mysql.com/downloads/"  rel="nofollow">https://dev.mysql.com/downloads/</a>

Regardless of server version, always use the latest version of MySQL
Clients, Tools, and Connectors as they support both MySQL Server 8.0
and 8.4 LTS too.

Windows packages are available via the Installer for Windows or .ZIP
(no-install) packages for more advanced needs. The point and click
configuration wizards and MySQL products are available in the unified
Installer for Windows:

<a href="https://dev.mysql.com/downloads/installer/"  rel="nofollow">https://dev.mysql.com/downloads/installer/</a>

Enterprise binaries for these new releases are available on My Oracle
Support:

<a href="https://support.oracle.com"  rel="nofollow">https://support.oracle.com</a>

Choose the “Patches &amp; Updates” tab, and then choose the “Product or
Family (Advanced Search)” side tab in the “Patch Search” portlet.

MySQL Enterprise binaries are also available on the Oracle Software
Delivery Cloud:

<a href="https://edelivery.oracle.com/"  rel="nofollow">https://edelivery.oracle.com/</a>

Developers can download MySQL Enterprise Edition from

<a href="https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html"  rel="nofollow">https://www.oracle.com/mysql/technologies/mysql-enterprise-edition-downloads.html</a>

Innovation releases are supported until the next innovation release, and
are recommended for production use. The 8.0 and 8.4 series
will focus on security and bug fixes only. Please refer to the following
for more information:

<a href="https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html"  rel="nofollow">https://dev.mysql.com/doc/refman/8.4/en/mysql-releases.html</a>

Changes since the previous releases can be viewed online:

<a href="https://dev.mysql.com/doc/#current-release-notes"  rel="nofollow">https://dev.mysql.com/doc/#current-release-notes</a>

On Behalf of the MySQL Engineering Team,
Balasubramanian Kandasamy

</pre>]]></description>
            <dc:creator>Balasubramanian Kandasamy</dc:creator>
            <category>Announcements</category>
            <pubDate>Fri, 23 Jan 2026 17:56:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741567,741567#msg-741567</guid>
            <title>conversion from Mar-2026 to 03-2026 and vice versa (1 reply)</title>
            <link>https://forums.mysql.com/read.php?10,741567,741567#msg-741567</link>
            <description><![CDATA[ I am new to PHP &amp; MySQL, struggling to learn the technology (absolute beginner). now I want to convert a VARCHAR column name is SALARY_MONTH, it contains data like: Mar-2025 now I want this in 03-2025 format (vice versa too).<br />
please help to achieve this.<br />
<br />
I tried below in PhpMyAdmin Console but it returns NULL.<br />
<br />
--- start<br />
SELECT DATE_FORMAT(<br />
         STR_TO_DATE(&#039;Mar-2025&#039;, &#039;%b-%Y&#039;),<br />
         &#039;%c-%Y&#039;<br />
       ) AS result;<br />
--- end<br />
<br />
thanks in advance.]]></description>
            <dc:creator>Smith John</dc:creator>
            <category>Newbie</category>
            <pubDate>Tue, 10 Feb 2026 12:19:58 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?169,741564,741564#msg-741564</guid>
            <title>MySQL 8.0.42 Installer, ODBC 9.3.0 and Connector/J removed from Archives – any official explanation? (2 replies)</title>
            <link>https://forums.mysql.com/read.php?169,741564,741564#msg-741564</link>
            <description><![CDATA[ Hello,<br />
<br />
We noticed that the following MySQL artifacts are no longer available in the MySQL Product Archives:<br />
<br />
- MySQL Installer Community MSI 8.0.42<br />
- MySQL Connector/ODBC 9.3.0 MSI<br />
- MySQL Connector/J corresponding to MySQL 8.0.42<br />
<br />
Other surrounding versions such as 8.0.41 and 8.0.43 are still present in the archive, but exactly these versions are missing.<br />
<br />
We were using these versions as prerequisites in our enterprise product installer, and customers are now unable to download them from the official MySQL site.<br />
<br />
Could someone from Oracle or the community please clarify:<br />
<br />
1. Were these artifacts intentionally removed from the archives?<br />
2. Was there any official announcement or document about this removal?<br />
3. Is there any possibility these versions will be restored in the archives?<br />
4. What is the officially recommended replacement version?<br />
<br />
Thank you for your guidance.]]></description>
            <dc:creator>Dhamotharan Sivaraman</dc:creator>
            <category>MySQL Installer for Windows</category>
            <pubDate>Fri, 20 Feb 2026 04:59:52 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?104,741563,741563#msg-741563</guid>
            <title>Tips for Optimizing MySQL Performance on a Small Server (1 reply)</title>
            <link>https://forums.mysql.com/read.php?104,741563,741563#msg-741563</link>
            <description><![CDATA[ Hello,<br />
<br />
I’m running MySQL on a small server and looking for general advice on improving performance. The database has moderate traffic, and I’d like to optimize it for efficiency and future growth.<br />
<br />
Any recommendations on configuration settings, indexing, or tools for identifying slow queries would be appreciated.<br />
<br />
Thanks!]]></description>
            <dc:creator>John Ackerman</dc:creator>
            <category>MySQL Workbench - Database Migration</category>
            <pubDate>Thu, 23 Apr 2026 11:48:42 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?104,741559,741559#msg-741559</guid>
            <title>How can I fix Engine errors after migration from 5.7 to 8 (1 reply)</title>
            <link>https://forums.mysql.com/read.php?104,741559,741559#msg-741559</link>
            <description><![CDATA[ I am migrating 6 databases from MySQL 5.7.44 to 8.0.44 and ran into issues with some lacking InnoDB engines.<br />
<br />
I used mysqldump command to export databases to an sql file.<br />
I was able restore only with mysql &lt; database-file.sql.  Nothing else worked.<br />
<br />
Terminal and MySQL workbench worked fine, i can see schemas and tables.<br />
I gracefully shut down the mysql server and rebooted the physical server.<br />
<br />
After restarting the mysql server threw errors.  Some databases, I believe mysql were MySAM engine.  They need to be InnoDB engine.<br />
<br />
I am starting the 3 day import again into a clean installation.<br />
I will hold off on the reboot.<br />
<br />
Can I alter if running?<br />
How can I alter tables after import?<br />
<br />
Is there a better way to backup mysql 5.7 databases for easier 8.0 import?<br />
<br />
All the documentation I read recommends mysqldump.  Never a mention of converting engines.<br />
<br />
Thank YOu.]]></description>
            <dc:creator>Vito Cavallo</dc:creator>
            <category>MySQL Workbench - Database Migration</category>
            <pubDate>Tue, 28 Apr 2026 17:40:44 +0000</pubDate>
        </item>
        <item>
            <guid>https://forums.mysql.com/read.php?10,741538,741538#msg-741538</guid>
            <title>having problem with MySQL (no replies)</title>
            <link>https://forums.mysql.com/read.php?10,741538,741538#msg-741538</link>
            <description><![CDATA[ Hopefully I&#039;m in the right place where I can ask for some help. MY daughter wants to start a freight dispatching business I&#039;m trying to make it as foolproof as possible I&#039;ve go the site built having  problems with MySQL to build the traccar server so she can track the drivers in real time. Anyone know of any MySQL Jedi Masters this young padawan needs help any guidance putting me on the right path is greatly appreciated  by me and my daughter.]]></description>
            <dc:creator>Alonzo Lattimore</dc:creator>
            <category>Newbie</category>
            <pubDate>Thu, 08 Jan 2026 20:31:44 +0000</pubDate>
        </item>
    </channel>
</rss>
