Home / Companies / SingleStore / Blog / July 2023

July 2023 Summaries

7 posts from SingleStore

Filter
Month: Year:
Post Summaries Back to Blog
The SingleStore plugin for ChatGPT-4 is now available, allowing users to query their database in English and power modern generative AI applications. To get started, users need to install the plugin by searching for it in the plugins store, activating it after installation, and connecting to a supported database such as SQL or MongoDB. Once connected, users can execute queries, analyze database structures, create Notebooks, and view their contents. The plugin also provides additional functionalities like database structure analysis and execution of aggregate queries. Users can access more resources and tools by visiting the SingleStore blog and registering for upcoming webinars on building ChatGPT apps and data strategies.
Jul 28, 2023 605 words in the original blog post.
SingleStoreDB offers a suite of features to address the challenges present with IoT data, including high-velocity data ingestion pipelines that enable real-time data ingestion and analytics. SingleStore provides robust support for both transactional (OLTP) and analytical (OLAP) workloads within a single database platform, known as Hybrid Transaction-Analytical Processing (HTAP). The database also leverages vector processing capabilities to accelerate data processing and analytics, resulting in significant performance gains and improved efficiency for complex analytical workloads. Additionally, SingleStore empowers users to perform live analytics and create interactive dashboards through its built-in notebook feature, facilitating real-time insights and data-driven decision making. By implementing real-time anomaly detection in IoT data, businesses can enjoy early anomaly detection, better route optimization, risk mitigation strategies, optimized maintenance schedules, reduced latency, and a single integrated environment for both transactional and analytical data processing. SingleStoreDB is well-equipped to handle the challenges posed by IoT data, providing a powerful set of features that helps organizations achieve real-time anomaly detection.
Jul 26, 2023 1,372 words in the original blog post.
Nagios XI is a monitoring and alerting tool that provides capabilities to foresee big problems before they affect critical business processes. It monitors infrastructure components including applications, services, operating systems, network protocols, systems metrics and networks with hundreds of additional inbuilt-plugins. SingleStoreDB is a real-time, distributed SQL database built to handle multiple data types, delivering high-speed data ingestion on a unified transactional and analytical foundation. Nagios XI can be used to monitor SingleStoreDB clusters through basic monitoring using the configuration wizard or advanced monitoring with custom plug-ins. The tool allows system administrators and DBAs to configure Nagios XI and monitor SingleStoreDB clusters with hundreds of additional inbuilt-plugins, enabling real-time data ingestion and unified transactional and analytical capabilities.
Jul 21, 2023 773 words in the original blog post.
The partnership between SingleStore, a unified distributed SQL database for real-time analytics, and Hightouch, the world's leading data activation platform, is set to redefine the way businesses leverage their data. This collaboration enables fast, scalable SQL-based analytics across diverse data sets and makes data actionable for business users in their everyday tools. Data activation is the process of unlocking the knowledge stored within a data warehouse and making it accessible to non-technical users with the tools they use every day. By democratizing data access, data activation empowers business users to make swift, real-time decisions, enhancing the efficiency and effectiveness of business operations. The integration between SingleStoreDB and Hightouch provides seamless data syncing, user-friendly interfaces, flexible options, customizable scheduling, and real-time observability, making it a game-changer in data management.
Jul 18, 2023 1,024 words in the original blog post.
SingleStoreDB is a database that supports vector data and nearest-neighbor search, enabling powerful query processing in SQL. This allows for applications such as generative AI, chatbots, semantic text search, face matching, and object photo matching to be developed. To get started with using SingleStoreDB for vector search, users can insert vector data into the database using regular INSERT statements or bulk load vectors and associated data using LOAD DATA or PIPELINES. A simple example of loading a data file into the `vectors` table is shown, which demonstrates how to use LOAD DATA and JSON_ARRAY_PACK to convert text-formatted vectors to internal packed binary format required by DOT_PRODUCT and EUCLIDEAN_DISTANCE functions. Users can also validate that vector data is present in the database using SELECT statements with JSON_ARRAY_unpack. For large data sets or continuous streaming loads, users can use PIPELINES instead of LOAD DATA. SingleStoreDB's documentation provides more information on its capabilities for working with vector data, and a free trial is available to get started.
Jul 14, 2023 437 words in the original blog post.
At SingleStore, collaboration is key to driving innovation and delivering exciting products. The company recently hosted its first-ever internal "demothon" where global solutions engineering teams came together to build demos showcasing the latest features of SingleStore 8.1. This event aimed to address the challenge of keeping demos up-to-date and providing clear stories about how SingleStore can solve business problems. With a focus on relevance, innovation, and business value, the teams received over five times more ideas than they could build, resulting in a renewed sense of collaboration and excitement within the organization. The outcome is a series of rich capabilities to showcase with customers, built through modular demos with versioning, collaboration, and access to a tech ecosystem. This approach will continue with the launch of SingleStore Hands-On Labs, providing a platform for solution engineers to build and share demos with just three clicks.
Jul 06, 2023 581 words in the original blog post.
To ingest embeddings from Pandas DataFrames into SingleStoreDB using Python, you can convert the array containing the vector embedding into a packed byte string using numpy. This approach offers speed and simplicity when loading your embeddings as vectors into SingleStoreDB. To get started, create a connection to SingleStoreDB or use a SingleStore notebook, select the database you want to access, install necessary libraries, and get a sample dataset from the 2022 Beijing Winter Olympics that includes text chunks and their embeddings. Then, create a simple table using SQL and load your DataFrame into the SQL table using the `to_sql` method. Note that this approach assumes the data is in a form of array; if not, additional conversion code may be required. The pandas documentation provides more information about options available through the `to_sql` method.
Jul 06, 2023 373 words in the original blog post.