Sha256: 658ad428f3930d057cad2b3bd2773958b5e2d5cf7ef799e554b7a8fea0579bb2

Contents?: true

Size: 1.16 KB

Versions: 52

Compression:

Stored size: 1.16 KB

Contents

require 'pp'

require 'norikra/query'
require 'norikra/output_pool'
require 'norikra/engine'

pool = Norikra::OutputPool.new

query1 = Norikra::Query.new(
  :name => 'OrderEvent over 150 price counts per 10secs',
  :tablename => 'OrderEvent',
  :expression => 'select count(*) AS cnt from OrderEvent.win:time_batch(10 seconds) where price > 150'
)
query2 = Norikra::Query.new(
  :name => 'OrderEvent events with 2 or more count',
  :tablename => 'OrderEvent',
  :expression => 'select * from OrderEvent where count > 1'
)
engine = Norikra::Engine.new(pool)

engine.register(query1)
engine.register(query2)

flag = true

thread = Thread.new do
  while flag
    sleep 1
    results = pool.pop('OrderEvent over 150 price counts per 10secs')
    pp(results) if results.size > 0
    results = pool.pop('OrderEvent events with 2 or more count')
    pp(results) if results.size > 0
  end
end

t = Time.now + 35
while Time.now < t
  3.times do
    engine.send('OrderEvent', [{"itemName"=>"test","price"=>150,"count"=>1}, {"itemName"=>"test","price"=>200,"count"=>1}])
    sleep 3
  end
  engine.send('OrderEvent', [{"itemName"=>"test2","price"=>300,"count"=>'ichi'}])
end

flag = false
thread.join

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
norikra-1.5.1-java junks/type_confliction.rb
norikra-1.5.0-java junks/type_confliction.rb
norikra-1.4.0-java junks/type_confliction.rb
norikra-1.3.1-java junks/type_confliction.rb
norikra-1.3.0-java junks/type_confliction.rb
norikra-1.3.0.beta.1-java junks/type_confliction.rb
norikra-1.2.2-java junks/type_confliction.rb
norikra-1.2.1-java junks/type_confliction.rb
norikra-1.2.0-java junks/type_confliction.rb
norikra-1.1.2-java junks/type_confliction.rb
norikra-1.1.1-java junks/type_confliction.rb
norikra-1.1.0-java junks/type_confliction.rb
norikra-1.0.8-java junks/type_confliction.rb
norikra-1.0.7-java junks/type_confliction.rb
norikra-1.0.6-java junks/type_confliction.rb
norikra-1.0.5-java junks/type_confliction.rb
norikra-1.0.4-java junks/type_confliction.rb
norikra-1.0.3-java junks/type_confliction.rb
norikra-1.0.2-java junks/type_confliction.rb
norikra-1.0.1-java junks/type_confliction.rb