Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions odpf/assets/table.proto
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,19 @@ message TableProfile {
string partition_key = 2;

string partition_value = 3;

int64 usage_count = 4;

repeated Join joins = 5;

repeated string filters = 6;
}

// Join is the metric of which are other tables that are joined with this table
message Join {
string urn = 1;

int64 count = 2;

repeated string conditions = 3;
}