Update criteo.md

The new spec states that MergeTree does not take any parameters. Updating the doc to reflect this.
This commit is contained in:
Dalitso Banda 2022-09-29 20:17:42 -07:00 committed by GitHub
parent 105b210126
commit b7d65f7a2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,7 +65,10 @@ CREATE TABLE criteo
icat24 UInt32,
icat25 UInt32,
icat26 UInt32
) ENGINE = MergeTree(date, intHash32(icat1), (date, intHash32(icat1)), 8192)
) ENGINE = MergeTree()
PARTITION BY toYYYYMM(date)
ORDER BY (date, intHash32(icat1))
SETTINGS index_granularity = 8192
```
Transform data from the raw log and put it in the second table: