-
Notifications
You must be signed in to change notification settings - Fork 696
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memory optimization (~30% less) #633
base: master
Are you sure you want to change the base?
Conversation
~ 10% better performance
~ 24% more better performance on modern rubies
That looks very promising! Any memory relief is highly appreciated since this gem uses a lot of memory and causes memory issues when generating large excel files. Thanks ! |
@korun do you perhaps have any more tips/hints to reduce memory usage ? I am getting a lot of memory quota exceeded hits on Heroku on my project and face a lot of issues |
@gdimitris, I think it can be implemented some "stream-mode", so axlsx will can write prepared data direct in temp file row-by-row. But it forbid some exists features, such as modifying row height, or styles, etc. after |
@korun I am a bit confused, so you mean that streaming the rows would break existing styles in cells ? Or that they have to be applied differently ? |
@gdimitris, for example, now we can do something like: cells = sheet.add_row(
['Total', "Count: #{count}", *Array.new(6), "=SUM(I#{i}:I#{i + count})", nil, nil],
style: row_table_cell_style(sheet)
)
cells[0].style = row_text_center_table_style(sheet)
cells[8].style = row_currency_style(sheet) In "stream-mode" we have to do all preparations before row flush to file: # flush to file enabled
cells = sheet.add_row(
['Total', "Count: #{count}", *Array.new(6), "=SUM(I#{i}:I#{i + count})", nil, nil],
style: [
row_text_center_table_style(sheet),
*Array.new(7, row_table_cell_style(sheet)]),
row_currency_style(sheet)
]
)
# at this line, all is good
# But, if we call:
cells[0].style = row_text_center_table_style(sheet)
# it raise some error, like "Cannot access to flushed row in stream-mode" |
@korun Ok got it, thanks! |
@korun did you notice the "movement" that got started at https://github.com/caxlsx/caxlsx ? Can you submit the PR there as well, that could spike some big interest there :) |
@klyonrad korun doesn't seem active but I can do this I think later in the day. It seems a very promising fix. |
Turns out it was easier than I thought 😄 |
Hi, this is tiny optimization without complete refactoring or something.
The main idea: decrease count of allocated objects (mostly strings) by some ruby tricks and freezing.
Modern ruby versions allow not only just prevent strings from mutation with
freeze
, but also allocate it only once:If we need to support old ruby versions -- I suggest to consider it in a separate request.
Some measurements here: https://gist.github.com/korun/1f22ee8505122f2f307fc83dee3b9974
Refs #276