1

简单问题:如何将数据从 SQL Server 导出到 RavenDB?

我编写了从 SQL Server 获取数据并存储在 raven 中的脚本,但它的运行速度非常慢。每秒大约 2500 次插入。

编辑:我的代码

    for (int i = 0; i < count; i+=8196)
    {
        StoreInTaven(WordStats.Skip(i).Take(8196).Select(x => new KeyPhraseInfo(){
           Key = x.Word,
           Id = x.Id,
           Count = x.Count,
           Date = x.Date
        }));
        GC.Collect();
    }



public static void StoreInTaven(IEnumerable<KeyPhraseInfo> wordStats)
{
     using(var session = store.OpenSession())
     {
           foreach (var wordStat in wordStats)
           {
              session.Store(wordStat);
           }

           session.SaveChanges();
     }
}
4

2 回答 2

1

我只是在做同样的事情。速度对我来说并不是真正的问题,所以我不知道这是否比你的快。

public static void CopyFromSqlServerToRaven(IDocumentSession db, bool ravenDeleteAll=true)
{
    if (ravenDeleteAll) db.DeleteAll();

    using (var connection = new SqlConnection(SqlConnectionString))
    {
        var command = new SqlCommand(SqlGetContentItems, connection);
        command.Connection.Open();
        using (var reader = command.ExecuteReader())
        {
            while (reader.Read())
            {
                db.Store(new ContentItem
                            {
                                    Id = reader["Id"].ToString(),
                                    Title = (string)reader["Name"],
                                    Description = (string)reader["ShortDescription"],
                                    Keywords = (string)reader["SearchKeywords"]
                            });
            }
        }
        db.SaveChanges();
    }
}
于 2012-05-29T13:28:29.580 回答
0

我相信它在标准服务器上支持每秒 1,000 次写入。

当我增加缓存大小时,性能会提高。乌鸦/Esent/CacheSizeMax

http://ravendb.net/docs/server/administration/configuration

于 2012-06-26T18:03:58.493 回答