question

Upvotes
Accepted
7 3 2 3

Open / Suspect / None / 'Request timeout'

Some item can receive data normally and other item get error state[Open / Suspect / None / 'Request timeout'] when I use EMA subscribe items,but this mistake did not appear on the second day and before days.When will this happen?

elektronrefinitiv-realtimeelektron-sdkema-apirrtelektron-message-api
error.jpg (148.6 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.

I had the same problem yesterday.,but I can receive all data after I try add config [<RequestTimeout value="120000"/>],I want to know how to set this parameter reasonably.

Hello @chenjihui

Does your application use EMA C++ or Java?

use EMA java

1 Answer

· Write an Answer
Upvotes
Accepted
9.6k 10 7 7

Hello @chenjihui

The proper RequestTimeout depends on the network and infrastructure. How long they spend the time to send, process all item requests and send all data back to your application. To know the proper timeout value, you should find out the longest time to get data. I suggest you do the following:

1. Set RequestTimeout to be 0. EMA will wait for a response indefinitely.

2. Turn on EMA trace log. EMA traces its received and sent messages from/to the infrastructure with the timestamp in XML format to stdout/console. To enable EMA trace log set XmlTraceToStdout in Consumer Node to be 1. For example:

<Consumer> 
	<Name value="Consumer_1"/> 
	… 
	<XmlTraceToStdout value="1"/> 
</Consumer> 

3. Run your application with redirect the output to a file to keep EMA trace log in the file.

4. Find out which request spends the longest time from EMA trace log.

For example, RIC TRI.N spends the longest time as shown below:

  • The item request is sent at 10:48:27:

  • The data is received at 10:48:57:

The longest time is 30 seconds. Hence, you should set RequestTimeout + spare time e.g. 35 seconds or 35000 set in RequestTimeout. This is to make sure that your application will get all data instead of 'Request Timeout' error.

Hope this help.


itemrequesttri.png (20.2 KiB)
datatrin.png (29.7 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.

Hello @chenjihui

If you still get 'Request timeout' and RequestTimeout parameter is very long e.g. 300000 (5 minutes), the network and the infrastructure should be investigated. Therefore, you should contact your network team and your infrastructure team or the account team who owns the infrastructure.

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.