0

I have a case where i getting packets from a device and inserting that data in a MySQL table.There are 4000 devices and from each device i am getting packets in every two minutes.Each packet data need to monitor and do some database operation.So i am planning to use drools for monitoring packets and applying different rules.My doubt is drools is capable of handling this much huge data?

vmb
  • 2,878
  • 15
  • 60
  • 90

1 Answers1

0

I suggest you can use jpcap to capture packets.

JpCap used to capture network packets. You have to unzip it and it is a DLL file and you should paste it in windows/system32.

Ameer
  • 600
  • 1
  • 12
  • 27
  • 1
    i think he's talking about processing the captured data, not the capturing itself – radai Mar 21 '13 at 06:50
  • @radai..u are correct..i am asking about processing data..not capturing – vmb Mar 21 '13 at 06:54
  • @vmb JPCAP A tool for real-time network traffic capture and analysis An API for developing packet capture applications in Java – Ameer Mar 21 '13 at 06:56
  • i already using another framework for inserting data and that works well – vmb Mar 21 '13 at 06:58