ecotoneframework / ecotone-dev

Ecotone Framework Development - This is Monorepo which contains all official public modules
https://docs.ecotone.tech
Other
37 stars 16 forks source link

Where to get License Key for Enterprise Features. #380

Open nkamuo opened 3 weeks ago

nkamuo commented 3 weeks ago

DynamicMessageChannelBuilder requires License Key, Which I cannot see where to get. `

[ServiceContext]

public function databaseRouteChannel()
{
    // return DbalBackedMessageChannelBuilder::create('routing_routes');

    return [
        // normal Message Channels
        DbalBackedMessageChannelBuilder::create('routing_routes_aggregate'),
        DbalBackedMessageChannelBuilder::create('routing_routes_projection'),
        DbalBackedMessageChannelBuilder::create('routing_routes_notification'),
        // DbalBackedMessageChannelBuilder::create('tenant_b_channel'),

        DynamicMessageChannelBuilder::createRoundRobin(
            'routing_routes', // channel name to consume
            ['routing_routes_aggregate', 'routing_routes_projection', 'routing_routes_notification']
        ),
    ];
}

There are a couple of interesting features I want to use, especially those that have to do with scaling. And I keep getting this error message. Dynamic message channels are available only as part of Ecotone Enterprise. `

So, How do one migrate to the Ecotone Enterprise?

dgafka commented 2 weeks ago

Hey @nkamuo,

It's not available for public access yet. We will soon announce more details on this :)

nkamuo commented 1 week ago

Hey @nkamuo,

It's not available for public access yet. We will soon announce more details on this :)

Hello @dgafka. I look forward to it.

And thanks for making this amazing framework.🙌