Node-red-dashboard-2-table-tabulator problems when loading data

Hello,
I'm facing problems when loading data (around 1150 records) in the table. The data are not loaded and I get this popup in the top right of my dashboard. When I reduce the number of records (135 ) I do'nt get problem. Is there a limitation ?


Could you suggest me the best way (code) to upload data from a Msql DB in the table ?

Regards

Jean-Rem

This is due to the fact that the dashboard msg size exceeds the default limit, which causes the socket to reset and disconnect.
The way to solve this is by increasing the size limit in settings.js. For example, in order to increase the msg size to 100 MB, add the following:

	dashboard: {
		maxHttpBufferSize: 1e8 // size in bytes, example: 100 MB
	},
2 Likes

Hello,

That was the problem. Thanks for your reply :+1:

Regards

Jean-Rem

Ah - that explains why I am seeing random reconnects! Will try adjusting the buffer.