Hi Guys,
I created a brand new directory for my dbfarm yesterday and as you can see everything was fine for 24 hours then my merovingian.log shows an error.
My Compile options are:
./configure --libdir=/usr/lib64 --prefix=/usr --sysconfdir=/etc --localstatedir=/var --disable-assert \
--disable-testing --enable-optimize --enable-rintegration --enable-jsonstore
http://pastebin.com/qAebcMhp
I'm currently only inserting to one table.
DROP TABLE "threatmonitor".http_traffic_json;
CREATE TABLE "threatmonitor".http_traffic_json (
id INT GENERATED ALWAYS AS
IDENTITY (
START WITH 0 INCREMENT BY 1
NO MINVALUE NO MAXVALUE
CACHE 2 CYCLE
) primary key,
guid char(36),
recv_date date,
recv_time time,
json_data JSON
);
Typical insert
INSERT INTO http_traffic_json (recv_time,recv_date,guid,json_data) VALUES (NOW(), NOW(), '1f248d6e-ed15-2a3e-a08f-96536ed925d0', '{"http":{"host":"ad.sxp
.
smartclip.net","connection":"keep-alive","cachecontrol":"max-age=0","accept":"image/webp,*/*;q=0.8","useragent":"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/4
te, sdch","acceptlanguage":"en-GB,en-US;q=0.8,en;q=0.6","cookie":"ommited"}}');
I will look more at this tomorrow and try and reproduce.
Regards,
Brian Hood