confluentinc / confluentinc/examples
Examples ccloud : ksqlDB queries : you now need to project key columns in value schema
Open
- Dominant language
- Java
- Stars
- 2.1k
- Forks
- 1.1k
- PR merge metrics
- No merged PRs in 30d
Description
The pageviews_regions query should now be something like this
CREATE TABLE pageviews_regions AS SELECT gender, regionid , AS_VALUE(gender) AS v_gender, AS_VALUE(regionid) AS v_regionid, COUNT(*) AS numusers FROM pageviews_female WINDOW TUMBLING (size 30 second) GROUP BY gender, regionid HAVING COUNT(*) > 1;
else the gender and regionid columns do not appear in resulting table
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.