0
  1. Im trying to find out number of tablets servers. Any command to get so.
  2. what does accumulo/tables/!0 contain ? Is it possible to view the data insisde !0 ?
srikanth
  • 958
  • 16
  • 37

2 Answers2

2
  1. The monitor will show you this (like was said in the other answer). connector.instanceOperations().getTabletServers().size() will also provide programmatic access to the number of TServers. See the Connector and InstanceOperations javadoc.

  2. "/accumulo/tables/!0" contains the data for the "accumulo.metadata" (or "!METADATA" if you're using an older version) table.

elserj
  • 1,236
  • 6
  • 6
0

Use the Accumulo HTTP Monitor page. It can generally be found on port 50095

https://accumulo.apache.org/1.6/accumulo_user_manual.html

FuriousGeorge
  • 4,561
  • 5
  • 29
  • 52