-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: move second-tier MVs into dbt project
- Loading branch information
1 parent
a6321a8
commit 156d734
Showing
13 changed files
with
123 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{ config( | ||
materialized='materialized_view', | ||
engine='MergeTree()', | ||
primary_key='(org, course_key, verb_id)', | ||
order_by='(org, course_key, verb_id, emission_time, actor_id, object_id, event_id)' | ||
) }} | ||
|
||
SELECT | ||
event_id, | ||
CAST(emission_time, 'DateTime') AS emission_time, | ||
actor_id, | ||
object_id, | ||
splitByString('/', course_id)[-1] AS course_key, | ||
org, | ||
verb_id, | ||
JSON_VALUE(event_str, '$.result.extensions."https://w3id.org/xapi/cmi5/result/extensions/progress"') AS progress_percent | ||
FROM {{ source('xapi', 'xapi_events_all_parsed') }} | ||
WHERE verb_id = 'http://adlnet.gov/expapi/verbs/progressed' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{{ config( | ||
materialized='materialized_view', | ||
engine='MergeTree()', | ||
primary_key='(org, course_key)', | ||
order_by='(org, course_key, emission_time, actor_id, enrollment_mode, event_id)' | ||
) }} | ||
|
||
SELECT | ||
event_id, | ||
cast(emission_time as DateTime) as emission_time, | ||
actor_id, | ||
object_id, | ||
splitByString('/', course_id)[-1] AS course_key, | ||
org, | ||
verb_id, | ||
JSON_VALUE(event_str, '$.object.definition.extensions."https://w3id.org/xapi/acrossx/extensions/type"') AS enrollment_mode | ||
FROM {{ source('xapi', 'xapi_events_all_parsed') }} | ||
WHERE verb_id IN ( | ||
'http://adlnet.gov/expapi/verbs/registered', | ||
'http://id.tincanapi.com/verb/unregistered' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{ config( | ||
materialized='materialized_view', | ||
engine='MergeTree()', | ||
primary_key='(org, course_key, verb_id)', | ||
order_by='(org, course_key, verb_id, emission_time, actor_id, object_id, event_id)' | ||
) }} | ||
|
||
SELECT | ||
event_id, | ||
CAST(emission_time, 'DateTime') AS emission_time, | ||
org, | ||
splitByString('/', course_id)[-1] AS course_key, | ||
object_id, | ||
actor_id, | ||
verb_id | ||
FROM {{ source('xapi', 'xapi_events_all_parsed') }} | ||
WHERE JSON_VALUE(event_str, '$.object.definition.type') = 'http://id.tincanapi.com/activitytype/discussion' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{{ config( | ||
materialized='materialized_view', | ||
engine='MergeTree()', | ||
primary_key='(org, course_key, verb_id)', | ||
order_by='(org, course_key, verb_id, emission_time, actor_id, object_id, scaled_score, event_id)' | ||
) }} | ||
|
||
|
||
SELECT | ||
event_id, | ||
CAST(emission_time, 'DateTime') AS emission_time, | ||
actor_id, | ||
object_id, | ||
splitByString('/', course_id)[-1] AS course_key, | ||
org, | ||
verb_id, | ||
JSON_VALUE(event_str, '$.result.score.scaled') AS scaled_score | ||
FROM {{ source('xapi', 'xapi_events_all_parsed') }} | ||
WHERE verb_id IN ('http://id.tincanapi.com/verb/earned', 'https://w3id.org/xapi/acrossx/verbs/evaluated') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{{ config( | ||
materialized='materialized_view', | ||
engine='MergeTree()', | ||
primary_key='(org, course_key, verb_id)', | ||
order_by='(org, course_key, verb_id, emission_time, actor_id, object_id, responses, success, event_id)' | ||
) }} | ||
|
||
SELECT | ||
event_id, | ||
CAST(emission_time, 'DateTime') AS emission_time, | ||
actor_id, | ||
object_id, | ||
splitByString('/', course_id)[-1] AS course_key, | ||
org, | ||
verb_id, | ||
replaceAll(replaceAll(JSON_VALUE(event_str, '$.result.response'), '\'', '\\\''), '"', '\'') AS responses, | ||
JSON_VALUE(event_str, '$.result.score.scaled') AS scaled_score, | ||
if(verb_id = 'https://w3id.org/xapi/acrossx/verbs/evaluated', CAST(JSON_VALUE(event_str, '$.result.success'), 'Bool'), false) AS success, | ||
JSON_VALUE(event_str, '$.object.definition.interactionType') AS interaction_type, | ||
if(verb_id = 'https://w3id.org/xapi/acrossx/verbs/evaluated', CAST(JSON_VALUE(event_str, '$.object.definition.extensions."http://id.tincanapi.com/extension/attempt-id"'), 'Int16'), 0) AS attempts | ||
FROM {{ source('xapi', 'xapi_events_all_parsed') }} | ||
WHERE verb_id IN ('https://w3id.org/xapi/acrossx/verbs/evaluated', 'http://adlnet.gov/expapi/verbs/passed', 'http://adlnet.gov/expapi/verbs/asked') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{{ config( | ||
materialized='materialized_view', | ||
engine='MergeTree()', | ||
primary_key='(org, course_key, verb_id)', | ||
order_by='(org, course_key, verb_id, emission_time, actor_id, video_position, event_id)' | ||
) }} | ||
|
||
SELECT | ||
event_id, | ||
CAST(emission_time, 'DateTime') AS emission_time, | ||
actor_id, | ||
object_id, | ||
splitByString('/', course_id)[-1] AS course_key, | ||
org, | ||
verb_id, | ||
ceil(CAST(coalesce(nullIf(JSON_VALUE(event_str, '$.result.extensions."https://w3id.org/xapi/video/extensions/time"'), ''), nullIf(JSON_VALUE(event_str, '$.result.extensions."https://w3id.org/xapi/video/extensions/time-from"'), ''), '0.0'), 'Decimal32(2)')) AS video_position | ||
FROM {{ source('xapi', 'xapi_events_all_parsed') }} | ||
WHERE (verb_id IN ('http://adlnet.gov/expapi/verbs/completed', 'http://adlnet.gov/expapi/verbs/initialized', 'http://adlnet.gov/expapi/verbs/terminated', 'https://w3id.org/xapi/video/verbs/paused', 'https://w3id.org/xapi/video/verbs/played', 'https://w3id.org/xapi/video/verbs/seeked')) AND (object_id LIKE '%video+block%') |