question

Upvotes
Accepted
3 0 0 2

How to capture failed subscriptions in the refinitiv.data python apis?

I'm using the python refinitiv.data apis to gather snapshot data. This program is run for hundreds or maybe thousands of rics and there are often some sort of errors with some of the rics (record cannot be found, record not permissioned, etc). I have not been able to find a way to capture these errors programmatically, and I've tried numerous things (the relevant code is below). If I test the failed rics in Eikon they raise an error directly, but with the code below they simply return NA for all fields, rather than an error message and I can't tell what is a real NA and what is an NA due to some failed permission. The only way I have found to get the errors is to set debug on and troll the log after the fact. This seems a bit silly - for one, debug produces *tons* of messages, and for two it seems round-about to have to write some script to scrape the log and then match it back up to what I requested. Is there any way to gather error messages directly in the program itself?

def showerror(error, stream):
    print('Got error: {}',format(error))

import refinitiv.data as rd
rd.open_session('XXX')

stream = rd.content.pricing.Definition(
    universe = ['1US1225J3'],  # this is an expired contract
    fields = ['DSPLY_NAME', 'PROD_PERM', 'RECORDTYPE', 'RDN_EXCHID', 'RDN_EXCHD2', 'CLSEXID', 'STATE']
).get_stream()

stream.on_error(showerror)
res = stream.get_snapshot()
res
InstrumentDSPLY_NAMEPROD_PERMRECORDTYPERDN_EXCHIDRDN_EXCHD2CLSEXIDSTATE
01US1225J3<NA><NA><NA><NA><NA><NA><NA>

In the above, the showerror call appears to do nothing (or is never called) and STATE is NA but I can see this in the log:

'State': {'Stream': 'Closed', 'Data': 'Suspect', 'Code': 'NotFound', 'Text': 'The record could not be found'}}

Its the log message that I want to be able to capture directly in code. Thanks!

#technologypython apistreaming-data
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 @adanburg

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS

1 Answer

· Write an Answer
Upvotes
Accepted
79.3k 253 52 74

@adanburg

Thank you for reaching out to us.

You need to use the on_status callback method, as shown below.

def on_status(status, ric, stream):
    print(" Receive status [{}] : {}".format(ric, status))


def showerror(error, stream):
    print('Got error: {}',format(error))


stream = rd.content.pricing.Definition(
    universe = ['1US1225J3'],  # this is an expired contract
    fields = ['DSPLY_NAME', 'PROD_PERM', 'RECORDTYPE', 'RDN_EXCHID', 'RDN_EXCHD2', 'CLSEXID', 'STATE']
).get_stream()
stream.on_error(showerror)
stream.on_status(on_status)
stream.open(with_updates = False)


res = stream.get_snapshot()
res

You will get the following error in the on_status function.

Receive status [1US1225J3] : {'ID': 5, 'Type': 'Status', 'Key': {'Service': 'IDN_RDFNTS_CF', 'Name': '1US1225J3'}, 'State': {'Stream': 'Closed', 'Data': 'Suspect', 'Code': 'NotFound', 'Text': 'The record could not be found'}}
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 - this works great, thank you. This whole time I was focused on the output being an error condition - I don't think I even tried on_status till now!
Thanks for this - the on_status method worked great!

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.