Couchbase Failing on StoreJson

elcajonins

New Member
I'm having an issue using Couchbase with the newest version of the .NET assemblies (1.2). My goal is to select 150,000 records from my current Oracle Database and migrate the entire object into the Couchbase Data-Bucket. The 150k records are stored as objects in objectList (beloThe following code seems to give me somewhere between 100,000 - 120,000 failures every time I run it. Does anyone know what may be the cause or how to best debug this issue? However, every time I run it, different sets of objects are added into the data-bucket, which makes me even more confused. \[code\]int failures = 0;foreach (var obj in objectList) {var result = client.StoreJson(StoreMode.Set, obj.Id, obj);if (!result) failures++;}\[/code\]
 
Back
Top