Groups
A Group is an organizational layer inside a tabsdata project that organizes workflow steps according to their role in the workflow. By default, all tabsdata projects come with three groups: sources, default, and destinations
1. the sources group stores everything related to ingesting data from external systems
2. the default group stores everything related to transforming data inside tabsdata
3. the destinations group stores everything related to loading data into external systems
sourcesdefaultdestinationsModifying Groups
The sources, default, and destinations groups are special groups that must exist in your workflow. They are dedicated spaces for registering publisher and subscriber functions and cannot be modified, duplicated, or removed from your project.
Outside these three system groups, users can create any number of groups to organize their transformer functions.
Use Cases for Groups
Groups are useful for separating workflow steps that happen across tabsdata server boundaries (ingestion, load) from workflow steps that happen inside the tabsdata server (transform).
Groups are also useful for separating data transformation workflow steps by the type of data transformation being done.
For example, a popular data design pattern is the Medallion Architecture for Data Integration, which breaks data transformation into three layers:
- Bronze: Layer that ingests raw source data from external systems with the goal of having as close of a representation to data in the external system
- Silver: Layer that cleans, dedupes, normalizes, and joins related entities
- Gold: Layer that applies granular, business-specific transformations and creates "consumer-ready" tables.
Users looking to implement this design pattern in tabsdata can do so with five groups within Tabsdata: two built-in groups (sources, destinations) and three custom groups (bronze, silver, gold).
sourcesPublishersIngest from external systems.
Built inbronzeTransformersRaw data, kept as close to the external system as possible.
User createdsilverTransformersCleaned, deduped, normalized, and joined.
User createdgoldTransformersBusiness-specific transformations, consumer-ready tables.
User createddestinationsSubscribersWrite out to external systems.
Built inVisualizing Groups
The Projects view in the Tabsdata UI shows how data moves between Groups, including the number of Tables, rows, and bytes moving through each stage.
Managing Groups
The sources, default, and destinations Groups are created with every Project. These system Groups cannot be renamed or deleted.
Custom Groups can be created, renamed, and deleted within a Project.
See Create a Group, Update a Group, and Delete a Group for step-by-step instructions.