Reference for Data Flow

This guide lists the predefined objects in OCI Resource Analytics for the Data Flow service. You can find information about views, entity relationships, subject areas, and sample queries.

Views

This section provides information about views within OCI Resource Analytics Data Flow and their columns, data types, keys, and the referred view and column names. The following views are available:

Data Flow Views
Name Description
DATA_FLOW_APPLICATION_DIM_V This view stores information on Data Flow application objects.
DATA_FLOW_PRIVATE_ENDPOINT_DIM_V This view stores information on Data Flow private endpoint objects.
DATA_FLOW_POOL_DIM_V This view stores information on Data Flow pool objects.
DATA_FLOW_POOL_FACT_V Fact table for OCI Data Flow pools at pool snapshot grain.

The suffixes in the view names specify the view type:

  • FACT_V: Fact
  • DIM_V: Dimension

Relationship Diagram

This section provides diagrams that define the logical relationship of a fact table with different dimension tables.

The contents of each view and their relationships are listed in the following file: Data Flow views.

DATA_FLOW_POOL_FACT_V


Relationship diagram showing DATA_FLOW_POOL_FACT_V and its related dimension tables.

Relationships exist among dimensions. Dimensions can be joined directly to each other. This diagram shows the relationship between dimension views.

DATA_FLOW_APPLICATION_DIM_V


Relationship diagram showing DATA_FLOW_APPLICATION_DIM_V and its related dimension tables.

Sample Queries

Sample queries for Data Flow.

List the number of data flow pools by region.

SELECT
    REGION,
	COUNT(POOL_ID) AS POOL_COUNT
FROM OCIRA.DATA_FLOW_POOL_FACT_V 
GROUP BY REGION;