Skip to content
代码片段 群组 项目
提交 198f2a0b 编辑于 作者: Stan Hu's avatar Stan Hu
浏览文件

Use Nokogiri as the ActiveSupport XML backend

This significantly improves performance and reduces memory consumption
when parsing XML files. On a test with 124 JUnit files from a CE build,
there was about a 4x reduction in processing time.

Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/54068
上级 6494467a
No related branches found
No related tags found
无相关合并请求
---
title: Use Nokogiri as the ActiveSupport XML backend
merge_request: 23136
author:
type: performance
...@@ -158,6 +158,9 @@ class Application < Rails::Application ...@@ -158,6 +158,9 @@ class Application < Rails::Application
config.action_view.sanitized_allowed_protocols = %w(smb) config.action_view.sanitized_allowed_protocols = %w(smb)
# Nokogiri is significantly faster and uses less memory than REXML
ActiveSupport::XmlMini.backend = 'Nokogiri'
# This middleware needs to precede ActiveRecord::QueryCache and other middlewares that # This middleware needs to precede ActiveRecord::QueryCache and other middlewares that
# connect to the database. # connect to the database.
config.middleware.insert_after Rails::Rack::Logger, ::Gitlab::Middleware::BasicHealthCheck config.middleware.insert_after Rails::Rack::Logger, ::Gitlab::Middleware::BasicHealthCheck
......
...@@ -14,7 +14,7 @@ def parse!(xml_data, test_suite) ...@@ -14,7 +14,7 @@ def parse!(xml_data, test_suite)
test_case = create_test_case(test_case) test_case = create_test_case(test_case)
test_suite.add_test_case(test_case) test_suite.add_test_case(test_case)
end end
rescue REXML::ParseException rescue Nokogiri::XML::SyntaxError
raise JunitParserError, "XML parsing failed" raise JunitParserError, "XML parsing failed"
rescue rescue
raise JunitParserError, "JUnit parsing failed" raise JunitParserError, "JUnit parsing failed"
......
...@@ -9,3 +9,4 @@ ...@@ -9,3 +9,4 @@
ActiveSupport::Dependencies.autoload_paths << 'lib' ActiveSupport::Dependencies.autoload_paths << 'lib'
ActiveSupport::Dependencies.autoload_paths << 'ee/lib' ActiveSupport::Dependencies.autoload_paths << 'ee/lib'
ActiveSupport::XmlMini.backend = 'Nokogiri'
0% 加载中 .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册