Skip to content

Commit

Permalink
add glossary terms
Browse files Browse the repository at this point in the history
 patch by Lorina Poland; reviewed by Mick Semb Wever for CASSANDRA-18604
  • Loading branch information
polandll authored and michaelsembwever committed Oct 23, 2023
1 parent dddbfce commit 207dbf1
Show file tree
Hide file tree
Showing 100 changed files with 800 additions and 41 deletions.
430 changes: 389 additions & 41 deletions site-content/source/modules/ROOT/pages/glossary.adoc

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Approximate Nearest Neighbor (ANN)

A machine learning algorithm that locates the most similar vectors to a given item in a dataset.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<<A>> | <<B>> | <<C>> | <<D>> | <<E>> | <<F>> | <<G>> | <<H>> | <<I>> | <<J>> | <<K>> | <<L>> | <<M>> | <<N>> | <<O>> | <<P>> | <<R>> | <<S>> | <<T>> | <<U>> | <<V>> | <<W>> | <<x-y-z>>
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/anti-entropy.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= anti-entropy

The synchronization of replica data on nodes to ensure that the data is fresh.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/authentication.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= authentication

Process of establishing the identity of a user or application.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/authorization.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= authorization

Process of establishing permissions to database resources through roles.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/back-pressure.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= back pressure

Pausing or blocking the buffering of incoming requests after reaching the threshold until the internal processing of buffered requests catches up.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/bloom-filter.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= bloom filter

An off-heap structure associated with each SSTable that checks if any data for the requested row exists in the SSTable before doing any disk I/O.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/bootstrap.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= bootstrap

The process by which new nodes join the cluster transparently gathering the data needed from existing nodes.
8 changes: 8 additions & 0 deletions site-content/source/modules/ROOT/partials/cardinality.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
= cardinality

The number of unique values in a column.
For example, a column of ID numbers unique for each employee would have high cardinality while a column of employee ZIP codes would have low cardinality because multiple employees can have the same ZIP code.

An index on a column with low cardinality can boost read performance because the index is significantly smaller than the column.
An index for a high-cardinality column may reduce performance.
If your application requires a search on a high-cardinality column, a materialized view is ideal.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/cell.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= cell

The smallest increment of stored data.
Contains a value in a row-column intersection.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/cluster.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= cluster

Two or more database instances that exchange messages using the gossip protocol.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
= clustering column

In the table definition, a clustering column is a column that is part of the compound primary key definition.
Note that the clustering column *cannot* be the first column because that position is reserved for the <<partition key>>.
Columns are clustered in multiple rows within a single partition.
The clustering order is determined by the position of columns in the compound primary key definition.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/clustering.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= clustering

The storage engine process that creates an index and keeps data in order based on the index.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= coalescing strategy

Strategy to combine multiple network messages into a single packet for outbound TCP connections to nodes in the same data center (intra-DC) or to nodes in a different data center (inter-DC).
A coalescing strategy is provided with a blocking queue of pending messages and an output collection for messages to send.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/column-family.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= column family

A container for rows, similar to the table in a relational system.
Called a <<table>> in CQL 3.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/column.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= column

The smallest increment of data.
Contains a name, a value, and a timestamp.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/commit-log.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= commit log

A file to which the database appends changed data for recovery in the event of a hardware failure.
9 changes: 9 additions & 0 deletions site-content/source/modules/ROOT/partials/compaction.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
= compaction

The process of consolidating <<SSTable,SSTables>>, discarding tombstones, and regenerating the SSTable index.
The available compaction strategies are:

* <<UnifiedCompactionStrategy (UCS)>>
* <<LeveledCompactionStrategy (LCS)>>
* <<SizeTieredCompactionStrategy (STCS)>>
* <<TimeWindowCompactionStrategy (TWCS)>>
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= composite partition key

A partition key consisting of multiple columns.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= compound primary key

A primary key consisting of the partition key, which determines the node on which data is stored, and one or more additional <<columns,columns>> that determine clustering.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= consistency level

A setting that defines a successful write or read by the number of cluster replicas that acknowledge the write or respond to the read request, respectively.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/consistency.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= consistency

The synchronization of data on replicas in a cluster.
Consistency is categorized as <<weak consistency,weak>> or <<strong consistency,strong>>.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= coordinator node

The node that determines which nodes in the ring should get the request based on the cluster configured snitch.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= cosine similarity

A metric measuring the similarity between two non-zero vectors in a multi-dimensional space. It quantifies the cosine of the angle between the vectors; the angle representing each vector's orientation and direction relative to each other. Zero (0) indicates complete dissimilarity. Negative one (-1) indicates exact opposite orientation of the vectors. One (1) indicates complete similarity.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/cqlsh.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= CQL shell

The Cassandra Query Language shell (`cqlsh`) utility.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= cross-data center forwarding

A technique for optimizing replication across datacenters by sending data from one datacenter to a node in another datacenter.
The receiving node then forwards the data to other nodes in its data center.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/data-type.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= data type

A particular kind of data item, defined by the values it can take or the operations that can be performed on it.
5 changes: 5 additions & 0 deletions site-content/source/modules/ROOT/partials/datacenter.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= datacenter

A group of related nodes that are configured together within a cluster for replication and workload segregation purposes.
Not necessarily a separate location or physical data center.
Datacenter names are case sensitive and cannot be changed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= denormalization

Denormalization refers to the process of optimizing the read performance of a database by adding redundant data or by grouping data.
This process is accomplished by duplicating data in multiple tables or by grouping data for queries.
5 changes: 5 additions & 0 deletions site-content/source/modules/ROOT/partials/ebnf.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= EBNF

https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form[EBNF^] (Extended Backus-Naur Form) syntax expresses a context-free grammar that formally describes a language.
EBNF extends its precursor BNF (Backus-Naur Form) with additional operators allowed in expansions.
Syntax (railroad) diagrams graphically depict EBNF grammars.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/embeddings.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= embeddings

A mathematical technique in machine learning where complex, high-dimensional data is represented as points in a lower-dimensional space. The process of creating an embedding preserves the relevant properties of the original data, such as distance and similarity, enabling easier computational processing. For instance, words with similar meanings in Natural Language Processing (NLP) can be set close to each other in the reduced space, facilitating their use in machine learning models.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Euclidean distance

A coordinate geometry non-negative distance metric between two points, quantifying the similarity or dissimilarity between those data points represented as vectors. Use it to compare generated samples to real data points.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= eventual consistency

The database maximizes availability and partition tolerance.
The database ensures eventual data <<consistency>> by updating all replicas during read operations and periodically checking and updating any replicas not directly accessed.
The updating and checking ensures that any query always returns the most recent version of the result set and that all replicas of any given row eventually become completely consistent with each other.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= garbage collector

A Java background process that frees heap memory when it is no longer in use by the program.
The main Java algorithms to allocate and clean up memory are Continuous Mark Sweep (CMS) and Garbage-First (G1).
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/gossip.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= gossip

A peer-to-peer communication protocol for exchanging location and state information between nodes.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/hdd.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= HDD

A hard disk drive (HDD) or spinning disk is a data storage device used for storing and retrieving digital information using one or more rigid rapidly rotating disks.
Compare to <<SSD>>.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/hdfs.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= HDFS

Hadoop Distributed File System (HDFS) stores data on nodes to improve performance.
HDFS is a necessary component in addition to MapReduce in a Hadoop distribution.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/headroom.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= headroom

The amount of disk space required by a process (such as compaction) in addition to the space occupied by the data being processed.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/hint.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= hint

One of the three ways, in addition to read-repair and full/incremental anti-entropy repair, that Cassandra implements the eventual consistency guarantee that all updates are eventually received by all replicas.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/idempotent.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= idempotent

An operation that can occur multiple times without changing the result, such as performing the same update multiple times without affecting the outcome.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/immutable.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= immutable

Data on a disk that cannot be overwritten.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/index.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= index

A native capability for finding a column in the database that does not involve using the primary key.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Jaccard similarity

A measure of similarity between two sets of features or elements in generated data and real data. The mathematical calculation is the size of the intersection of two sets divided by the size of their union, and ranges from zero (0) to one (1). One (1) indicates identical sets.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/keyspace.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= keyspace

A namespace container that defines how data is replicated on nodes in each datacenter.
8 changes: 8 additions & 0 deletions site-content/source/modules/ROOT/partials/lcs.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
= LeveledCompactionStrategy (LCS)

This compaction strategy creates SSTables of a fixed, relatively small size that are grouped into levels.
Within each level, SSTables are guaranteed to be non-overlapping.
Each level (L0, L1, L2, and so on) is ten times as large as the previous level.
Disk I/O is more uniform and predictable on higher levels than on lower levels as SSTables are continuously being compacted into progressively larger levels.
At each level, row keys are merged into non-overlapping SSTables in the next level.
This process improves performance for reads because the database can determine which SSTables in each level to check for the existence of row key data.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
= linearizable consistency

Also called _serializable consistency_, linearizable consistency is the restriction that one operation cannot be executed unless and until another operation has completed.

The database supports Lightweight transactions to ensure linearizable consistency in writes.
The first phase of a Lightweight transaction works at SERIAL consistency and follows the Paxos protocol to ensure that the required operation succeeds.
If this phase succeeds, the write is performed at the consistency level specified for the operation.
Reads performed at the SERIAL consistency level execute without database built-in read repair operations.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/listen-address.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= listen address

Address or interface to bind to and tell other Cassandra nodes to connect to a node.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Machine Learning (ML)

A branch of artificial intelligence (AI) and computer science that uses and develops computer systems capable of learning and adapting without explicit instruction. ML uses algorithms and statistical models to analyze data and identify patterns, make decisions, and improve its system.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/mapreduce.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= MapReduce

Hadoop's parallel processing engine that quickly processes large data sets.
A necessary component in addition to MapReduce in a Hadoop distribution.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= materialized view

A materialized view is a table with data that is automatically inserted and updated from another base table.
Has a primary key that differs from the base table, allowing the implementation of different queries.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/memtable.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= memtable

A database table-specific, in-memory data structure that resembles a write-back cache.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/mutation.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= mutation

A mutation is either an insertion or a deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= Natural Language Processing (NLP)

Helps computers interpret and share the human language to offer the best use for the user.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/node-repair.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= node repair

A process that makes all data on a replica consistent.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/node.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= node

A Java virtual machine (a platform-independent execution environment that converts Java bytecode into machine language and executes it) that runs an instance of the Licensed Software.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/normalization.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= normalization

Normalization refers to a series of steps used to eliminate redundancy and reduce the chances of data inconsistency in a database's schema.
In DataStax Enterprise, this process is inefficient because joining data in multiple tables for queries requires accessing more nodes.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/oltp.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= OLTP

Online transaction processing (OLTP) is characterized by a large number of short on-line transactions for data entry and retrieval.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= partition index

A list of primary keys and the start position of data.
6 changes: 6 additions & 0 deletions site-content/source/modules/ROOT/partials/partition-key.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
= partition key

A partition keys represents a logical entity which helps a Cassandra cluster know on which node some requested data resides.

The partition key is the first column declared in the primary key definition.
In a compound key, multiple columns can declare the columns that form the primary key.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= partition range

The limits of the partition that differ depending on the configured partitioner.
Murmur3Partitioner (default) range is -2^63^ to +2^63^ and RandomPartitioner range is 0 to 2^127^-1.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= partition summary

A subset of the <<partition index>>.
By default, 1 partition key out of every 128 is sampled.
5 changes: 5 additions & 0 deletions site-content/source/modules/ROOT/partials/partition.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
= partition

A partition is a collection of data addressable by a <<partition-key,key>>.
This data resides on one node in a Cassandra cluster.
A partition is replicated on as many nodes as the <<replication-factor-rf,replication factor>> specifies.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/partitioner.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= Partitioner

Distributes data across a cluster.
The types of partitioners are Murmur3Partitioner (default), RandomPartitioner, and OrderPreservingPartitioner.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/primary-key.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= primary key

The partition key. One or more columns that uniquely identify a row in a <<table>>.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/range-movement.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= range movement

A change in the expanse of tokens assigned to a node.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/read-repair.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= read repair

A process that updates database replicas with the most recent version of frequently-read data.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= replica placement strategy

A specification that determines the replicas for each row of data.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/replica.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= replica

A copy of a portion of the whole database. Each node holds some replicas.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
= replication factor (RF)

The total number of replicas across the cluster, abbreviated as RF.
A replication factor of 1 means that there is only one copy of each row in the cluster.
If the node containing the row goes down, the row cannot be retrieved.
A replication factor of 2 indicates two copies of each row and that each copy is on a different node.
All replicas are equally important;
there is no primary or master replica.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= replication group

See <<datacenter>>.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/role.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= role

A set of permissions assigned to users that limits their access to database resources.
When using internal authentication, roles can also have passwords and represent a single user, DSE client tool, or application.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= rolling restart

A procedure that is performed during upgrading nodes in a cluster for zero downtime.
Nodes are upgraded and restarted one at a time while other nodes continue to operate online.
11 changes: 11 additions & 0 deletions site-content/source/modules/ROOT/partials/row-cache.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
= row cache

A database component for improving the performance of read-intensive operations.
In off-heap memory, the row cache holds the most recently read rows from the local <<SSTable,SSTables>>.
Each local read operation stores its result set in the row cache and sends it to the coordinator node.
The next read first checks the row cache.
If the required data is there, the database returns it immediately.
This initial read can save further seeks in the Bloom filter, partition key cache, partition summary, partition index, and SSTables.

The database uses LRU (least-recently-used) eviction to ensure that the row cache is refreshed with the most frequently accessed rows.
The size of the row cache can be configured in the cassandra.yaml file.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/row.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= row

1) Columns that have the same primary key. +
2) A collection of cells per combination of columns in the storage engine.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/seed.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= seed

A seed, or seed node, is used to bootstrap the gossip process for new nodes joining a cluster.
A seed node provides no other function and is not a single point of failure for a cluster.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= serializable consistency

See <<linearizable consistency>>.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/slice.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= slice

A set of clustered columns in a partition that you query as a set using, for example, a conditional WHERE clause.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/snitch.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= Snitch

The mapping from the IP addresses of nodes to physical and virtual locations, such as racks and datacenters.
The request routing mechanism is affected by which of the several types of snitches is used.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/ssd.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= SSD

A solid-state drive (SSD) is a solid-state storage device that uses integrated circuits to persistently store data.
Compare to <<HDD>>.
4 changes: 4 additions & 0 deletions site-content/source/modules/ROOT/partials/sstable.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
= SSTable

A sorted string table (SSTable) is an immutable data file to which the database writes memtables periodically.
SSTables are stored on disk sequentially and maintained for each database table.
3 changes: 3 additions & 0 deletions site-content/source/modules/ROOT/partials/static-column.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
= static column

A special column that is shared by all rows of a partition.
Loading

0 comments on commit 207dbf1

Please sign in to comment.