diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-13 15:14:50 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-12-13 16:07:36 +0300 |
commit | 5cbdc6f2bc811da3e6104da774a30b25a54a8708 (patch) | |
tree | 68f3ddb0d928332e5ea73853f40f4670f4babb65 /yql/essentials/tests/s-expressions/suites/InMem/Hopping.yqls | |
parent | 1402a032649d20ffb80a541f706afcd31cd897fa (diff) | |
download | ydb-5cbdc6f2bc811da3e6104da774a30b25a54a8708.tar.gz |
Intermediate changes
commit_hash:27af5f8a0a7836d78ffdc205213f07f79dd9f7ad
Diffstat (limited to 'yql/essentials/tests/s-expressions/suites/InMem/Hopping.yqls')
-rw-r--r-- | yql/essentials/tests/s-expressions/suites/InMem/Hopping.yqls | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/yql/essentials/tests/s-expressions/suites/InMem/Hopping.yqls b/yql/essentials/tests/s-expressions/suites/InMem/Hopping.yqls new file mode 100644 index 0000000000..0ae29c3594 --- /dev/null +++ b/yql/essentials/tests/s-expressions/suites/InMem/Hopping.yqls @@ -0,0 +1,51 @@ +( +(let config (DataSource 'config)) +(let world (Configure! world config 'PureDataSource 'yt)) + +(let timeExtractor (lambda '(item) (Just (Member item 'time)))) + +(let init (lambda '(item) + (AsStruct + '('sum (Member item 'sum)) + '('max (Member item 'max)) +))) +(let update (lambda '(item state) + (AsStruct + '('sum (AggrAdd (Member item 'sum) (Member state 'sum))) + '('max (AggrMax (Member item 'max) (Member state 'max))) +))) +(let merge (lambda '(state1 state2) + (AsStruct + '('sum (AggrAdd (Member state1 'sum) (Member state2 'sum))) + '('max (AggrMax (Member state1 'max) (Member state2 'max))) +))) +(let save (lambda '(state) state)) +(let load (lambda '(state) state)) +(let finish (lambda '(state time) (AddMember state '_yql_time time))) + +(let stream (Iterator (AsList +(AsStruct '('time (Timestamp '1)) '('sum (Uint32 '2)) '('max (String 'f))) +(AsStruct '('time (Timestamp '2)) '('sum (Uint32 '3)) '('max (String 'a))) +(AsStruct '('time (Timestamp '15)) '('sum (Uint32 '4)) '('max (String 'e))) +(AsStruct '('time (Timestamp '23)) '('sum (Uint32 '6)) '('max (String 'h))) +(AsStruct '('time (Timestamp '24)) '('sum (Uint32 '5)) '('max (String 'd))) +(AsStruct '('time (Timestamp '25)) '('sum (Uint32 '7)) '('max (String 's))) +(AsStruct '('time (Timestamp '40)) '('sum (Uint32 '2)) '('max (String 'j))) +(AsStruct '('time (Timestamp '47)) '('sum (Uint32 '1)) '('max (String 't))) +(AsStruct '('time (Timestamp '51)) '('sum (Uint32 '6)) '('max (String 'b))) +(AsStruct '('time (Timestamp '59)) '('sum (Uint32 '2)) '('max (String 'c))) +(AsStruct '('time (Timestamp '85)) '('sum (Uint32 '8)) '('max (String 'g))) +(AsStruct '('time (Timestamp '55)) '('sum (Uint32 '1000)) '('max (String 'z))) +(AsStruct '('time (Timestamp '200)) '('sum (Uint32 '0)) '('max (String 'a))) +))) + +# row with time 55 should be excluded from aggregation due to delay + +(let itemType (StructType '('time (DataType 'Timestamp)) '('sum (DataType 'Uint32)) '('max (DataType 'String)))) +(let res (HoppingCore stream timeExtractor (Interval '10) (Interval '30) (Interval '20) init update save load merge finish)) + +(let res_sink (DataSink 'result)) +(let world (Write! world res_sink (Key) (Collect res) '('('type)))) +(let world (Commit! world res_sink)) +(return world) +) |