We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sample code (this code sample is not ksql-ready, it needs to be adapted):
select hour, count(distinct(user_id)) as viewers from video_activity group by hour order by hour
select hour, video_id, count(*) as views from user_activity where type = 'play' group by video_id, hour order by hour
select video_id, type, count(*) from user_activity where type = 'stop' or type = 'pause' group by video_id, type
Idea: Maybe flag the videos that aren't being watched to the end?
Inspiration: https://databricks.com/notebooks/QoS/index.html#03.operational_dashboard.html
The text was updated successfully, but these errors were encountered:
krisajenkins
No branches or pull requests
Sample code (this code sample is not ksql-ready, it needs to be adapted):
Idea: Maybe flag the videos that aren't being watched to the end?
Inspiration: https://databricks.com/notebooks/QoS/index.html#03.operational_dashboard.html
The text was updated successfully, but these errors were encountered: