D toc
Metadata is data about your data. For example, you might decide that one or more of the following types of information about your dataset should be tracked:
- Source system(s)
Source filepath and filename
- Source creation date
- Date of import
- Date of wrangling
- Name of person who performed the wrangling
This section provides some methods for how to insert metadata into your dataset.
Insert filepath
For file-based data sources, you can insert the path to the source file in your dataset using the $filepath
reference.
Tip |
---|
Tip: Filepath information can be lost when multi-dataset operations, such as unions and joins, are performed on your dataset. These steps should be added very early in your recipe. |
In your recipe, insert the following transformation:
D trans | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
For more information, see Source Metadata References.
Insert source row number
You can insert the row number in the source file from which rows in your dataset are sourced, using the $sourcerownumber
reference.
Tip |
---|
Tip: Source row number information can be lost when multi-dataset operations, such as unions and joins, are performed on your dataset. These steps should be added very early in your recipe. |
In your recipe, insert the following transformation:
D trans | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
For more information, see Source Metadata References.
Tip |
---|
Tip: You can derive the current row number in your dataset. For more information, see ROWNUMBER Function. |
Insert a single metadata column
The following example describes how to insert a single column of metadata. In this case, the full path to the source is inserted as a new column in the dataset.
Steps:
- In the Dataset page, locate the imported dataset that is the source for your recipe. Click the Imported filter to show only the imported datasets.
- For the imported dataset, click Details.
In the Dataset Details page, select the entire value for the Location, which is the storage location of the source.
Tip Tip: If the full path of the dataset is too long for screen display, be sure to include the ellipsis (...) at the end of the Location value.
Copy the value. Paste the value into a text editor. You should see the full path, like the following:
Code Block <root_dir>/uploads/1/2580298d-3477-4907-bfa7-f71978eace04/SF Restaurants - businesses.csv
- Load the dataset in the Transformer page.
Specify the following transformation:
D trans p03Value datasetPath Type step p01Name Formula type p01Value Single row formula p02Name Formula p02Value '<root_dir>\/uploads\/1\/2580298d-3477-4907-bfa7-f71978eace04\/SF Restaurants - businesses.csv' p03Name New column name SearchTerm New formula
Insert multiple columns of metadata
You might need to track more fields of dataset information. While you might be able to perform these kinds of individual inserts, it might be easier to build this information from a separate file.
Info |
---|
NOTE: This method uses the FILL function, which should be limited to smaller datasets when applied with a single key. Otherwise, there might be performance impacts when running the job against the full dataset. |
Tip |
---|
Tip: You can perform a similar merging of datasets using the Join tool. See Join Panel. |
For example, you want to track the following fields as metadata:
- source_system
- source_author
- source_date_create
You could create a CSV file that looks like the following:
Code Block |
---|
source_system,source_author,source_date_create Excel,Joe Guy,12/9/15 |
In this case, the column headers are in the first line, and the values for each column are in the second line.
Steps:
- Use your CSV file as the source for a new dataset within the flow containing the associated dataset.
- In the data grid, make sure that the first line of data is treated as the header. If not, add a
header
transform to your recipe. - Open the other (source) dataset in the Transformer page.
In the recipe panel of the Transformer page, add a new step. In the Transformation textbox, enter
union
.- Create a union:
- Include all columns from both datasets.
- Configure the step to perform the union by name, instead of by position.
- See Union Page.
- Add this step to your recipe.
- You should see one row in the union recipe that contains the new data.
Sort your data by a key value (e.g.
business_id
).Determine an appropriate grouping parameter. This step is necessary to simplify the filling process when the job runs at scale. Ideally, you should choose a grouping column that contains a relative few number of values in it (e.g.
region
).Fill values in the data rows with metadata column values. For each metadata column, add the following transformation, done here for the
source_system
column of metadata.D trans p03Value business_id Type step p01Name Formula p01Value FILL(source_system) p02Name Group by p02Value region p03Name Order by SearchTerm Window Repeat the above step for each metadata column you want to insert.
- Delete the source metadata columns.
- Rename the
window
columns to use a more appropriate name. - Delete the row containing the original metadata values.