Hi Neal,
Thank you very much for your replay.
I added "Keep all" and it is working fine.
I have recently installed ESP 5.1 SP03 , may be 10 days back.
My CCL code is as follows:
REATE LOG STORE LogStore PROPERTIES FILENAME = 'mylog.log' ,
MAXFILESIZE = 8 ,
SYNC = FALSE ,
SWEEPAMOUNT = 20 ,
RESERVEPCT = 20 ,
CKCOUNT = 10000 ;
CREATE INPUT WINDOW Input_window
SCHEMA ( id integer , batteryId string , storename string , lifeleft integer , timestampCol date )
PRIMARY KEY ( id )
KEEP 10 SEC ;
CREATE OUTPUT WINDOW Log_Store_Window
SCHEMA ( id integer , batteryId string , storename string , lifeleft integer , timestampCol date )
PRIMARY KEY ( id )
STORE LogStore
KEEP ALL ROWS AS
SELECT * FROM Input_window ;
I added "KEEP 10 SEC" to Input_window and "KEEP ALL" to Log_Store_Window.
My query is whether its works fine or still i may get memory leak in your program.
Thanks,
Shashi