hi
Can you try installing Docker Desktop and running a Redis container?
https://docs.docker.com/desktop/setup/install/windows-install/
docker run -p 6379:6379 --name redis -d redis:alpine
Thanks
hi
So why do you want to use a new topic? external system could use the same topic, too. There is no problem.
Thanks
hi
publish event from topic 1 and consume event from external system
Is your external system based on the ABP framework?
You can publish messages without using ABP's KafkaDistributedEventBus if the consumer is not an ABP application.
Just use Kafka code to publish the message to a new topic.
Thanks.
hi
Can you try to set AbortOnConnectFail to false?
Please update your MyBankStoreAuthServerModule file
Change
var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]!);
to
var connection = ConnectionMultiplexer.Connect(configuration["Redis:Configuration"]!, options => options.AbortOnConnectFail = false);
Also PostConfigure<RedisCacheOptions>
public override void ConfigureServices(ServiceConfigurationContext context)
{
PostConfigure<RedisCacheOptions>(options =>
{
options.ConfigurationOptions ??= new ConfigurationOptions();
options.ConfigurationOptions.AbortOnConnectFail = false;
});
}
Thanks.
hi
What is your use case? EventBus?
You can take look at this:https://abp.io/support/questions/3412/Kafka-subscribe-into-multiple-topics#answer-7b978c65-e340-67e9-dcd9-3a0508b832b4
Thanks.
hi
You need to create static proxy for DocumentService in your InvoiceService service and create InvoiceService proxy in your DocumentService
Can you share your Static Proxy code? You can also share your project source code.
liming.ma@volosoft.com
Thanks.
hi roberto.fiocchi
Can you create a new question? I will forward it to our Suite and Studio team.
Thanks.
hi
Can you confirm your Redis connection string is correct? Does your Redis server need a password?
You can check your appsettings.json file.
Thanks