Skip to content

How to specify custom pickler cache with Thespian? #184

Description

@mjmckp

I am attempting to specify a custom pickler with Thespian, using the following setup code:

        let registry = CustomPicklerRegistry()

        registry.RegisterFactory <| fun (resolver : IPicklerResolver) ->
            let writer (w: WriteState) (x: MyType) =
                // code...
    
            let reader (r: ReadState) : MyType =
                // code...
    
            Pickler.FromPrimitives(reader, writer)

        registry.DeclareSerializable<MyType>()

        let cache = PicklerCache.FromCustomPicklerRegistry registry

        Nessos.Thespian.Serialization.defaultSerializer <- new FsPicklerMessageSerializer(FsPickler.CreateBinarySerializer(picklerResolver = cache))

However, when I attempt to run a cloud calculation, I get MBrace.FsPickler.NonSerializableTypeException for MyType. It seems like Thespian is always using the default instance of MBrace.FsPickler.PicklerCache instead of the cache created above...

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions