@@ -84,7 +84,12 @@ else if (jvmMaxMemory > 512 * OFileUtils.MEGABYTE)
84
84
}
85
85
86
86
private void configureDefaultDiskCacheSize () {
87
- final long osMemory = ONative .instance ().getMemoryLimit (true );
87
+ final ONative .MemoryLimitResult osMemory = ONative .instance ().getMemoryLimit (true );
88
+ if (osMemory == null ) {
89
+ OLogManager .instance ().warnNoDb (this , "Can not determine amount of memory installed on machine, default values will be used" );
90
+ return ;
91
+ }
92
+
88
93
final long jvmMaxMemory = OMemory .getCappedRuntimeMaxMemory (2L * 1024 * 1024 * 1024 /* 2GB */ );
89
94
final long maxDirectMemory = OMemory .getConfiguredMaxDirectMemory ();
90
95
@@ -94,7 +99,7 @@ private void configureDefaultDiskCacheSize() {
94
99
OLogManager .instance ().infoNoDb (this ,
95
100
"OrientDB auto-config DISKCACHE=%,dMB (heap=%,dMB direct=%,dMB os=%,dMB), assuming maximum direct memory size "
96
101
+ "equals to maximum JVM heap size" , diskCacheInMB , jvmMaxMemory / 1024 / 1024 , jvmMaxMemory / 1024 / 1024 ,
97
- osMemory / 1024 / 1024 );
102
+ osMemory . memoryLimit / 1024 / 1024 );
98
103
OGlobalConfiguration .DISK_CACHE_SIZE .setValue (diskCacheInMB );
99
104
OGlobalConfiguration .MEMORY_CHUNK_SIZE
100
105
.setValue (Math .min (diskCacheInMB * 1024 * 1024 , OGlobalConfiguration .MEMORY_CHUNK_SIZE .getValueAsLong ()));
@@ -103,13 +108,20 @@ private void configureDefaultDiskCacheSize() {
103
108
104
109
final long maxDirectMemoryInMB = maxDirectMemory / 1024 / 1024 ;
105
110
106
- // DISK-CACHE IN MB = OS MEMORY - MAX HEAP JVM MEMORY - 2 GB
107
- long diskCacheInMB = (osMemory - jvmMaxMemory ) / (1024 * 1024 ) - 2 * 1024 ;
111
+ long diskCacheInMB ;
112
+ if (osMemory .insideContainer ) {
113
+ //DISK-CACHE IN MB = OS MEMORY - MAX HEAP JVM MEMORY - 256 MB
114
+ diskCacheInMB = (osMemory .memoryLimit - jvmMaxMemory ) / (1024 * 1024 ) - 256 ;
115
+ } else {
116
+ // DISK-CACHE IN MB = OS MEMORY - MAX HEAP JVM MEMORY - 2 GB
117
+ diskCacheInMB = (osMemory .memoryLimit - jvmMaxMemory ) / (1024 * 1024 ) - 2 * 1024 ;
118
+ }
119
+
108
120
if (diskCacheInMB > 0 ) {
109
121
diskCacheInMB = Math .min (diskCacheInMB , maxDirectMemoryInMB );
110
122
OLogManager .instance ()
111
123
.infoNoDb (this , "OrientDB auto-config DISKCACHE=%,dMB (heap=%,dMB direct=%,dMB os=%,dMB)" , diskCacheInMB ,
112
- jvmMaxMemory / 1024 / 1024 , maxDirectMemoryInMB , osMemory / 1024 / 1024 );
124
+ jvmMaxMemory / 1024 / 1024 , maxDirectMemoryInMB , osMemory . memoryLimit / 1024 / 1024 );
113
125
114
126
OGlobalConfiguration .DISK_CACHE_SIZE .setValue (diskCacheInMB );
115
127
OGlobalConfiguration .MEMORY_CHUNK_SIZE
@@ -119,14 +131,14 @@ private void configureDefaultDiskCacheSize() {
119
131
diskCacheInMB = Math .min (O2QCache .MIN_CACHE_SIZE , maxDirectMemoryInMB );
120
132
OLogManager .instance ().warnNoDb (this ,
121
133
"Not enough physical memory available for DISKCACHE: %,dMB (heap=%,dMB direct=%,dMB). Set lower Maximum Heap (-Xmx "
122
- + "setting on JVM) and restart OrientDB. Now running with DISKCACHE=" + diskCacheInMB + "MB" , osMemory / 1024 / 1024 ,
123
- jvmMaxMemory / 1024 / 1024 , maxDirectMemoryInMB );
134
+ + "setting on JVM) and restart OrientDB. Now running with DISKCACHE=" + diskCacheInMB + "MB" ,
135
+ osMemory . memoryLimit / 1024 / 1024 , jvmMaxMemory / 1024 / 1024 , maxDirectMemoryInMB );
124
136
OGlobalConfiguration .DISK_CACHE_SIZE .setValue (diskCacheInMB );
125
137
OGlobalConfiguration .MEMORY_CHUNK_SIZE
126
138
.setValue (Math .min (diskCacheInMB * 1024 * 1024 , OGlobalConfiguration .MEMORY_CHUNK_SIZE .getValueAsLong ()));
127
139
128
140
OLogManager .instance ().infoNoDb (this , "OrientDB config DISKCACHE=%,dMB (heap=%,dMB direct=%,dMB os=%,dMB)" , diskCacheInMB ,
129
- jvmMaxMemory / 1024 / 1024 , maxDirectMemoryInMB , osMemory / 1024 / 1024 );
141
+ jvmMaxMemory / 1024 / 1024 , maxDirectMemoryInMB , osMemory . memoryLimit / 1024 / 1024 );
130
142
}
131
143
}
132
144
}
0 commit comments