Skip to content

Implement CleanupDefunctSiloEntries for development clustering #8256

Open
@JaktensTid

Description

@JaktensTid

After about 10 mins of inactivity my code is always trying to execute the following code and throws the error

public Task CleanupDefunctSiloEntries(DateTimeOffset beforeDate)
        {
                throw new NotImplementedException();
        }

in SystemTargetBasedMembershipTable.cs

What is the reason of this?

My startup code

builder.Host.UseOrleans(silo =>
{
    silo
        .UseLocalhostClustering()
        .ConfigureLogging(options => options.SetMinimumLevel(LogLevel.Information))
        .AddIncomingGrainCallFilter<LoggingInterceptor>()
        .AddAdoNetGrainStorage(StateStorageConstants.StorageName, options =>
        {
            options.Invariant = "Npgsql";
            options.ConnectionString = builder.Configuration.GetConnectionString("postgres");
        });
});

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions