You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to figure out the steps we should provide DevOps on how to disable the kv indexer and enable the lightweight transaction indexer.
Problem
On celestia-app v1.12.0, config.toml looks like this
# Options:# 1) "null"# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).# - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed.# 3) "psql" - the indexer services backed by PostgreSQL.# When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed.indexer = "null"
On celestia-app v1.13.0, config.toml looks like this:
# Options:# 1) "kv"# 2) "kv" (default) - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).# - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed.# 3) "psql" - the indexer services backed by PostgreSQL.# When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed.indexer = "kv"
Acceptance Criteria
Fix the config so that there aren't two "kv" options. I think the first option should be "null".
[Tangent] Provide steps to DevOps on how to enable the lightweight tx indexer
Moved to celestia-core. I propose we move the (default) part to null then. So the desired config would look like:
# Options:# 1) "null" (default)# 2) "kv" - the simplest possible indexer, backed by key-value storage (defaults to levelDB; see DBBackend).# - When "kv" is chosen "tx.height" and "tx.hash" will always be indexed.# 3) "psql" - the indexer services backed by PostgreSQL.# When "kv" or "psql" is chosen "tx.height" and "tx.hash" will always be indexed.indexer = "null"
Context
I was trying to figure out the steps we should provide DevOps on how to disable the kv indexer and enable the lightweight transaction indexer.
Problem
On celestia-app v1.12.0, config.toml looks like this
On celestia-app v1.13.0, config.toml looks like this:
Acceptance Criteria
cc: @ninabarbakadze
The text was updated successfully, but these errors were encountered: