Fix O(n²) performance in WrapperProperties$OrderedProperties#12542
Draft
gnodet wants to merge 1 commit into
Draft
Fix O(n²) performance in WrapperProperties$OrderedProperties#12542gnodet wants to merge 1 commit into
gnodet wants to merge 1 commit into
Conversation
Replace CopyOnWriteArrayList with LinkedHashMap for key ordering in OrderedProperties. CopyOnWriteArrayList.contains() is O(n), making every put() call O(n) and putAll() O(n²). LinkedHashMap provides O(1) put/contains/remove while preserving insertion order. This also simplifies the implementation: LinkedHashMap's entrySet(), keySet(), and values() already provide ordered views, eliminating the need for custom AbstractSet inner classes. JFR profiling shows WrapperProperties consuming ~13% of CPU during 'mvn validate' on large projects (676 modules), primarily from the O(n²) putAll path triggered by keySet()/entrySet()/values() which each create a new OrderedProperties copy. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
CopyOnWriteArrayListwithLinkedHashMapfor key ordering inOrderedPropertiesCopyOnWriteArrayList.contains()is O(n), making everyput()call O(n) andputAll()O(n²)LinkedHashMapprovides O(1) put/contains/remove while preserving insertion orderKeySet/EntrySetinner classes —LinkedHashMapviews handle this nativelyJFR profiling shows
WrapperPropertiesconsuming ~13% of CPU duringmvn validateon Apache Camel (676 modules), primarily from the O(n²)putAllpath triggered bykeySet()/entrySet()/values()which each create a newOrderedPropertiescopy.Test plan
mvn test -pl compat/maven-model— all tests passmvn test -pl impl/maven-impl— 466 tests passmvn test -pl compat/maven-model-builder— 166 tests pass🤖 Generated with Claude Code