1

こんにちは、FluentCassandra を初めて使用します。100 万個のデータを追加する際に「CassandraOperationException」というエラーが発生しました。「すべてのサーバーに障害が発生したため、接続できませんでした」と表示されます。この問題を解決する方法を教えてください。

これは、百万のデータを追加するための私のコードです

using (var db = new CassandraContext(keyspace: KeyspaceName, server: Server))
        {
            var x = 0;
            do
            {
                var key = System.Guid.NewGuid().ToString();

                var postFamily = db.GetColumnFamily("Posts");

                // create post
                dynamic post = postFamily.CreateRecord(key);
                post.Title = key;
                post.Author = tbAuthor.Text + x;
                post.Body = rtbBody.Text + x;
                post.PostedOn = DateTime.Now;

                cmbTitle.Items.Add(post.Title);
                //Clear();

                // attach the post to the database
                db.Attach(post);

                // save the changes
                db.SaveChanges();

                x++;
            }
            while (x != 100000);
        }

前もって感謝します!

4

0 に答える 0