Исключение NonConstantMemoryUsage - PullRequest
2 голосов
/ 19 января 2012

Я выполнял тесты с включенным MeasureMemory и получал исключение "NonConstantMemoryUsage".

Я не модифицировал повторы, как это было предложено в сообщении об ошибке. Чего мне не хватает?

[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 16 elements with size 48 bytes 
[caliper] allocating char array with 16 elements with size 48 bytes 
[caliper] allocating java/lang/String with size 32 bytes  
[caliper] allocating char array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 16 elements with size 48 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 16 elements with size 48 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 34 elements with size 88 bytes 
[caliper] allocating char array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 16 elements with size 48 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 16 elements with size 48 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 70 elements with size 160 bytes 
[caliper] allocating char array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating java/lang/String with size 32 bytes 
[caliper] allocating char array with 142 elements with size 304 bytes 
[caliper] allocating char array with 74 elements with size 168 bytes 
[caliper] allocating java/lang/String with size 32 bytes

[caliper] allocating org/apache/commons/collections/map/AbstractReferenceMap$WeakRef with size 32 bytes 
[caliper] allocating org/apache/commons/collections/map/AbstractReferenceMap$ReferenceEntry with size 32 bytes 
[caliper] allocating java/lang/Object array with 0 elements with size 16 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating org/joda/time/DateTime with size 24 bytes 
[caliper] allocating org/hibernate/util/IdentityMap$IdentityKey with size 16 bytes 
[caliper] allocating org/hibernate/event/LoadEvent with size 40 bytes 
[caliper] allocating org/hibernate/engine/EntityKey with size 48 bytes 
[caliper] allocating org/hibernate/event/LoadEvent with size 40 bytes 
[caliper] allocating org/hibernate/engine/EntityKey with size 48 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] allocating java/lang/Object array with 1 elements with size 24 bytes 
[caliper] ...more allocations... 
[caliper] [done measured section] 
[caliper] 482 instance(s) allocated per rep 
[caliper] 0 out of thread instance(s) allocated in 1 reps 
[caliper] [starting measured section] 
[caliper] see first run for list of allocations 
[caliper] [done measured section] 
[caliper] 2966 instance(s) allocated per rep 
[caliper] 0 out of thread instance(s) allocated in 2 reps 

Ошибка: не все повторения внутреннего цикла распределяются одинаковое количество раз! Цикл повторений должен использовать постоянное количество распределений. Вы используете значение повторений внутри цикла?

Пока что я прокомментировал код в AllocationMeasurer, который выбрасывал NonConstantMemoryUsage (не уверен, что это хорошая идея!), Чтобы я мог продолжить дальше. Теперь я получаю отрицательное распределение байтов.

0% Scenario{vm=java, trial=0, benchmark=GetCompleteUserInfoByEmail, length=1, trials=5, memory=-Xmx1024M} 5017892000.00 ns; σ=18238565.40 ns @ 3 trials, allocated -45356 instances for a total of -2873264B
50% Scenario{vm=java, trial=0, benchmark=GetUserByEmail, length=10, trials=5, memory=-Xmx1024M} 5044517000.00 ns; σ=25651666.81 ns @ 3 trials, allocated -45816 instances for a total of -2873264B

length instances B s linear runtime <br/> 1 -45356.000 -2873264.000 5.02 ============================= <br/> 10 -45816.000 -2873264.000 5.04 ==============================

vm: java
пробная версия: 0
тест: GetCompleteUserInfoByEmail
испытания: 5
память: -Xmx1024M

...