How to initialize a RavenFS FileStore programatically when embedded with MVC

1.2k Views Asked by At

I can connect to a FileStore via a RavenDBServer instance in my MVC application provided the FS is initialized, so (for example), I create a RavenDBServer with the DataDirectory set:

To be clear: this is running as an embedded instance.

var config = new RavenConfiguration
{
    DataDirectory = "~\\App_Data\\Database",
    DatabaseName = "test"
};

var server = new RavenDbServer(config);
server.UseEmbeddedHttpServer = true;

Then go to the Raven UI, add a FS called test-fs, add the following to the initialization code:

server.FilesStore.DefaultFileSystem = "test-fs";
server.FilesStore.Initialize();

Then when I call:

server.FileStore.OpenAsyncSession("test-fs");

we're all good.

Ideally, I don't want to have to go about doing that as it's cumbersome, and involves changing code. SO. I put this in:

server.FilesStore.AsyncFilesCommands.Admin.CreateOrUpdateFileSystemAsync(new FileSystemDocument(), "test-fs");

but this never creates the FileSystems folder in the App_Data folder, and any attempt to OpenAsyncSession always results in an error stating that the test-fs could not be opened.

How can I create the FS on initialisation? I'm doing this within an MVC (5.2) application.

2

There are 2 best solutions below

1
On

I use static FileStoreHolder to provide FilesStore. As is recomended for DocumentStore.

 internal class FilesStoreHolder
{
    private static readonly Lazy<IFilesStore> Store = new Lazy<IFilesStore>(CreateStore);
    public static IFilesStore FilesStore
    {
        get { return Store.Value; }
    }

    private static IFilesStore CreateStore()
    {
        var store = new FilesStore
        {
          ConnectionStringName = "ConnStr",
          DefaultFileSystem = "MyFS"
        }.Initialize();

        return store;
    }
}

then when I need FS session I get it this way:

 using (var fsSession = FilesStoreHolder.FilesStore.OpenAsyncSession())
        {
            return await fsSession.DownloadAsync(Folder + name);
        }
2
On

See this thread on the RavenDB Mailing List.

You could do it like this:

var store = new EmbeddableDocumentStore {
    RunInMemory = true,
    EnlistInDistributedTransactions = false
};
store.Initialize();
RavenServer = store;

var createFs = Task.Run(async () => {
    await store.FilesStore.AsyncFilesCommands.Admin.CreateOrUpdateFileSystemAsync(
    new FileSystemDocument {
        Settings = {
            { "Raven/FileSystem/DataDir", "~/App_Data/FileSystem/default" }
        }
    },
    "default"
    ).ConfigureAwait(false);
});
createFs.Wait();

The next version should support in-memory file stores.