There’s a lot of buzz around memcached. memcached is widely used, and has clients for many programming languages and platforms. TangentOrg have developed a memcached client in the form of MySQL UDFs (User Defined Functions).
I wish to discuss the memcached functions for MySQL: if and how they should be used.
Disclaimer: I do not work with memcached functions for MySQL on a production system; all that is written here reflects my opinion on how things should be done.
With memcached functions for MySQL, we can do the following:
SELECT memc_set('mykey', 'The answer is 42'); SELECT memc_get('mykey');
(See my previous post on how to install memcached functions for MySQL).
In what scenario should we use these functions?
I believe memcached is the right tool for the application level. I am less enthusiastic about using it from MySQL. Sure, pushing it down to MySQL centralizes everything. Instead of having all my application code (PHP, Java etc.) access memcached separately, they can all access one single MySQL node, which gets to access memcached. I see two problems with this approach:
- Doing this adds load on the database. I think the greatest advantage of memcached is that it allows us to alleviate load from the database. By pushing everything into MySQL we counter that benefit. We pay here both for loading the MySQL network and for the CPU consumed by MySQL to do the job. In a distributed application which used memcached, every server gets to take some of the load.
- It seems to me as a flawed design. The database should be at an end point, and should not rely on anything except the operating system, file system and network. Sure, there could be applications talking to the database, but the database should be able to work all by itself. By putting memcached behind the database, we make the database dependent upon an external application.
How about memcached increments?
memcached provides an increment mechanism, which can be used by MySQL to create distinct PRIMARY KEYs, like sequences in other databases. While this seems attractive, this feature fits most into the second point above: it makes MySQL completely dependant on memcached. So if memcached is down, MySQL is unable to generate keys.
memcahced invalidation
I believe a very good use would be to let MySQL invalidate cached data. Not set or get anything, just invalidate. To explain, let’s compare with MySQL’s query cache. I’ll be using MySQL’s world database.
It is a known issue with the query cache, that if you change (INSERT/UPDATE/DELETE) data within a certain table, all queries involved with that table are invalidated. Take a look at the following:
SELECT * FROM City WHERE CountryCode='BLZ'; UPDATE City SET Population=Population+1 WHERE CountryCode='CHE'; SELECT * FROM City WHERE CountryCode='BLZ';
The UPDATE does not affect the results for the SELECT query. Nevertheless, the second SELECT does not return from the query cache, since it’s invalidated by the UPDATE.
memcached can be used to solve this problem in a programmatic way. Let’s look at a short python program: memcached_test.py. What is does (see blue highlighted rows) is connect to memcached; connect to MySQL, and try to get the results for following from memcached:
SELECT * FROM City WHERE CountryCode='BLZ'; SELECT * FROM City WHERE CountryCode='CHE';
If these results are in memcached, they are returned immediately. If not, they are retrieved from MySQL, then inserted into memcached. The results for ‘CHE’ are under the ‘City:CHE’ key, and ‘BLZ’ is under ‘City:BLZ’.
import MySQLdb import memcache def select_cities_by_country(country_code): key = "City:"+country_code cities = memcache_client.get(key) if cities: found_in_memcached = True else: cursor = conn.cursor() cursor.execute(""" SELECT Name, CountryCode, Population FROM City WHERE CountryCode=%s""", country_code) cities = cursor.fetchall() memcache_client.set(key, cities, 100) cursor.close() found_in_memcached = False for row in cities: print "%s, %s: %d" % (row[0], row[1], row[2]) print "%s found in memcached? %s\n" % ( country_code, found_in_memcached) conn = None try: try: conn = MySQLdb.connect( host="localhost", user="myuser", passwd="mypassword", unix_socket="/tmp/mysql.sock", db="world") memcache_client = memcache.Client(["127.0.0.1:11211"]) select_cities_by_country("BLZ"); select_cities_by_country("CHE"); except Exception, err: print err finally: if conn: conn.close()
Let’s run this program. This is a first time run, so obviously nothing is in memcached:
$ python memcached_test.py Belize City, BLZ: 55810 Belmopan, BLZ: 7105 BLZ found in memcached? False Zurich, CHE: 336800 Geneve, CHE: 173500 Basel, CHE: 166700 Bern, CHE: 122700 Lausanne, CHE: 114500 CHE found in memcached? False
Immediately executed again, we get results from memcached:
$ python memcached_test.py Belize City, BLZ: 55810 Belmopan, BLZ: 7105 BLZ found in memcached? True Zurich, CHE: 336800 Geneve, CHE: 173500 Basel, CHE: 166700 Bern, CHE: 122700 Lausanne, CHE: 114500 CHE found in memcached? True
We are going to execute the following query:
UPDATE City SET Population=Population+1 WHERE CountryCode='CHE';
But nothing as yet will invalidate our memcached values. Let’s set up TRIGGERs on the City table:
DELIMITER $$ DROP TRIGGER IF EXISTS City_AI $$ CREATE TRIGGER City_AI AFTER INSERT ON City FOR EACH ROW BEGIN SELECT memc_delete(CONCAT('City:',NEW.CountryCode)) INTO @discard; END; $$ DROP TRIGGER IF EXISTS City_AU $$ CREATE TRIGGER City_AU AFTER UPDATE ON City FOR EACH ROW BEGIN SELECT memc_delete(CONCAT('City:',OLD.CountryCode)) INTO @discard; SELECT memc_delete(CONCAT('City:',NEW.CountryCode)) INTO @discard; END; $$ DROP TRIGGER IF EXISTS City_AD $$ CREATE TRIGGER City_AD AFTER DELETE ON City FOR EACH ROW BEGIN SELECT memc_delete(CONCAT('City:',OLD.CountryCode)) INTO @discard; END; $$ DELIMITER ;
These triggers will cause any change to a city invalidates all cities in the same country. Naive? Far less than MySQL’s query cache. Let’s put this to the test:
mysql> UPDATE City SET Population=Population+1 WHERE CountryCode='CHE'; Query OK, 5 rows affected (0.01 sec) Rows matched: 5 Changed: 5 Warnings: 0
And run out python program one last time:
$ python memcached_test.py Belize City, BLZ: 55810 Belmopan, BLZ: 7105 BLZ found in memcached? True Zurich, CHE: 336801 Geneve, CHE: 173501 Basel, CHE: 166701 Bern, CHE: 122701 Lausanne, CHE: 114501 CHE found in memcached? False
Right! The ‘CHE’ values were invalidated, and could not be found in memcaches. ‘BLZ’, however, wasn’t disturbed.
We can further improve our invalidation mechanism to check only for changes for desired columns. This will require some more code in our triggers.
Notes
The triggers themselves pose a performance penalty on our code. It is assumed that SELECTs are more important here, or else we would not use caching at all. At any case, the example provided here has not been benchmarked, and its value can only be estimated in your real life situation.
Conclusion
I believe invalidation is the most interesting part of memcached functions for MySQL. It makes the most sense:
- No data passes between MySQL and memcached.
- The application isn’t even aware that MySQL is talking to memcached. MySQL does everything internally using triggers.
- MySQL does not depend on memcached. If memcached goes away, the triggers will simply have no effect. It is still possible that due to temporary network failure, an invalidation is skipped. But memcached supports us by adding a timeout for cached values, so we have some kind of “backup plan”.
Please share below your insights and real life experience with memcached functions for MySQL.
One thought on “Using memcached functions for MySQL; an automated alternative to Query Cache”