cardano-foundation / cardano-rosetta

An implementation of Rosetta for Cardano
https://www.rosetta-api.org
Apache License 2.0
98 stars 50 forks source link

Rosetta Database Access #541

Open csknk opened 9 months ago

csknk commented 9 months ago

Ask a question

Hi, until recently we have been successfully running cardano-rosetta 2.1.0 via Dockerhub.

We now have an issue with (I think) database access. For example:

echo "testnet network query:"
curl -X POST "$endpoint/network/status" \
    -H "Content-Type: application/json" \
    -d '{ "network_identifier": {"blockchain": "cardano", "network": "preprod" }, "metadata": {}}'

returns:

{"code":5000,"message":"An error occurred","retriable":true,"details":{"message":"An error occurred for request 2879: relation \"block\" does not exist"}}

We get the same result if we try to access a specific block. As far as I can tell, the node is synced. We're getting the same issue for both mainnet and preprod nodes.

Is this a known issue?