Datastore Walkthrough
  • 2 Minutes to read
  • Dark
    Light
  • PDF

Datastore Walkthrough

  • Dark
    Light
  • PDF

Article summary

Introduction

This document outlines the various methods available in Rivery for extracting data from Datastore, a NoSQL document database provided by Google Cloud Platform. Rivery facilitates the extraction process through two primary methods:
Query by Kind and Query by GQL (Google Query Language).
Additionally, it provides functionalities for mapping attributes to control how data is pulled from Datastore.
image.png

Query by Kind

The Query by Kind method resembles the Datastore console, allowing users to browse and extract data from a specified kind in Datastore. It offers options for extracting all available data or utilizing an incremental approach.

Extraction Steps

  1. Kind: Insert the exact name of the kind from which data is to be extracted. The name is case sensitive.

  2. Extract Method
    Users can choose between:

  • All: Pulls all available data from the selected kind.

  • Incremental: Pulls data based on specified increments.

  • If selecting Incremental:

    • Timestamp: If the field is a standard timestamp field in Datastore.
    • Epoch: If the field is an Integer field representing epoch time.
  1. Incremental Field: Filter data by this field. Ensure the field is indexed in the selected Datastore kind to enable filtering.

  2. Incremental Type: Choose between Timestamp or Epoch.

  3. Start Date & End Date: Select the datetime range. Leaving it empty pulls data until the current moment. Use "Include end value" if pulling data until a specific end datetime is necessary.

  4. Interval Chunks Size: Utilize this for pulling large amounts of data to reduce the load on Datastore in each request.

  5. Filters: Add filters based on indexed columns to further refine the data extraction.

  6. Get Ancestors: Optionally retrieve ancestors' information for each entity in the results.

image.png

Query by GQL

The Query by GQL method employs Google Query Language for retrieving and manipulating data in Datastore. Users can specify criteria for data selection and manipulation through GQL queries.

Extraction Steps

  1. Include query parameters for criteria specification.
  2. Enter the query in the designated text box.
  3. Optionally toggle to retrieve data ancestors per each entity.
    Please Note: Incremental extraction is not supported with GQL.

image.png

Mapping Attributes

Mapping attributes control how Rivery pulls data from the selected Datastore kind, offering flexibility in data handling.

Attribute Mapping Steps

  1. Get Attributes Mapping of Data:
  • Click on auto mapping to retrieve column details.
  • Ensure required columns are included in the mapping results.
  1. Convert Data Types:

Change data types of selected columns as needed.
Useful for resolving mapping errors or mismatches.

  1. Select Columns:
  • Modify column selection to pull only required data.
  • Ensure selected columns have appropriate indexes in Datastore.

Please Note: After any changes in attribute mapping, refresh the mapping of the Target table to synchronize changes.


Was this article helpful?

What's Next