question

Upvotes
Accepted
3 0 1 6

Please guide how to fix Reactor Channel is not active issue on ETA

HI Refinitiv,


We have found many error occurs about "Reactor Channel is not active" on production.


Could you help advice how these error occurs? What is the possible way to fix issue?


elektronrefinitiv-realtimeelektron-sdkrrteta-apielektron-transport-api
1615473113754.png (167.9 KiB)
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
78.2k 246 52 72

@danai.ongvuttivate

Refer to the source code, the problem can happen when dispatching the inactive ReactorChannel.

                if (!isReactorChannelReady(reactorChannel))
                {
                    return populateErrorInfo(errorInfo, ReactorReturnCodes.FAILURE,
                            "Reactor.dispatchChannel", "ReactorChannel is not active, aborting.");
                }

The ReactorChannel is not in an Up or Ready state.

    boolean isReactorChannelReady(ReactorChannel reactorChannel)
    {
        return reactorChannel.state() == ReactorChannel.State.UP ||
               reactorChannel.state() == ReactorChannel.State.READY;
    }

Are you using multiple ReactorChannels in one Reactor?


icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.