Blog

Blog

“ Mach Speed Horizontally Scalable Time series database. ”

A Database for database-for-things

by Grey Shim / 12 Jul 2023

Introduction

The Internet of Things (IoT) refers to the communication and processing of data between numerous devices through an Internet network. IoT devices include sensors, digital actuators, and mobile terminals, excluding general desktops and laptops.

This architecture is regardless of the data quality that developers need to focus on, there are a lot more other things that need to be done to make the service itself work.

However, IoT data has slightly different characteristics.

Typically, large amounts of data occur sporadically in many places, making it very difficult to process with existing data solutions.

In this post, we will look at the types and characteristics of IoT data, and talk about the challenges that must be overcome to process IoT data.

Types and Characteristics of Internet of Things Data

The Internet of Things was once a term referring only to systems using RFID data, but with the development of ICT technology, more and more types of data have been included.

Then, there are various types of data, including RFID, and let’s look at their characteristics.

RFID(Radio Frequency Identification)

RFID is a tag that transmits and receives information recorded by radio waves and can be attached to or included in equipment. An RFID tag consists of an IC chip that stores data and an antenna that transmits and receives data, and the tag data is communicated wirelessly through a tag reader.

RFID is used in a wide variety of fields. For example:

  • passport
  • Cell Phone
  • logistics management
  • Inventory Management
  • healthcare

Tags can be used in many fields as they become very inexpensive through mass production, but they are still more expensive than bar codes, so diffusion is slow in areas such as distribution.

When RFID is used in logistics, the movement trajectory according to the time series can be tracked based on the tag’s location information and time information.

Log Data

Log data generated by numerous S/W and H/W plays a very important role in managing devices and software.

However, since log data is created in text format and can be automatically deleted when it reaches a certain amount, other methods are needed for long-term collection and analysis of data.

Since it is not structured data, a conversion process such as parsing of log messages is required to express it as a relational DBMS schema.

Log data is recorded in various formats depending on the program that creates it, so it is not easy to process.

Location and environmental data

As can be seen in the example of RFID, the location information of the place where the data is generated is very important for moving object data and meteorological environment data.

In general, location information is obtained using a global positioning system (GPS). GPS information obtained through several satellites can only know an approximate location due to its characteristics, and it is difficult to obtain accurate location information.

In special circumstances, more detailed information can be obtained using a local positioning system.

Positional data of non-moving equipment can also be treated as very important information.

For example, by combining environmental information such as temperature, humidity, and air pressure from a sensor floating on the sea with location information, it is possible to obtain information that is very useful for weather forecasts and disaster warnings.

Location and environmental data are being studied in convergence with technologies such as geographic information systems and mobile computing.

Time series data — sensor data

We live surrounded by numerous sensors. Mobile phones are also equipped with numerous sensors such as cameras, GPS, and accelerometers, and there are many sensors in factories and public sectors (roads, railways, ports, and airports).

Analyzing this sensor data can solve previously unactionable problems in various areas. Each sensor has a unique identifier, and records and transmits the read data value and measurement time together.

Data recorded in the form of <Timestamp, sensor identifier, sensor value> is stored sequentially according to the input time for later data analysis, and this is called time-series sensor data.

Time series data — control data

Not only sensor data collected from actuators that change in real time, but also control signal data for controlling the actuators are recorded in time series.

Since these data are data that is changing in real time, a large amount of data is generated, making it difficult to store and analyze. Afterwards, diagnosis can be made by analyzing existing data such as accident analysis, defect prediction, quality improvement, and production control.

Time series data — Historical Data

When sensor data including time is collected, this data becomes historical data. The amount of data greatly increases according to the data collection cycle.

This is a problem to be solved with DBMS because the shorter the data collection cycle for detailed analysis, the larger the amount of data.

Chellenges with IoT sensor data

As discussed above, the data generated from a large number of sensors has the characteristics of a time series and is stored historically.

In the case of a DBMS operating in a single system, index and search performance inevitably deteriorates as the storage period increases, and it is difficult to maintain uninterrupted collection and storage. Finally, Bigdata platforms such as Hadoop emerged to overcome the limitations of DBMS, which cannot process PB units of data.

However, distributed processing such as Map Reduce is optimized for batch processing (distributed storage and retrieval), so real-time data analysis has limitations.

In other words, new methods are needed for real-time processing of IoT sensor data.

Query language

IoT sensor data includes structured data as well as semi-structured data. SQL is used as a representative query language for structured data, but the query language for semi-structured data is not unified.

Of course, with the introduction of the big data system, No-SQL query languages appeared, but various disparate languages are still being used interchangeably. Eventually, as SQL on Hadoop products such as Spark and Impala spread, the SQL query language is being used a lot again.

Interface

DBMS supporting SQL language provides traditional interfaces such as ODBC/JDBC, but Operational Historian products often use JSON-based query interface through HTTP protocol through REST API.

As many operating environments move to the web standard, REST API, which is easy to use, has become an interface that must be supported.

transaction processing

Transactions (e.g. ACID, Two-phase locking) are difficult to perform in distributed data systems that must process more than 100 billion data per second in real time. Because time-series data does not have an update operation until it is completely deleted, RDBMS transaction processing based on perfect ACID causes performance problems.

In real-time processing of massive IoT data, a new efficient data processing technique that reflects the characteristics of time-series data is required rather than traditional ACID-based transactions.

Statistical processing of time series data

Time series data frequently requires statistical calculations such as sum, count, avg, and sampling. These statistics are used for visualization and advanced analysis.

Since it is very difficult for RDBMS to input large amounts of data in real time and perform statistical work at the same time, Stream DB has recently been attracting new attention.

Machbase optimized for IoT data

Machbase Database is the only database that meets the performance and features required for IoT data processing.

  • Real-time bulk data processing
  • Provides an easy-to-use and efficient query language
  • Efficient transaction processing
  • Statistical calculation of time series data
Real-time processing of bulk data

Machbase, which adopts a distributed data storage and query structure, can input and index 2 million data in a single device, and can process more than 10 million sensor data per second as its performance increases as more devices are added.

It has a dedicated API for high-speed data input and an index number structure that can create indexes at high speed.

Performance and space can be expanded by adding equipment to the cluster even with time-dependent addition of time-series data.

Efficient query language provision and interface

Provides SQL language optimized for data processing. No-SQL products are starting to offer the SQL language again.

By providing an inverted index and related syntax for efficiently searching semi-structured data, it is possible to easily search and process semi-structured data.

Provides REST API as well as ODBC/JDBC which is SQL standard interface

Efficient Transaction Processing
  • Devising optimal transaction techniques for time series data
  • Update is not provided, but insert and delete are possible, and consistency of data and index is maintained through recovery process even in case of restart due to node failure.
  • Enterprise edition fundamentally solves data loss due to node failure by using a distributed data storage technique
Processing time series statistics
  • Automatic statistics function for time-series sensor data: Statistics are automatically generated for each unit time (second, minute, hour) and sensor identifier of the input sensor data.
  • Provides an extended query conditional clause optimized for time series data.
  • Machbase Database is a product implemented considering both functions and performance requirements for processing time series data, and is suitable for processing Internet of Things data.

@2023 MACHBASE All rights reserved.