REthinkdb table is not showing in the interface

102 Views Asked by At

I have a rethinkdb with databse wich is contain near about 250 database each database contain 7 table. The current size of data is nearly 11gb. The problem is from the admin interface i am unable to see the database and tables. it gives me error like this

Query terminated by an unknown cause in: r.db("rethinkdb").table("db_config").filter(function(var_22) { return var_22("name").ne("rethinkdb"); }).map(function(var_23) { return {"name": var_23("name"), "id": var_23("id"), .............

Please help me. please i amfacig a great problem. I am attaching a picture

enter image description here

1

There are 1 best solutions below

1
On

The web UI is timing out while trying to retrieve the data due to the high number of tables.

There isn't much you can do at this point, apart from querying the system tables directly with a different client. See http://rethinkdb.com/docs/system-tables/ for details on how to use the system tables.

The timeout is specific to the web UI, and using another client (node.js, Python etc.) should work fine.

We have two relevant issues open about improving this on our issue tracker:

  1. Getting rid of the timeout: https://github.com/rethinkdb/rethinkdb/issues/2316

  2. Fixing the error message. It should mention the timeout rather than saying "by an unknown cause": https://github.com/rethinkdb/rethinkdb/issues/5113