Considerations when you are importing large files (CSV/Excel)
Tabulizer does not impose any limitation on how large your CSV file can be, but your web server settings may do that. More specifically, there is the PHP memory limit and the PHP max execution time that indirectly put a limit on how large the CSV/Excel file can be. In order to resolve server side memory and time execution limitations the proper and easiest way is to increase these limits via php.ini or ask your web server admin/support to do that for you.
Using the max_execution_time directive
By default, the maximum execution time for PHP scripts is set to 30 seconds. If a script runs for longer than 30 seconds, PHP stops the script and reports an error. You can control the amount of time PHP allows scripts to run by changing the max_execution_time directive in your php.ini file.
To change the maximum execution time, use a text editor to modify the max_execution_timedirective in your php.ini file. For example, to set the maximum execution time to 180 seconds, use the following setting:
max_execution_time = 180
Using the memory_limit directive
By default, a PHP script can allocate up to 128 megabytes of memory.
To change this limit, use a text editor to modify the memory_limit directive in your php.ini file. For example, to allow scripts to allocate a maximum amount of 512 megabytes of memory, use the following setting:
memory_limit = 512M
Borwser (Client-Side) Considerations
There also another limit on the browser on how many DOM nodes can handle. This translates into increased page loading times and even blank pages. For this case, Tabulizer has a experimental feature called "server side" that allows you to load only the part of the table that is need and not all of the table data. For this to work there are some reasonable requirements:
- The ruleset you are using has a pagination rule
- The data source cache is enabled.
This feature is available when you display the table dynamically, i.e. via a data source and it should be used only when the table rows are too many.
You can have a look at the following tutorial on how to display really large tables that describes how to use this feature:
http://www.tabulizer.com/index.php/support-menu/tabulizer-tips/91-server-side-processing-for-large-tables