You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Neutered all of the excessive snapshotting that was going on.
This commit is contained in:
@ -3360,6 +3360,8 @@ vector<InlineLBIDRange> DBRM::getEMFreeListEntries() throw()
|
|||||||
|
|
||||||
int DBRM::takeSnapshot() throw ()
|
int DBRM::takeSnapshot() throw ()
|
||||||
{
|
{
|
||||||
|
return 0; // don't know why, but we're calling this all the time. Need to take most/all of those calls out, it's very wasteful.
|
||||||
|
|
||||||
ByteStream command, response;
|
ByteStream command, response;
|
||||||
uint8_t err;
|
uint8_t err;
|
||||||
|
|
||||||
|
@ -1929,7 +1929,8 @@ void SlaveComm::do_vbRollback2(ByteStream& msg)
|
|||||||
if (!standalone)
|
if (!standalone)
|
||||||
master.write(reply);
|
master.write(reply);
|
||||||
|
|
||||||
takeSnapshot = true;
|
//takeSnapshot = true;
|
||||||
|
doSaveDelta = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlaveComm::do_vbCommit(ByteStream& msg)
|
void SlaveComm::do_vbCommit(ByteStream& msg)
|
||||||
@ -1961,7 +1962,8 @@ void SlaveComm::do_vbCommit(ByteStream& msg)
|
|||||||
if (!standalone)
|
if (!standalone)
|
||||||
master.write(reply);
|
master.write(reply);
|
||||||
|
|
||||||
takeSnapshot = true;
|
//takeSnapshot = true;
|
||||||
|
doSaveDelta = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SlaveComm::do_undo()
|
void SlaveComm::do_undo()
|
||||||
|
Reference in New Issue
Block a user