question

Upvotes
Accepted
0 0 1 3

How much coding effort needed if migrating from RFA7.7 to RTT EMA

elektronrefinitiv-realtimeelektron-sdkema-apirrtrfa-apimigration
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.

Upvote
Accepted
25.3k 89 12 25

Hi @aftab

I noticed you asked a similar question for migrating from RFA 7.7 to RFA 8.x

Assuming you are using the legacy MarketData/SSLED interface with RFA 7.7, as explained in my other post, moving from RFA 7.7 to EMA will be considerably less effort than moving to the RFA 8.x OMM interface.

If you compare the legacy RFA 7.7 consumer example RFASTTicker (C++) or the most basic MDSubDemo (Java) with a similar EMA consumer example such as 200_MP_Streaming - you will note that the EMA examples use a fraction of the code to achieve the same functionality compared their RFA equivalents.

This is because EMA is a high-level ease of use layer API which defaults much of the most commonly performed operations e.g.

// C++
OmmConsumer consumer( OmmConsumerConfig().host( "ads1:14002" ).username( "user" ) );

OR

// Java
OmmConsumerConfig config = EmaFactory.createOmmConsumerConfig();
consumer  = EmaFactory.createOmmConsumer(config.host("ads1:14002").username("lpcuser2"));

Executing the above lines of code performs the following (behind the scenes)

  • Establish a session (connect to a server)
  • login to the server with user name,
  • download the data dictionary
  • download the source directory

Achieving the above with the RFA OMM interface would require 100+ lines of code.

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.

Hi @aftab

I should also like to highlight other key benefits of EMA over RFA:

Benefits of EMA over RFA

EMA has Cloud-native support – organisations wanting to cut datacentre costs

  • The same EMA application can consume data from Deployed RTDS server & RTO Cloud endpoint.
  • Easily switch from RTDS to RTO as and when required - Identical data formats

Future-proofing - longer-term OS and Compiler support for new APIs, older APIs will be deprecated (RFA is 19 years old, SFC/SSL even older).

EMA is an Open Source API

Improved performance:

  • higher /throughput compared to RFA SSL
  • lower latency, lower bandwidth usage compared to RFA SSL

Newer features

Views (field filtering), Pause & Resume data streams, Tunnelling, Service Discovery, Domains, Private Streams, Horizontal Scaling, Batch requests

Easier to learn for existing & new developers

  • Ease of Use layers, Less code to write, Easier to maintain
  • Improved resources - training, tutorials, examples, articles, use cases

Richer data payloads - Increased flexibility & efficiency of data distribution + processing, Binary encoded format

Upvotes
0 0 1 3

Thanks! Understood and satisfied with answer.

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.