🖥
🖥
🖥
🖥
AugeLab Studio Manual
English
Ask or search…
K
Comment on page

Data Write Local

In AugeLab Studio the program flow is from left to right and you cannot feed the result data of any block back to a previous block. To break this flow, you can do this by keeping the data in RAM with this block and then feeding the data with the Data Store Write block. In principle, it works like Tag from and Tag to blocks.
For example, in the application below, we continue by adding the result of an addition operation to itself by adding 5 to itself, and in this way, the process continues by adding 5 to the result in each cycle.

Data Store Write Node Documentation

The Data Store Write node in AugeLab Studio is used to store data in the data store. The data store is a shared storage area where you can store and retrieve data during the execution of your data pipeline. The Data Store Write node allows you to store data generated or processed in previous nodes and make it available for other nodes to access.

Node Overview

The Data Store Write node stores data in the data store based on a specified data key. It can be used to store data generated or processed in previous nodes and make it available for other nodes to access. The stored data can be retrieved later using the Data Store Read node or other nodes that interact with the data store.

Node Interaction

  1. 1.
    Drag and drop the Data Store Write node from the node library onto the canvas in AugeLab Studio.
  2. 2.
    Double-click on the Data Store Write node to open the node properties panel.
  3. 3.
    Enter the data key in the "Data Key" text field. This should be a unique identifier for the data.
  4. 4.
    Connect the output of the previous node whose data you want to store to the input socket of the Data Store Write node.
  5. 5.
    The data will be stored in the data store with the specified data key.

Input and Output Sockets

  • Input Sockets: The Data Store Write node has one input socket of type Generic. Connect the output of the previous node whose data you want to store to this input socket.
  • Output Sockets: The Data Store Write node does not have any output sockets.

Implementation Details

The Data Store Write node follows these steps to store data in the data store:
  1. 1.
    Enter Data Key: Enter a unique data key in the "Data Key" text field. This key will be used to retrieve the stored data later.
  2. 2.
    Retrieve Data: The Data Store Write node retrieves the data from the input socket connected to it.
  3. 3.
    Store Data: The retrieved data is stored in the data store with the specified data key.

Usage

  1. 1.
    Drag and drop the Data Store Write node from the node library onto the canvas in AugeLab Studio.
  2. 2.
    Double-click on the Data Store Write node to open the node properties panel.
  3. 3.
    Enter a unique data key in the "Data Key" text field. This key will be used to retrieve the stored data later.
  4. 4.
    Connect the output of the previous node whose data you want to store to the input socket of the Data Store Write node.
  5. 5.
    The data will be stored in the data store with the specified data key.
  6. 6.
    Use the Data Store Read node or other nodes that interact with the data store to retrieve the stored data and continue the data processing pipeline.

Notes

  • The Data Store Write node provides the ability to store data in the data store in AugeLab Studio.
  • The data store is a shared storage area where you can store and retrieve data during the execution of your data pipeline.
  • The Data Store Write node stores the data received from the input socket in the data store with the specified data key.
  • The stored data can be retrieved later using the Data Store Read node or other nodes that interact with the data store.
  • Make sure to enter a unique data key to avoid conflicts when retrieving the stored data.
  • The stored data can be of any type and can be accessed by other nodes in your data pipeline.
  • The Data Store Write node enables a flexible and modular approach to data processing in AugeLab Studio.
  • Use the Data Store Write node to store intermediate or final results that need to be shared across multiple nodes.
  • Retrieve the stored data using the Data Store Read node or other nodes that interact with the data store for further processing.
  • The Data Store Write node enhances the capabilities of AugeLab Studio by providing a way to share and access data between nodes in a data pipeline.
  • Utilize the stored data from the Data Store Write node in other nodes to perform various operations and analyses on the data.
  • The Data Store Write node is a powerful tool for managing and exchanging data within your data processing pipeline.