Database

This page explains the concept of database, vector databases, and multiple databases.

Vector databases

A vector database is a database specifically designed to efficiently store, manage, and retrieve vector data. Vectors are ordered sets of numerical values that represent various types of data, such as spatial coordinates, feature attributes, or embeddings used in machine learning.

Key features of vector databases:

  • High-dimensional data: Vector databases handle data represented as vectors (both sparse and dense).

  • Similarity search: Vector databases excel at finding similar items based on vector similarity, which is crucial for applications like recommendation systems, image and video search, and natural language processing.

  • Efficient storage and retrieval: Optimized for low-latency queries, making them suitable for real-time applications.

Multiple Databases

In the context of vector databases such as KDB.AI, having multiple databases typically means that the system can manage and store data across several distinct databases, each optimized for different types of data or use cases. For example, you might have databases like “market_data”, “trades”, and “hr_data”. Each of these databases can contain several tables.

Here are a few key points:

  • Database structure: Each table belongs to a specific database. Think of databases as individual containers that hold multiple tables.

  • Organization: This structure helps in organizing tables logically, so you don’t end up with a clutter of 100 tables in a single database.

  • Table naming: You can have tables with the same name in different databases. For example, both market_data and trades can have a table named transactions without any conflict.

Next steps

Now that you’re familiar with databases: