We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe98382 commit a62eff8Copy full SHA for a62eff8
docs/proton.md
@@ -50,7 +50,9 @@ You can also run the following SQL to create a stream of random data:
50
-- Create a stream with random data
51
CREATE RANDOM STREAM devices(
52
device string default 'device'||to_string(rand()%4),
53
- temperature float default rand()%1000/10);
+ temperature float default rand()%1000/10)
54
+ SETTINGS eps=10000 -- 10,000 events per second. Default to 1000
55
+;
56
57
-- Run the streaming SQL
58
SELECT device, count(*), min(temperature), max(temperature)
0 commit comments