Commit f0713aa3 authored by Julien Muchembled's avatar Julien Muchembled

storage: fix store of multiple values that only differ by the compression flag

This fixes the case of an application that would store 2 values X & Y
where NEO internally compresses X into a value identical to Y.
parent 8204e541
......@@ -195,9 +195,10 @@ class MySQLDatabaseManager(DatabaseManager):
# but 'UNIQUE' constraint would not work as expected.
q("""CREATE TABLE IF NOT EXISTS data (
id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
hash BINARY(20) NOT NULL UNIQUE,
hash BINARY(20) NOT NULL,
compression TINYINT UNSIGNED NULL,
value LONGBLOB NULL
value LONGBLOB NULL,
UNIQUE (hash, compression)
) ENGINE=""" + engine)
# The table "ttrans" stores information on uncommitted transactions.
......@@ -443,9 +444,10 @@ class MySQLDatabaseManager(DatabaseManager):
(checksum, compression, e(data)))
except IntegrityError, (code, _):
if code == DUP_ENTRY:
(r, c, d), = self.query("SELECT id, compression, value"
" FROM data WHERE hash='%s'" % checksum)
if c == compression and d == data:
(r, d), = self.query("SELECT id, value FROM data"
" WHERE hash='%s' AND compression=%s"
% (checksum, compression))
if d == data:
return r
raise
return self.conn.insert_id()
......
......@@ -25,11 +25,15 @@ from neo.lib import logging, util
from neo.lib.exception import DatabaseFailure
from neo.lib.protocol import CellStates, ZERO_OID, ZERO_TID, ZERO_HASH
def unique_constraint_message(table, column):
def unique_constraint_message(table, *columns):
c = sqlite3.connect(":memory:")
c.execute("CREATE TABLE %s (%s UNIQUE)" % (table, column))
values = '?' * len(columns)
insert = "INSERT INTO %s VALUES(%s)" % (table, ', '.join(values))
x = "%s (%s)" % (table, ', '.join(columns))
c.execute("CREATE TABLE " + x)
c.execute("CREATE UNIQUE INDEX i ON " + x)
try:
c.executemany("INSERT INTO %s VALUES(?)" % table, 'xx')
c.executemany(insert, (values, values))
except sqlite3.IntegrityError, e:
return e.args[0]
assert False
......@@ -155,9 +159,12 @@ class SQLiteDatabaseManager(DatabaseManager):
# The table "data" stores object data.
q("""CREATE TABLE IF NOT EXISTS data (
id INTEGER PRIMARY KEY AUTOINCREMENT,
hash BLOB NOT NULL UNIQUE,
compression INTEGER,
value BLOB)
hash BLOB NOT NULL,
compression INTEGER NOT NULL,
value BLOB NULL)
""")
q("""CREATE UNIQUE INDEX IF NOT EXISTS _data_i1 ON
data(hash, compression)
""")
# The table "ttrans" stores information on uncommitted transactions.
......@@ -369,16 +376,17 @@ class SQLiteDatabaseManager(DatabaseManager):
% ",".join(map(str, data_id_list)))
def storeData(self, checksum, data, compression,
_dup_hash=unique_constraint_message("data", "hash")):
_dup=unique_constraint_message("data", "hash", "compression")):
H = buffer(checksum)
try:
return self.query("INSERT INTO data VALUES (NULL,?,?,?)",
(H, compression, buffer(data))).lastrowid
except sqlite3.IntegrityError, e:
if e.args[0] == _dup_hash:
(r, c, d), = self.query("SELECT id, compression, value"
" FROM data WHERE hash=?", (H,))
if c == compression and str(d) == data:
if e.args[0] == _dup:
(r, d), = self.query("SELECT id, value FROM data"
" WHERE hash=? AND compression=?",
(H, compression))
if str(d) == data:
return r
raise
......
......@@ -309,10 +309,10 @@ class StorageApplication(ServerNode, neo.storage.app.Application):
def getDataLockInfo(self):
dm = self.dm
checksum_dict = dict(dm.query("SELECT id, hash FROM data"))
assert set(dm._uncommitted_data).issubset(checksum_dict)
index = tuple(dm.query("SELECT id, hash, compression FROM data"))
assert set(dm._uncommitted_data).issubset(x[0] for x in index)
get = dm._uncommitted_data.get
return {str(v): get(k, 0) for k, v in checksum_dict.iteritems()}
return {(str(h), c): get(i, 0) for i, h, c in index}
class ClientApplication(Node, neo.client.app.Application):
......
......@@ -19,6 +19,7 @@ import threading
import transaction
import unittest
from thread import get_ident
from zlib import compress
from persistent import Persistent
from ZODB import POSException
from neo.storage.transactions import TransactionManager, \
......@@ -47,17 +48,22 @@ class Test(NEOThreadedTest):
cluster.start()
storage = cluster.getZODBStorage()
data_info = {}
for data in 'foo', '', 'foo':
checksum = makeChecksum(data)
compressible = 'x' * 20
compressed = compress(compressible)
for data in 'foo', '', 'foo', compressed, compressible:
if data is compressible:
key = makeChecksum(compressed), 1
else:
key = makeChecksum(data), 0
oid = storage.new_oid()
txn = transaction.Transaction()
storage.tpc_begin(txn)
r1 = storage.store(oid, None, data, '', txn)
r2 = storage.tpc_vote(txn)
data_info[checksum] = 1
data_info[key] = 1
self.assertEqual(data_info, cluster.storage.getDataLockInfo())
serial = storage.tpc_finish(txn)
data_info[checksum] = 0
data_info[key] = 0
self.assertEqual(data_info, cluster.storage.getDataLockInfo())
self.assertEqual((data, serial), storage.load(oid, ''))
storage._cache.clear()
......@@ -99,14 +105,14 @@ class Test(NEOThreadedTest):
data_info = {}
data = 'foo'
checksum = makeChecksum(data)
key = makeChecksum(data), 0
oid = storage.new_oid()
txn = transaction.Transaction()
storage.tpc_begin(txn)
r1 = storage.store(oid, None, data, '', txn)
r2 = storage.tpc_vote(txn)
tid = storage.tpc_finish(txn)
data_info[checksum] = 0
data_info[key] = 0
storage.sync()
txn = [transaction.Transaction() for x in xrange(3)]
......@@ -117,21 +123,21 @@ class Test(NEOThreadedTest):
tid = None
for t in txn:
storage.tpc_vote(t)
data_info[checksum] = 3
data_info[key] = 3
self.assertEqual(data_info, cluster.storage.getDataLockInfo())
storage.tpc_abort(txn[1])
storage.sync()
data_info[checksum] -= 1
data_info[key] -= 1
self.assertEqual(data_info, cluster.storage.getDataLockInfo())
tid1 = storage.tpc_finish(txn[2])
data_info[checksum] -= 1
data_info[key] -= 1
self.assertEqual(data_info, cluster.storage.getDataLockInfo())
storage.tpc_abort(txn[0])
storage.sync()
data_info[checksum] -= 1
data_info[key] -= 1
self.assertEqual(data_info, cluster.storage.getDataLockInfo())
finally:
cluster.stop()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment