<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with database]]></title><description><![CDATA[A list of topics that have been tagged with database]]></description><link>https://fusionauth.io/community/forum/tags/database</link><generator>RSS for Node</generator><lastBuildDate>Wed, 16 Sep 2026 09:11:10 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/tags/database.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Facing duplicate key errors on high load]]></title><description><![CDATA[<p dir="auto">Internal Note: tracking via <a href="https://github.com/FusionAuth/fusionauth-issues/issues/1231" rel="nofollow ugc">https://github.com/FusionAuth/fusionauth-issues/issues/1231</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/1005/facing-duplicate-key-errors-on-high-load</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/1005/facing-duplicate-key-errors-on-high-load</guid><dc:creator><![CDATA[joshua]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Too many connections error with mysql]]></title><description><![CDATA[<p dir="auto">And now it works fine with 152 threads connected, so unable to reproduce this.</p>
<p dir="auto">I'll keep an eye out for this behavior and file an issue if it pops up again.</p>
<p dir="auto">For the record:</p>
<p dir="auto">FusionAuth 1.27<br />
installed via zip file<br />
Mysql 8.0.23 installed/managed via homebrew on the mac.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/997/too-many-connections-error-with-mysql</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/997/too-many-connections-error-with-mysql</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Are the post and get forms of the user search API equivalent?]]></title><description><![CDATA[<p dir="auto">Yes, they are equivalent. Building this JSON:</p>
{
  "search": {
    "queryString": "fusionauth.io"
  }
}

<p dir="auto">and posting it is equivalent to a GET with queryString=fusionauth.io.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/865/are-the-post-and-get-forms-of-the-user-search-api-equivalent</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/865/are-the-post-and-get-forms-of-the-user-search-api-equivalent</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Can you use the database search engine with millions of users?]]></title><description><![CDATA[<p dir="auto">I don't know of any issues. You’re mainly just giving up the ability to perform rich queries. The db search is a few LIKE statements.</p>
<p dir="auto">I don't think we've tested millions running db search - but the only issue I can think of for normal usage would be the User page in the UI since we’ll be paginating over lots of users.</p>
<p dir="auto">This should work ok - but pagination tends to slow way down as you get into higher pages,.</p>
<p dir="auto">One can always <a href="https://fusionauth.io/docs/v1/tech/tutorials/switch-search-engines/" rel="nofollow ugc">flip on Elastic and run an index</a>, so not much harm in trying it.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/771/can-you-use-the-database-search-engine-with-millions-of-users</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/771/can-you-use-the-database-search-engine-with-millions-of-users</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Upgrade issue from 1.21 -&gt; 1.22]]></title><description><![CDATA[<p dir="auto">Added missing db migration notices for 1.21.0 and 1.22.0.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/658/upgrade-issue-from-1-21-1-22</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/658/upgrade-issue-from-1-21-1-22</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[how to get  fresh installation?]]></title><description><![CDATA[<p dir="auto">Sorry, no kub expert here. I'm not sure how to teardown just the database, but I assume you could write a script to connect to the backing database and drop the tables/schema, etc. That might be quicker than dropping the entire cluster.</p>
<p dir="auto">If you figure out a better way, please share!</p>
]]></description><link>https://fusionauth.io/community/forum/topic/657/how-to-get-fresh-installation</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/657/how-to-get-fresh-installation</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Retrieving ids from FusionAuth database tables]]></title><description><![CDATA[<p dir="auto">Hiya,</p>
<p dir="auto">We don't guarantee any database level compatibility (which is why we recommend doing everything through the API, which does have those guarantees).</p>
<p dir="auto">But here's an option. I'm assuming you are using MySQL. FusionAuth uses UUIDs for unique Ids, and in MySQL we store these as BINARY(16).</p>
<p dir="auto">If you want to select this value in a human readable form, you can perform a select such as SELECT HEX(id) FROM table_name.</p>
<p dir="auto">If you want to select this column and deserialize it into a <a href="https://docs.oracle.com/javase/7/docs/api/java/util/UUID.html" rel="nofollow ugc">Java UUID type</a>, you can use code similar to the following:</p>
public UUID fromByteArray(byte[] ba) {
  long msb = 0;
  long lsb = 0;
  for (int i = 0; i &lt; 8; i++) {
    msb = (msb &lt;&lt; 8) | (ba[i] &amp; 0xff);
  }
  for (int i = 8; i &lt; 16; i++) {
    lsb = (lsb &lt;&lt; 8) | (ba[i] &amp; 0xff);
  }
  return new UUID(msb, lsb);
}

<p dir="auto">Another option, depending on your data size, would be to export all the data using the relevant APIs, and import it into your analytics database.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/584/retrieving-ids-from-fusionauth-database-tables</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/584/retrieving-ids-from-fusionauth-database-tables</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[maximum pool size configuration]]></title><description><![CDATA[<p dir="auto">You can use the database.maximum-pool-size value in the fusionauth.properties file prior to 1.19.x ( it was just not documented) , but if you want to use the environment variable version is not available until 1.19.x.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/403/maximum-pool-size-configuration</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/403/maximum-pool-size-configuration</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[what is the default connection pool size for the app?]]></title><description><![CDATA[<p dir="auto">Also, see database.maximum-pool-size here <a href="https://fusionauth.io/docs/v1/tech/reference/configuration" rel="nofollow ugc">https://fusionauth.io/docs/v1/tech/reference/configuration</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/385/what-is-the-default-connection-pool-size-for-the-app</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/385/what-is-the-default-connection-pool-size-for-the-app</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Where is the configuration stored in the database?]]></title><description><![CDATA[<p dir="auto">There isn’t a single table in the db really. Configuration exists there, and in tenants, applications, etc.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/298/where-is-the-configuration-stored-in-the-database</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/298/where-is-the-configuration-stored-in-the-database</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[How large can the data field be for any of the FusionAuth resources?]]></title><description><![CDATA[<p dir="auto">If you're using PostgreSQL the size is essentially unlimited. With MySQL it is 16 MB.</p>
<p dir="auto">There are few exceptions to this rule where we may be using a 64 KB column if you're on MySQL.</p>
<p dir="auto">I wouldn't recommend storing that much data however. If you're using Elasticsearch, the custom data on the User will be indexed, and Elasticsearch will eventually hit a limit as well.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/89/how-large-can-the-data-field-be-for-any-of-the-fusionauth-resources</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/89/how-large-can-the-data-field-be-for-any-of-the-fusionauth-resources</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Does FusionAuth require that you migrate your userstore into the product?]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/20">@dan</a> no problem at all. Completely understand it's tough offering support without reviewing how we have things setup.</p>
<p dir="auto">Appreciate you shooting that link over and will do some investigation on our end to see what might work best for us.</p>
<p dir="auto">Thanks!</p>
]]></description><link>https://fusionauth.io/community/forum/topic/63/does-fusionauth-require-that-you-migrate-your-userstore-into-the-product</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/63/does-fusionauth-require-that-you-migrate-your-userstore-into-the-product</guid><dc:creator><![CDATA[brennan.karrer]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Does FusionAuth support high availability database configurations?]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/20">@dan</a> 160ms</p>
]]></description><link>https://fusionauth.io/community/forum/topic/27/does-fusionauth-support-high-availability-database-configurations</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/27/does-fusionauth-support-high-availability-database-configurations</guid><dc:creator><![CDATA[kevin.mahoney]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Is it possible to set up DB replication using MySQL for FusionAuth db?]]></title><description><![CDATA[<p dir="auto">As long as your meet <a href="https://fusionauth.io/docs/v1/tech/installation-guide/system-requirements" rel="nofollow ugc">our minimum database requirements</a> in theory it should work. I do know that MySQL Group Replication is not supported.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/24/is-it-possible-to-set-up-db-replication-using-mysql-for-fusionauth-db</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/24/is-it-possible-to-set-up-db-replication-using-mysql-for-fusionauth-db</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>