MySQL Forums
Forum List  »  NDB clusters

Re: NDBCluster memory usuage
Posted by: Mikael Ronström
Date: December 15, 2016 09:04AM

VARCHAR columns only store the size of the actual data, since the data is
UTF-8 it might be a bit bigger than the number of characters.
TEXT (BLOBs) columns store in chunks, first 256 bytes on main table and
then 2000 byte rows on a BLOB table.
So I gather you actually have more than 1 GByte in your database.

If you are ok with moving the data to disk (it works as long as you don't
need an index on the column) then it sounds like a good idea. Seems like
you have fairly large rows with lots of content, so gather those could
be good to place on disk. But depends on how much indexes you have.

Remember to also add some memory to the DiskPageBufferMemory such that
you can get fairly quick access to this data as well still.

Options: ReplyQuote


Subject
Views
Written By
Posted
1248
December 08, 2016 11:25AM
649
December 08, 2016 08:02PM
668
December 13, 2016 08:00AM
696
December 13, 2016 09:22AM
Re: NDBCluster memory usuage
648
December 15, 2016 09:04AM
576
December 16, 2016 10:27AM
543
December 23, 2016 05:00AM
583
December 23, 2016 09:39AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.