question

Upvotes
Accepted
3 0 2 7

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.

@danai.ongvuttivate

Thank you for your participation in the forum.

Is the reply below satisfactory in answering your question?

If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question.


Thanks,

AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,


AHS

1 Answer

· Write an Answer
Upvotes
Accepted
78.8k 250 52 74

@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.