I'm using a JSONB field in my Postgresql database to store the following document. I own thousands of documents. I need to create reports with this data, but the search is very slow.
If I need to create a report stating the new users of a month, I need to go through the entire document comparing if the user is in one month and not in another.
Message document:
[{"recipient":1,"user":4,"created_at":"2016-11-10","content":"Duis aliquam convallis nunc.","is_sender_user":true},
{"recipient":1,"user":18,"created_at":"2016-12-10","content":"Proin eu mi.","is_sender_user":false},
{"recipient":1,"user":4,"created_at":"2016-11-20","content":"In hac habitasse platea dictumstm.","is_sender_user":true},
{"recipient":1,"user":20,"created_at":"2016-12-14","content":"Donec ut dolor.","is_sender_user":true},
{"recipient":1,"user":13,"created_at":"2016-12-06","content":"Nulla mollis molestie lorem. Quisque ut erat. Curabitur gravida nisi at nibh.","is_sender_user":true}]
It would be better to create a User table and create a JSONB messages field to store your messages. Or the way it is I can create my report using JSONB queries?
As Samuil Petrov mentioned you can create index on jsonb field, i suggest creating index on month part of
created_at
anduser
with this the query
will give you the monthly users from an index scan
test data generated with