Hi everyone,
There is currently an issue with the UK IDAC, which means that attempts to run asynchronous queries against DP0.3 catalogues will fail. Queries submitted via Firefly are asynchronous, so will always fail. However, using Nublado, you can submit synchronous queries, which should succeed.
For example:
from lsst.rsp import get_tap_service, retrieve_query
service = get_tap_service("ssotap")
assert service is not None
assert service.baseurl == "https://rsp.lsst.ac.uk/api/ssotap"query="SELECT * FROM dp03_catalogs_10yr.MPCORB WHERE ssObjectId BETWEEN 9038903462544093184 AND 9223370875126069107"
results = service.search(query)
print("Selected range of objects in dp03_10yr MPCORB:", results)
—will still complete successfully (as a synchronous query).
We believe this is a regression triggered by a redeployment of the SSO TAP service. We’re working to fix this and will report back when done (hopefully today/ tomorrow).
Sorry for any inconvenience,
George.