Skip to content

Commit a62eff8

Browse files
committed
mention the default random stream eps is 1000 in proton.md
1 parent fe98382 commit a62eff8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/proton.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ You can also run the following SQL to create a stream of random data:
5050
-- Create a stream with random data
5151
CREATE RANDOM STREAM devices(
5252
device string default 'device'||to_string(rand()%4),
53-
temperature float default rand()%1000/10);
53+
temperature float default rand()%1000/10)
54+
SETTINGS eps=10000 -- 10,000 events per second. Default to 1000
55+
;
5456

5557
-- Run the streaming SQL
5658
SELECT device, count(*), min(temperature), max(temperature)

0 commit comments

Comments
 (0)