disable-user-indexes.html 1015 B

123456789101112131415161718192021222324252627
  1. In this mode users...
  2. - Can access objects within the [system catalog][sys-cat] to help determine
  3. which indexes are causing the crash.
  4. - Can only `SELECT` from user-created objects that do not rely on user-created
  5. indexes. In essence, this means users can still `SELECT` from user-created...
  6. - Tables, but they will never return any data.
  7. - Views that contain only references to constant values or depend entirely on
  8. system tables' indexes.
  9. - Cannot `INSERT` data into tables.
  10. - Can create new objects, but any created indexes are disabled.
  11. After troubleshooting any issues, you can [enable individual
  12. indexes](/sql/alter-index) or restart Materialize _without_
  13. disabling user indexes to enable all indexes at once.
  14. For assistance with this mode, see:
  15. - [API Overview: Indexes][api-indexes]
  16. - [System Catalog][sys-cat]
  17. - [`SHOW INDEX`](/sql/show-index)
  18. - [`DROP VIEW`](/sql/drop-view)
  19. - [`DROP INDEX`](/sql/drop-index)
  20. [api-indexes]: /overview/key-concepts/#indexes
  21. [sys-cat]: /sql/system-catalog