Bitcoin Core has multiple different databases and indexes that it maintains independently of each other since some things are optional.
blocks/index
contains the LevelDB database for the block index. This contains the information of where every single block is located in the blocks/
directory (which blk*.dat file contains it, and the offset within the file). It also has the information of which rev*.dat file has the undo data, and where that undo data is within that file.
chainstate/
contains the LevelDB database that has the UTXO set.
Both the block index and the chainstate database are necessary for normal operation, and every Bitcoin Core node has them. However, they are separate as they store distinct data, and missing the chainstate database does not mean that the block index is invalid.
If you are missing the chainstate database but have the block index, the chainstate database can be rebuilt much faster than rebuilding both the chainstate and the block index. This is what the -reindex-chainstate
option does – it removes the chainstate database but keeps the block index so it only has to rebuild the chainstate. -reindex
is a full reindex and removes both databases.
The databasese in indexes/
are for the optional indexes – txindex, coinstatsindex, and blockfilterindex. These are maintained separately because they are not necessary for normal operation. The layout of these databases are independent of each other, and since these indexes are built asynchronously, each index has its own database.