Datasetview error

Hello All,

I have a problem in the datasetview.

xibo error

This problem commes when creating more then 33 columns in the dataset.
if i delete a column the error is gone and the viewpage works!

CMS = 1.8.5 with docker install.

You are most likely hitting the MySQL byte limit for columns (strings are created as text, which will be consuming a lot of bytes).

There isn’t anything we can do about this i’m afraid. How many columns do you need?

You could try setting non-string datatypes where appropriate

That is a problem in my situation. I Need like 50 columns with text value (i use the list content option).
Is there any adjustment i can make to the sql database (change to blob?) or any setting i can tweak?

You could manually edit the column datatypes in the database, from text to a smaller varchar as required. We create a ā€œrealised tableā€ to manage datasets with the name dataset_<datasetid>.

Assuming that you don’t change your column name or datatype after making your manual tweaks, that column shouldn’t be touched.

do i get problems with xibo update’s if i change this manually?
can i change the byte limit to a higher value?

You can’t change the byte limit and yes you might get problems with updates in the future (although they would have to be pretty extreme).

We document all changes in each release in GitHub, so you could be confident that you’d see if there were any changes to DataSet’s before you upgraded.

how can this problem happen if the dataset is empty (only columns created)?

I’m really not sure to be honest - you can read about it here: http://sforsuresh.in/maximum-number-of-columns-per-table-mysql/

I guess it has to allocate certain byte space for the table definition, or something like that.

Change of the type didn’t helpt. only deleting columns.

just to make sure; the log file states :

WEB GET INFO /dataset/data/view/9 Request stats: { ā€œdefaultā€: { ā€œselectā€: 9 }, ā€œlogā€: { ā€œinsertā€: 4 }, ā€œlengthā€: 0.08197689056396484, ā€œmemoryUsageā€: 8344104, ā€œpeakMemoryUsageā€: 8503712 }.

Those are just stats for the entire web request, written out for info and debugging purposes.

You’d probably have to change the column types of nearly all of them from TEXT to VARCHAR(20) or whatever length you want.

I’m not sure what else to suggest - aside from the 65k byte limit I think you should be able to have 4000 columns in MySQL.

is it possible the error comes from loading another table
like ā€œdatasetcolumnā€? (which holds the values for the xibodataset column-name)

i tried to change the complete dataset to varchar(10) error is still there.
It is strange that the error is there when there is no data inside the dataset table.

seems the error is coming from :

Failed to load resource: the server responded with a status of 414 (Request-URI Too Long)

Oh really - well I do apologise!! It isn’t what I thought at all then.

Unfortunately that problem might be even harder to fix - its the Data Table sending its filtering and sorting options back to the server.

I will create an issue for it and have a think about how we might solve it.

Hello Dan,

not good news. The problem is coming with the name of the column. It is possible to create more than 33 columns (just tried it) but with very short naming. The problem is that I can not use it because more people use the Xibo system and they need to know the name of the column. A. number is not clear enough.

Hope to get this fixed soon. maybe it is possible to manually set the filter option from the dataset view to disable for some of the columns? this will make the url shorter.

I can appreciate that - I don’t think we envisaged anyone using it with quite so many columns!

We will do our best to get it fixed, but there will probably be some trade off, like not being able to sort the columns.

I think what needs to happen is that this code here:

returns something like:

var data = {};
data.draw = dataToSend.draw;
data.length = dataToSend.length;
data.start = dataToSend.start;
data.order = dataToSend.order;
data.columns = [];
$.extend(data, $("#datasets").closest(".XiboGrid").find(".FilterDiv form").serializeObject());
return data;

i don’t have any program skills but is it possible to add a variable option when you create new column like. :
add filter to datasetview?

Yeah absolutely that is possible - I was just looking to give you a short term workaround. No problem at all if its not something you are comfortable hacking around with.

We’ve got it logged now and will fix asap - workaround at least in the next release.

thanks for the feedback! I’m starting to use the dataset with 60 client’s. Layout is ready and
I should go live next week Wednesday. Do you think you manage that? :slight_smile::smile::wink:

1 Like

Received the update and the datasetview works after ticking of the show filter option but a new error popups :

DataTables warning: table id=datasets - Requested unknown parameter ā€˜USB 3.0’ for row 0. For more information about this error, please see http://datatables.net/tn/4

tried to copy to new dataset, same error (empty dataset)
tried to remove the column with the name from the error ā€œusb 3.0ā€ but the
error comes again with the name from the next column.

checked with phpmyadmin but there is no row0 in the dataset?

data is viewable en editable in the dataset but the layout does not load the dataset.

got it. you can’t use a ā€œ.ā€ in the column name.
thanks again for the update!