Questions tagged [ravendb-3.5]

6 questions
4
votes
1 answer

RavenDB migration from 3.5 to 5.0.3 throws duplicate key error

I am moving a RavenDB instance from 3.5 (build #35295) to 5.0.3 (the latest at the time of writing). I start the migration through the Settings > Import Data > From RavenDB. I only include documents and indexes. The old database used revisions for a…
Ken Bonny
  • 729
  • 1
  • 9
  • 29
3
votes
1 answer

Add a field to a document in raven 3.5 where the property doesn't exist

In my instance of raven3.5 I have a collection and some documents have an extra property due to a change in the document structure. Now I need to query on that property but many older documents don't have it. How can I patch the collection and add…
Sean Rock
  • 113
  • 9
2
votes
0 answers

How do I query a collection or index using REST/http in an embedded RavenDB v3.5?

Firstly I feel like the need to qualify why having to do this on such an old version of RavenDB: We are using Particular ServiceControl for NServiceBus/RabbitMQ message handling, namely error messages. Latest version of ServiceControl (v4.22.0) uses…
Frederik Struck-Schøning
  • 12,981
  • 8
  • 59
  • 68
2
votes
0 answers

RavenDB BulkInsert Could not flush in the specified timeout

I use BulkInsert to update ~600k items in RavenDB 3.5. I use Parallel.ForEach, but after a few minutes I get this error: System.TimeoutException: Could not flush in the specified timeout, server probably not responding or responding too slowly. Are…
Karasini
  • 23
  • 2
1
vote
1 answer

RavenDB Upgrade: 2.5 to 3.5 - Cannot compile index

I'm currently in the process of upgrading our Solution from RavenDB 2.5 to 3.5 but getting the following exception when creating indexes: Looks like it has something to do with the group by IndexCreation.CreateIndexes(typeof(RavenGuid).Assembly,…
FaNIX
  • 1,888
  • 6
  • 33
  • 60
0
votes
1 answer

Ignoring properties in RavenDB 3.5 (.NET Core)

Is there any way to ignore a property in a RavenDB entity class for RavenDB 3.5? I'm working on upgrading a project to .NET core and this project relies on RavenDB. Before when saving an object to RavenDB I could just add the attribute JsonIgnore…