From bd089ebcaaca15c6dabf36f035caa34a966bac43 Mon Sep 17 00:00:00 2001 From: Anna Stuchlik Date: Mon, 25 May 2026 18:38:29 +0200 Subject: [PATCH] doc: remove broken References section from sstables-3-index Remove the References section containing broken links to Cassandra source files that no longer exist. Fixes https://github.com/scylladb/scylladb/issues/30080 Closes scylladb/scylladb#30081 --- .../sstable/sstable3/sstables-3-index.rst | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/docs/architecture/sstable/sstable3/sstables-3-index.rst b/docs/architecture/sstable/sstable3/sstables-3-index.rst index 2bc992affc..3712f599f1 100644 --- a/docs/architecture/sstable/sstable3/sstables-3-index.rst +++ b/docs/architecture/sstable/sstable3/sstables-3-index.rst @@ -131,24 +131,6 @@ Its size is the same as the value stored in ``promoted_index_blocks_count``. The It is possible to read those offsets (commonly referred to as "offsets map") directly without reading the entire promoted index. This, in turn, allows searching through the promoted index using binary search which results in O(log N) reads instead of O (N). -References -.......... - -The following code parts in Cassandra deal with index serialisation/de-serialisation: - -* `ColumnIndex.java, buildRowIndex`_ - -* `RowIndexEntry.java`_ - -* `IndexInfo.java`_ - -.. _`ColumnIndex.java, buildRowIndex`: https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/db/ColumnIndex.java - -.. _`IndexInfo.java`: https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/io/sstable/IndexInfo.java - -.. _`RowIndexEntry.java`: https://github.com/apache/cassandra/blob/trunk/src/java/org/apache/cassandra/db/RowIndexEntry.java - - Additional Information ----------------------