SQL Indexing #2
-
Is the ability to index directly into a postgres database available in Gordian or is this a component that is different compared to comtBFT? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @Abstrct, thanks for opening our first community question. Are you asking about indexing Cosmos SDK transactions? gcosmos does not provide that yet. It looks like we are going to need to provide transaction indexing very soon, for basic transaction querying and for IBC support -- so it's very high on our priority list. This will end up looking similar to the tmstore interfaces in Gordian. We will get the interfaces in place first with an in-memory implementation for testing, and once that is developed enough, we will provide an implementation in SQLite. We don't have immediate plans to provide any Postgres or MySQL implementations of storage layers, but we anticipate that at least one community-provided implementation will pop up sooner or later. At that point we could consider accepting their implementation under the gordian-engine organization. If no community implementation happens, we would probably eventually write one ourselves, but that is very low priority as of today. |
Beta Was this translation helpful? Give feedback.
Hi @Abstrct, thanks for opening our first community question.
Are you asking about indexing Cosmos SDK transactions? gcosmos does not provide that yet. It looks like we are going to need to provide transaction indexing very soon, for basic transaction querying and for IBC support -- so it's very high on our priority list.
This will end up looking similar to the tmstore interfaces in Gordian. We will get the interfaces in place first with an in-memory implementation for testing, and once that is developed enough, we will provide an implementation in SQLite.
We don't have immediate plans to provide any Postgres or MySQL implementations of storage layers, but we anticipate that at least one …