Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

Table DDL

  • alertdatasource
    create table alertdatasource_alertdatasource(uuid varchar(100), timestamp bigint, enabled bool, config varchar(100), description varchar(100), site varchar(10),datasource varchar(10));
    insert into alertdatasource_alertdatasource (uuid, timestamp, enabled, config, description, site, datasource) values("uuid-1", 0, 1,'testconfig','testdesc','testsite','testsource');
  • alertstream
    create table alertstream_alertstream(uuid varchar(100), timestamp bigint, datasource varchar(100), streamname varchar(100), desc varchar(200));
    insert into alertstream_alertstream(uuid, timestamp, datasource, streamname, desc) values("uuid-1",  0, 'testsource', "teststream", "testdesc")

 

TO-DO

  •  Support time-series based aggregation
  •  Investigate why writing performance becomes slower as records count in table increases
  •  Implement batch insert in JdbcEntityWriterImpl
  •  Implement DDL Management to generate default table schema DDL according entity definition