Commit 4eddb7f6 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

CMFActivity: use ROCKSDB instead of InnoDB.

parent 61785098
......@@ -277,7 +277,7 @@ CREATE TABLE %s (
KEY (`active_process_uid`),
KEY (`method_id`, `processing_node`),
KEY (`tag`, `processing_node`)
) ENGINE=InnoDB""" % self.sql_table
) ENGINE=ROCKSDB""" % self.sql_table
def initialize(self, activity_tool, clear):
db = activity_tool.getSQLConnection()
......
......@@ -71,7 +71,7 @@ CREATE TABLE %s (
KEY (`active_process_uid`),
KEY (`method_id`),
KEY (`tag`)
) ENGINE=InnoDB""" % self.sql_table
) ENGINE=ROCKSDB""" % self.sql_table
def generateMessageUID(self, m):
return (tuple(m.object_path), m.method_id, m.activity_kw.get('signature'),
......
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