微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

sqlite insert 优化

1. sqlite在不开事务的情况下就是一种悲剧,因为它的多访问支持是建立在对文件的独占和共享基础上的。


2. 别人弄的测试

Fast Bulk Inserts into sqlite
Background
Sometimes it’s necessary to get information into a database quickly. sqlite is a light weight database engine that can be easily embedded in applications. This will cover the process of optimizing bulk inserts into an sqlite database. While this article focuses on sqlite some of the techniques shown here will apply to other databases.

All of the following examples insert data into the same table.  It’s a table where an ID is the first element followed by three FLOAT values,and then follow by three INTEGER values.  You’ll notice the getDouble() and getInt() functions.  They return doubles and ints in a predictable manner.  I didn’t use random data because different values Could potentially add variability to the benchmarks at the end.

Naive Inserts
This is the most basic way to insert information into sqlite. It simply calls sqlite3_exec for each insert in the database.

char buffer[300];
for (unsigned i = 0; i < mVal; i++)
{
    sprintf(buffer,"INSERT INTO example VALUES ('%s',%lf,%d,%d)",getID().c_str(),getDouble(),getInt(),getInt());
    sqlite3_exec(mDb,buffer,NULL,NULL);
}
Inserts within a Transaction
A transaction is a way to group sql statements together. If an error is encountered the ON CONFLICT statement can be used to handle that to your liking. nothing will be written to the sqlite database until either END or COMMIT is encountered to signify the transaction should be closed and written.

char* errorMessage;
sqlite3_exec(mDb,"BEGIN TRANSACTION",&errorMessage);
 
char buffer[300];
for (unsigned i = 0; i < mVal; i++)
{
    sprintf(buffer,NULL);
}
 
sqlite3_exec(mDb,"COMMIT TRANSACTION",&errorMessage);
PRAGMA Statements
PRAGMA statements control the behavior of sqlite as a whole. They can be used to tweak options such as how often the data is flushed to disk of the size of the cache. These are some that are commonly used for performance. The sqlite documentation fully explains what they do and the implications of using them. For example,synchronous off will cause sqlite to not stop and wait for the data to get written to the hard drive. In the event of a crash or power failure,it is more likely the database Could be corrupted.

sqlite3_exec(mDb,"PRAGMA synchronous=OFF",&errorMessage);
sqlite3_exec(mDb,"PRAGMA count_changes=OFF","PRAGMA journal_mode=MEMORY","PRAGMA temp_store=MEMORY",&errorMessage);
Prepared Statements
Prepared statements are the recommended way of sending queries to sqlite.  Rather than parsing the statement over and over again,the parser only needs to be run once on the statement.  According to the documentation,sqlite3_exec is a convenience function that calls sqlite3_prepare_v2(),sqlite3_step(),and then sqlite3_finalize(). In my opinion,the documentation should more explicitly say that prepared statements are the preferred query method.  sqlite3_exec() should only be used for one time use queries.

char* errorMessage;
sqlite3_exec(mDb,&errorMessage);
 
char buffer[] = "INSERT INTO example VALUES (?1,?2,?3,?4,?5,?6,?7)";
sqlite3_stmt* stmt;
sqlite3_prepare_v2(mDb,strlen(buffer),&stmt,NULL);
 
for (unsigned i = 0; i < mVal; i++)
{
    std::string id = getID();
    sqlite3_bind_text(stmt,1,id.c_str(),id.size(),sqlITE_STATIC);
    sqlite3_bind_double(stmt,2,getDouble());
    sqlite3_bind_double(stmt,3,4,getDouble());
    sqlite3_bind_int(stmt,5,getInt());
    sqlite3_bind_int(stmt,6,7,getInt());
 
    if (sqlite3_step(stmt) != sqlITE_DONE)
    {
        printf("Commit Failed!\n");
    }
 
    sqlite3_reset(stmt);
}
 
sqlite3_exec(mDb,&errorMessage);
sqlite3_finalize(stmt);
Storing Data as Binary Blob
Up until Now,most of the optimizations have been pretty much the standard advice that you get when looking into bulk insert optimization. If you’re not running queries on some of the data,it’s possible to convert it to binary and store it as a blob. While it’s not advised to just throw everything into a blob and put it in the database,putting data that would be pulled and used together into a binary blob can make sense in some situations.

For example,if you have a point class (x,y,z) with REAL values,it might make sense to store them in a blob rather than three separate fields in row. That’s only if you don’t need to make queries on the data though. The benefit of this technique increases as more fields are converted into larger blobs.

char* errorMessage;
sqlite3_exec(mDb,?5)";
sqlite3_stmt* stmt;
sqlite3_prepare_v2(mDb,sqlITE_STATIC);
 
    char dblBuffer[24];
    double d[] = {getDouble(),getDouble()};
    memcpy(dblBuffer,(char*)&d,sizeof(d));
    sqlite3_bind_blob(stmt,dblBuffer,24,sqlITE_STATIC);
    sqlite3_bind_int(stmt,getInt());
 
    int retVal = sqlite3_step(stmt);
    if (retVal != sqlITE_DONE)
    {
        printf("Commit Failed! %d\n",retVal);
    }
 
    sqlite3_reset(stmt);
}
 
sqlite3_exec(mDb,&errorMessage);
sqlite3_finalize(stmt);
Note: I just used memcpy here,but this would have issues going between big and little endian systems. If that’s necessary,it would be a good idea to serialize the data using a serialization library (ie – protocol buffers or msgpack).

Performance
I ran benchmarks to test the performance of each method of inserting data.  Take note that the x axis does not scale linearly,it most closely matches a logarithmic scale.  The inserts per second graph was obtained by taking the number of inserts and dividing it by the total runtime.


sqlite Build Insert Runtime in Seconds



sqlite Inserts Per Second


After running the first benchmark,I wanted to show how storing data in binary can make a difference.  I ran it again,but instead of storing only three doubles,I stored 24 doubles.  I assumed order mattered,so for the benchmark that is not stored in a binary blob,I made a separate table with ID and order columns.  This way both versions captured the same information.



Big Insert Runtime in Seconds

Big Inserts Per Second

Good luck with your database inserts.

原文地址:https://www.jb51.cc/sqlite/201932.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐