Hi Andy,

I found on the server a coredump reporting insufficient memory for the JRE (see attach). It is weird, fuseki allocates a 32Gb maximum Java heap size, but it uses only 16Gb:

# java -Xmx32G -jar fuseki-server.jar --update --config=/etc/default/fuseki/config.ttl

As well *ulimit -c unlimited* didn't change anything. Do you have any idea what could restrict more memory to use?


As regards the fuseki server log, I added the file *log4j.properties *to /opt/apache-jena-fuseki-2.3.1/run, but after a fuseki restart no logs were generated (expected is a logfile like /etc/fuseki/logs/fuseki.log?). Do I have to set up anything more?

Thank you,
Sorin



Am 12.05.2016 um 23:44 schrieb Andy Seaborne:
Hi,

It's not clear to me what's happening. The server log may offer some more information. It's as if the response in truncated somehow.

You could try using curl or wget to make the request. They can also print out the HTTP headers.

 Andy



On 12/05/16 19:43, Sorin Gheorghiu wrote:
Hi,

the attempt to perform a sparql insert using *s-update* has failed with
the error:

# /opt/apache-jena-fuseki-2.3.1/bin/s-update
--service=http://localhost:3030/<dataset>/update --file update.ru

/usr/lib/ruby/1.9.1/net/protocol.rb:141:in `read_nonblock': end of file
reached (EOFError)
         from /usr/lib/ruby/1.9.1/net/protocol.rb:141:in `rbuf_fill'
         from /usr/lib/ruby/1.9.1/net/protocol.rb:122:in `readuntil'
         from /usr/lib/ruby/1.9.1/net/protocol.rb:132:in `readline'
         from /usr/lib/ruby/1.9.1/net/http.rb:2563:in `read_status_line'
         from /usr/lib/ruby/1.9.1/net/http.rb:2552:in `read_new'
         from /usr/lib/ruby/1.9.1/net/http.rb:1320:in `block in
transport_request'
         from /usr/lib/ruby/1.9.1/net/http.rb:1317:in `catch'
from /usr/lib/ruby/1.9.1/net/http.rb:1317:in `transport_request'
         from /usr/lib/ruby/1.9.1/net/http.rb:1294:in `request'
         from /opt/apache-jena-fuseki-2.3.1/bin/s-update:221:in
`response_no_body'
         from /opt/apache-jena-fuseki-2.3.1/bin/s-update:614:in
`SPARQL_update'
         from /opt/apache-jena-fuseki-2.3.1/bin/s-update:681:in
`cmd_sparql_update'
         from /opt/apache-jena-fuseki-2.3.1/bin/s-update:708:in `<main>'

The same error will occur with ruby > 2.0 (but no backtrace printed out):

/opt/apache-jena-fuseki-2.3.1/bin/s-update: end of file reached (EOFError)

Do you have any hit, please?

Thanks
Sorin

Am 04.05.2016 um 14:54 schrieb Andy Seaborne:
Hi there,

This looks like something to do with the solr setup.  I'm not very
familiar with solr, is there some configuration that affects timeouts
on connections? I don't think Jena does any timeouts itself.

    Andy

On 03/05/16 08:50, Sorin Gheorghiu wrote:
After Solr server restart, it looks like the indexes aren't corrupted.
Thus, it seems the error isn't critical and I may ignore it.

But my expectation was that the insert command will add the new
parameter to Jena TDB and not to Solr.


-------- Weitergeleitete Nachricht --------
Betreff:     Re: Error during text index
Datum:     Mon, 2 May 2016 20:05:37 +0200
Von:     Sorin Gheorghiu <[email protected]>
An:     [email protected]



Hi Andy,

after 2 attempts to insert the new SKOS variable, I got the following
error:

org.apache.jena.query.text.TextIndexException:
org.apache.solr.client.solrj.SolrServerException: IOException occured
when talking to server at: http://localhost:8983/solr/GND100316_550
...............................................................................................................................



[2016-05-02 19:23:40] Fuseki     INFO  [4] 500
org.apache.solr.client.solrj.SolrServerException: IOException occured
when talking to server at: http://localhost:8983/solr/GND100316_550
(30,147.934 s)

This occured after more than 8 hours, but it failed before the
completion.

No related Solr error was printed out in the logs in that moment, but
when I refreshed the Solr page http://localhost:8983/solr/#/~cores, then
I got:

30852656 INFO  (qtp1013423070-18) [   ] o.a.s.s.HttpSolrCall [admin]
webapp=null path=/admin/info/system params={wt=json&_=1462210386319}
status=0 QTime=1758
30854518 ERROR (qtp1013423070-20) [   ] o.a.s.h.RequestHandlerBase
org.apache.solr.common.SolrException: Error handling 'status' action
...............................................................................................................................


Caused by: java.nio.file.NoSuchFileException:
/opt/solr-5.5.0/server/solr/GND100316_550/data/index/segments_1

Indeed, there is no *segments_1* file in ../data/index/ but a different
one:

# ls -lrt /opt/solr-5.5.0/server/solr/GND100316_550/data/index/segments*
-rw-r--r-- 1 root root 937 May  2 17:42
/opt/solr-5.5.0/server/solr/GND100316_550/data/index/segments_10r

I could provide the backtrace if needed. Could you help me to understand
the root cause please?

Thank you
Sorin


Am 29.04.2016 um 12:20 schrieb Andy Seaborne:
The use of rdf:type seems to mix being a displayable label and a class
type.

Maybe adding skos:prefLabel to keep the display label is worth doing.

You can extract the fragment from a URI with:

    STRAFTER(STR(<http://example/foo#bar>), "#")'

(untested):

INSERT { ?s skos:prefLabel ?label }
WHERE {
   ?s a ?T .
   BIND ( ?label as STRAFTER(STR(?T), "#")
}


On 29/04/16 09:25, Sorin Gheorghiu wrote:
Hi Osma,

I do need the type in the text index to get faster results than using
sparql queries.

I found an analyzer which could replace the URI with the string type,
but I cannot use it as long as the non-literal are skiped.

     <fieldType name="text_type_gnd" class="solr.TextField" >
       <analyzer>
         <tokenizer class="solr.WhitespaceTokenizerFactory"/>
         <filter class="solr.PatternReplaceFilterFactory" pattern="
http://d-nb.info/standards/elementset/gnd#"; replacement=""
replace="all" />
       </analyzer>
     </fieldType>

I am still looking for a workaround for this case.

Thanks,
Sorin

Am 29.04.2016 um 08:43 schrieb Osma Suominen:
Hi Sorin!

Why do you need the type in the text index? The text index is
designed
to store literals. It does not know how to handle URIs at all.

Generally what you would do to combine text search with a restriction
on rdf:type is to use separate query patterns, e.g.

{
   ?s text:query 'nuclear' .
   ?s a gndo:SeriesOfConferenceOrEvent .
}

-Osma


On 28/04/16 18:30, Sorin Gheorghiu wrote:
Hi Andy,

I need just the type of the entry, from the example just the last
part
'SeriesOfConferenceOrEvent'.
If possible I would set an analyser which would trim the first
part, but
I don't know how.

Thanks
Sorin



Am 28.04.2016 um 17:25 schrieb Andy Seaborne:
Hi Sorin,

I'm curious as to why you are indexing a URI and what you see the
benefit of that.  You might at least want to set the analyser
carefully.

    Andy

PS I fixed the cause of the "UnsupportedOperationException" but
only
in the sense that it now issues a warning and skips the
non-literal.
The test for being a literal or not was there ... but after calling
getLiteral.


On 28/04/16 15:47, Sorin Gheorghiu wrote:
Hello,

Jena text index returned the following error:

# java -cp /opt/apache-jena-fuseki-2.3.1/fuseki-server.jar
jena.textindexer --desc=/etc/default/fuseki/jena-text-config.ttl
java.lang.UnsupportedOperationException:
http://d-nb.info/standards/elementset/gnd#SeriesOfConferenceOrEvent

is
not a literal node
         at org.apache.jena.graph.Node.getLiteral(Node.java:100)
         at
org.apache.jena.query.text.TextQueryFuncs.entityFromQuad(TextQueryFuncs.java:80)





         at
org.apache.jena.query.text.TextQueryFuncs.entityFromQuad(TextQueryFuncs.java:67)





         at jena.textindexer.exec(textindexer.java:122)
         at jena.cmd.CmdMain.mainMethod(CmdMain.java:93)
         at jena.cmd.CmdMain.mainRun(CmdMain.java:58)
         at jena.cmd.CmdMain.mainRun(CmdMain.java:45)
         at jena.textindexer.main(textindexer.java:51)

when attempted to index entries like:

@prefix gndo: <http://d-nb.info/standards/elementset/gnd#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<http://d-nb.info/gnd/1-2> gndo:gndIdentifier "1-2" ;
gndo:variantNameForTheConferenceOrEvent "Conferentie van
Niet-Kernwapenstaten" , "Conference on Non-Nuclear Weapon
States" ;
gndo:preferredNameForTheConferenceOrEvent "Conference of
Non-Nuclear Weapon States" ;
         a gndo:SeriesOfConferenceOrEvent .

Here is the EntityMap assembler setup:

<#entMap> a text:EntityMap ;
     text:entityField      "gndUri" ;
text:defaultField "prefName" ; ## Must be defined in the
text:map
     text:map (
          [ text:field "prefName";
text:predicate gndo:preferredNameForTheSubjectHeading
          ]
          [ text:field "type";
            text:predicate rdf:type
          ]
          ...

'type' contains an URL, but a literal node is expected instead.
There is no difference if 'type' is defined as 'text' or
'string' in
Solr schema.xml.

How is possible to fix it?

Thank you in advance,
Sorin











--
Sorin Gheorghiu             Tel: +49 7531 88-3198
Universität Konstanz        Raum: B703
78464 Konstanz              [email protected]

- KIM: Abteilung Contentdienste -

#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 2047868928 bytes for committing 
reserved memory.
# Possible reasons:
#   The system is out of physical RAM or swap space
#   In 32 bit mode, the process size limit was hit
# Possible solutions:
#   Reduce memory load on the system
#   Increase physical memory or swap space
#   Check if swap backing store is full
#   Use 64 bit Java on a 64 bit OS
#   Decrease Java heap size (-Xmx/-Xms)
#   Decrease number of Java threads
#   Decrease Java thread stack sizes (-Xss)
#   Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
#  Out of Memory Error (os_linux.cpp:2630), pid=917, tid=140259416012544
#
# JRE version: OpenJDK Runtime Environment (8.0_72-b15) (build 
1.8.0_72-internal-b15)
# Java VM: OpenJDK 64-Bit Server VM (25.72-b15 mixed mode linux-amd64 )
# Failed to write core dump. Core dumps have been disabled. To enable core 
dumping, try "ulimit -c unlimited" before starting Java again
#

---------------  T H R E A D  ---------------

Current thread (0x00007f990c0fa000):  VMThread [stack: 
0x00007f90b09af000,0x00007f90b0ab0000] [id=922]

Stack: [0x00007f90b09af000,0x00007f90b0ab0000],  sp=0x00007f90b0aae490,  free 
space=1021k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V  [libjvm.so+0x9f37ad]
V  [libjvm.so+0x4bb5ea]
V  [libjvm.so+0x859cf0]
V  [libjvm.so+0x8547ef]
V  [libjvm.so+0x8c9c1b]
V  [libjvm.so+0x8baa8b]
V  [libjvm.so+0x8bac4b]
V  [libjvm.so+0x8bb528]
V  [libjvm.so+0x8c0b3c]
V  [libjvm.so+0x8c7c1d]
V  [libjvm.so+0x87cd23]
V  [libjvm.so+0x9f5274]
V  [libjvm.so+0x9f9627]
V  [libjvm.so+0x9f80e8]
V  [libjvm.so+0x9f8569]
V  [libjvm.so+0x9f89b2]
V  [libjvm.so+0x8570f2]

VM_Operation (0x00007f908afc67b0): ParallelGCFailedAllocation, mode: safepoint, 
requested by thread 0x00007f990c6c8800


---------------  P R O C E S S  ---------------

Java Threads: ( => current thread )
  0x00007f9080006800 JavaThread "Scheduler-379303133" [_thread_blocked, id=977, 
stack(0x00007f9089996000,0x00007f9089a97000)]
  0x00007f990c700000 JavaThread 
"org.eclipse.jetty.server.session.HashSessionManager@2a3888c1Timer" daemon 
[_thread_blocked, id=939, stack(0x00007f908a6c3000,0x00007f908a7c4000)]
  0x00007f990c6d1000 JavaThread "qtp223693919-17" [_thread_blocked, id=938, 
stack(0x00007f908a9c4000,0x00007f908aac5000)]
  0x00007f990c6cf000 JavaThread "qtp223693919-16" [_thread_blocked, id=937, 
stack(0x00007f908aac5000,0x00007f908abc6000)]
  0x00007f990c6cd800 JavaThread "qtp223693919-15" [_thread_blocked, id=936, 
stack(0x00007f908abc6000,0x00007f908acc7000)]
  0x00007f990c6cb800 JavaThread "qtp223693919-14" [_thread_in_native, id=935, 
stack(0x00007f908acc7000,0x00007f908adc8000)]
  0x00007f990c6ca000 JavaThread "qtp223693919-13" [_thread_blocked, id=934, 
stack(0x00007f908adc8000,0x00007f908aec9000)]
  0x00007f990c6c8800 JavaThread "qtp223693919-12" [_thread_blocked, id=933, 
stack(0x00007f908aec9000,0x00007f908afca000)]
  0x00007f990c6c7000 JavaThread 
"qtp223693919-11-acceptor-0@75ff6ce-ServerConnector@9981855{HTTP/1.1,[http/1.1]}{0.0.0.0:3030}"
 [_thread_in_native, id=932, stack(0x00007f908afca000,0x00007f908b0cb000)]
  0x00007f990c6c4000 JavaThread "qtp223693919-10" [_thread_blocked, id=931, 
stack(0x00007f908b0cb000,0x00007f908b1cc000)]
  0x00007f990c137800 JavaThread "Service Thread" daemon [_thread_blocked, 
id=928, stack(0x00007f90b03a9000,0x00007f90b04aa000)]
  0x00007f990c132000 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, 
id=927, stack(0x00007f90b04aa000,0x00007f90b05ab000)]
  0x00007f990c12f000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, 
id=926, stack(0x00007f90b05ab000,0x00007f90b06ac000)]
  0x00007f990c12d000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, 
id=925, stack(0x00007f90b06ac000,0x00007f90b07ad000)]
  0x00007f990c106000 JavaThread "Finalizer" daemon [_thread_blocked, id=924, 
stack(0x00007f90b07ad000,0x00007f90b08ae000)]
  0x00007f990c101800 JavaThread "Reference Handler" daemon [_thread_blocked, 
id=923, stack(0x00007f90b08ae000,0x00007f90b09af000)]
  0x00007f990c00a000 JavaThread "main" [_thread_blocked, id=919, 
stack(0x00007f991363c000,0x00007f991373d000)]

Other Threads:
=>0x00007f990c0fa000 VMThread [stack: 0x00007f90b09af000,0x00007f90b0ab0000] 
[id=922]
  0x00007f990c139000 WatcherThread [stack: 
0x00007f90b02a8000,0x00007f90b03a9000] [id=929]

VM state:at safepoint (normal execution)

VM Mutex/Monitor currently owned by a thread:  ([mutex/lock_event])
[0x00007f990c005ab0] ExpandHeap_lock - owner thread: 0x00007f990c0fa000
[0x00007f990c006130] Threads_lock - owner thread: 0x00007f990c0fa000
[0x00007f990c006630] Heap_lock - owner thread: 0x00007f990c6c8800

Heap:
 PSYoungGen      total 8682496K, used 624512K [0x00007f9652180000, 
0x00007f98f1480000, 0x00007f98fcc00000)
  eden space 6561792K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97e2980000)
  from space 2120704K, 29% used 
[0x00007f986fd80000,0x00007f9895f60318,0x00007f98f1480000)
  to   space 2217472K, 0% used 
[0x00007f97e2980000,0x00007f97e2980000,0x00007f9869f00000)
 ParOldGen       total 7540736K, used 7540502K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 99% used 
[0x00007f90fcc00000,0x00007f92c8fc58f0,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K

Card table byte_map: [0x00007f90f8bff000,0x00007f90fcc00000] byte_map_base: 
0x00007f5130419000

Marking Bits: (ParMarkBitMap*) 0x00007f9912903080
 Begin Bits: [0x00007f90b6053000, 0x00007f90d6053000)
 End Bits:   [0x00007f90d6053000, 0x00007f90f6053000)

Polling page: 0x00007f991374c000

CodeCache: size=245760Kb used=10082Kb max_used=10082Kb free=235677Kb
 bounds [0x00007f98fd000000, 0x00007f98fd9f0000, 0x00007f990c000000]
 total_blobs=3446 nmethods=2999 adapters=362
 compilation: enabled

Compilation events (10 events):
Event: 337.605 Thread 0x00007f990c132000 3026       3       
sun.reflect.ClassFileAssembler::emitConstantPoolUTF8 (50 bytes)
Event: 337.606 Thread 0x00007f990c132000 nmethod 3026 0x00007f98fd9a9e90 code 
[0x00007f98fd9aa080, 0x00007f98fd9aa708]
Event: 337.610 Thread 0x00007f990c132000 3029       3       
sun.reflect.ByteVectorImpl::getLength (7 bytes)
Event: 337.610 Thread 0x00007f990c132000 nmethod 3029 0x00007f98fd99f3d0 code 
[0x00007f98fd99f520, 0x00007f98fd99f670]
Event: 337.611 Thread 0x00007f990c132000 3030       3       
sun.reflect.ByteVectorImpl::get (26 bytes)
Event: 337.611 Thread 0x00007f990c132000 nmethod 3030 0x00007f98fd9af010 code 
[0x00007f98fd9af180, 0x00007f98fd9af388]
Event: 337.613 Thread 0x00007f990c132000 3028       3       
sun.reflect.ClassFileAssembler::cpi (22 bytes)
Event: 337.613 Thread 0x00007f990c132000 nmethod 3028 0x00007f98fd10ef10 code 
[0x00007f98fd10f080, 0x00007f98fd10f2c8]
Event: 596.422 Thread 0x00007f990c132000 3032       3       
java.util.concurrent.locks.ReentrantLock$Sync::nonfairTryAcquire (67 bytes)
Event: 596.845 Thread 0x00007f990c132000 nmethod 3032 0x00007f98fd9a9410 code 
[0x00007f98fd9a95c0, 0x00007f98fd9a9ce8]

GC Heap History (10 events):
Event: 524.348 GC heap after
Heap after GC invocations=56 (full 8):
 PSYoungGen      total 8359936K, used 796128K [0x00007f9652180000, 
0x00007f98ec780000, 0x00007f98fcc00000)
  eden space 5840896K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97b6980000)
  from space 2519040K, 31% used 
[0x00007f9852b80000,0x00007f98834f8000,0x00007f98ec780000)
  to   space 2538496K, 0% used 
[0x00007f97b6980000,0x00007f97b6980000,0x00007f9851880000)
 ParOldGen       total 7540736K, used 6331099K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 83% used 
[0x00007f90fcc00000,0x00007f927f2b6e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
}
Event: 548.746 GC heap before
{Heap before GC invocations=57 (full 8):
 PSYoungGen      total 8359936K, used 6637024K [0x00007f9652180000, 
0x00007f98ec780000, 0x00007f98fcc00000)
  eden space 5840896K, 100% used 
[0x00007f9652180000,0x00007f97b6980000,0x00007f97b6980000)
  from space 2519040K, 31% used 
[0x00007f9852b80000,0x00007f98834f8000,0x00007f98ec780000)
  to   space 2538496K, 0% used 
[0x00007f97b6980000,0x00007f97b6980000,0x00007f9851880000)
 ParOldGen       total 7540736K, used 6331099K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 83% used 
[0x00007f90fcc00000,0x00007f927f2b6e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
Event: 551.615 GC heap after
Heap after GC invocations=57 (full 8):
 PSYoungGen      total 8379392K, used 817824K [0x00007f9652180000, 
0x00007f98f1700000, 0x00007f98fcc00000)
  eden space 5840896K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97b6980000)
  from space 2538496K, 32% used 
[0x00007f97b6980000,0x00007f97e8828000,0x00007f9851880000)
  to   space 2436096K, 0% used 
[0x00007f985cc00000,0x00007f985cc00000,0x00007f98f1700000)
 ParOldGen       total 7540736K, used 6588739K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 87% used 
[0x00007f90fcc00000,0x00007f928ee50e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
}
Event: 565.025 GC heap before
{Heap before GC invocations=58 (full 8):
 PSYoungGen      total 8379392K, used 6658720K [0x00007f9652180000, 
0x00007f98f1700000, 0x00007f98fcc00000)
  eden space 5840896K, 100% used 
[0x00007f9652180000,0x00007f97b6980000,0x00007f97b6980000)
  from space 2538496K, 32% used 
[0x00007f97b6980000,0x00007f97e8828000,0x00007f9851880000)
  to   space 2436096K, 0% used 
[0x00007f985cc00000,0x00007f985cc00000,0x00007f98f1700000)
 ParOldGen       total 7540736K, used 6588739K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 87% used 
[0x00007f90fcc00000,0x00007f928ee50e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
Event: 566.436 GC heap after
Heap after GC invocations=58 (full 8):
 PSYoungGen      total 8485376K, used 1095776K [0x00007f9652180000, 
0x00007f98e7a00000, 0x00007f98fcc00000)
  eden space 6210048K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97cd200000)
  from space 2275328K, 48% used 
[0x00007f985cc00000,0x00007f989fa18000,0x00007f98e7a00000)
  to   space 2314240K, 0% used 
[0x00007f97cd200000,0x00007f97cd200000,0x00007f985a600000)
 ParOldGen       total 7540736K, used 6588739K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 87% used 
[0x00007f90fcc00000,0x00007f928ee50e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
}
Event: 579.882 GC heap before
{Heap before GC invocations=59 (full 8):
 PSYoungGen      total 8485376K, used 7305824K [0x00007f9652180000, 
0x00007f98e7a00000, 0x00007f98fcc00000)
  eden space 6210048K, 100% used 
[0x00007f9652180000,0x00007f97cd200000,0x00007f97cd200000)
  from space 2275328K, 48% used 
[0x00007f985cc00000,0x00007f989fa18000,0x00007f98e7a00000)
  to   space 2314240K, 0% used 
[0x00007f97cd200000,0x00007f97cd200000,0x00007f985a600000)
 ParOldGen       total 7540736K, used 6588739K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 87% used 
[0x00007f90fcc00000,0x00007f928ee50e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
Event: 592.009 GC heap after
Heap after GC invocations=59 (full 8):
 PSYoungGen      total 8524288K, used 1379584K [0x00007f9652180000, 
0x00007f98fcc00000, 0x00007f98fcc00000)
  eden space 6210048K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97cd200000)
  from space 2314240K, 59% used 
[0x00007f97cd200000,0x00007f9821540000,0x00007f985a600000)
  to   space 2308608K, 0% used 
[0x00007f986fd80000,0x00007f986fd80000,0x00007f98fcc00000)
 ParOldGen       total 7540736K, used 6588739K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 87% used 
[0x00007f90fcc00000,0x00007f928ee50e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
}
Event: 605.958 GC heap before
{Heap before GC invocations=60 (full 8):
 PSYoungGen      total 8524288K, used 7589632K [0x00007f9652180000, 
0x00007f98fcc00000, 0x00007f98fcc00000)
  eden space 6210048K, 100% used 
[0x00007f9652180000,0x00007f97cd200000,0x00007f97cd200000)
  from space 2314240K, 59% used 
[0x00007f97cd200000,0x00007f9821540000,0x00007f985a600000)
  to   space 2308608K, 0% used 
[0x00007f986fd80000,0x00007f986fd80000,0x00007f98fcc00000)
 ParOldGen       total 7540736K, used 6588739K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 87% used 
[0x00007f90fcc00000,0x00007f928ee50e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
Event: 620.374 GC heap after
Heap after GC invocations=60 (full 8):
 PSYoungGen      total 8682496K, used 1170912K [0x00007f9652180000, 
0x00007f98f1480000, 0x00007f98fcc00000)
  eden space 6561792K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97e2980000)
  from space 2120704K, 55% used 
[0x00007f986fd80000,0x00007f98b74f8018,0x00007f98f1480000)
  to   space 2217472K, 0% used 
[0x00007f97e2980000,0x00007f97e2980000,0x00007f9869f00000)
 ParOldGen       total 7540736K, used 7084483K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 93% used 
[0x00007f90fcc00000,0x00007f92ad270e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K
}
Event: 620.386 GC heap before
{Heap before GC invocations=61 (full 9):
 PSYoungGen      total 8682496K, used 1170912K [0x00007f9652180000, 
0x00007f98f1480000, 0x00007f98fcc00000)
  eden space 6561792K, 0% used 
[0x00007f9652180000,0x00007f9652180000,0x00007f97e2980000)
  from space 2120704K, 55% used 
[0x00007f986fd80000,0x00007f98b74f8018,0x00007f98f1480000)
  to   space 2217472K, 0% used 
[0x00007f97e2980000,0x00007f97e2980000,0x00007f9869f00000)
 ParOldGen       total 7540736K, used 7084483K [0x00007f90fcc00000, 
0x00007f92c9000000, 0x00007f9652180000)
  object space 7540736K, 93% used 
[0x00007f90fcc00000,0x00007f92ad270e10,0x00007f92c9000000)
 Metaspace       used 27991K, capacity 28615K, committed 28928K, reserved 30720K

Deoptimization events (10 events):
Event: 32.036 Thread 0x00007f990c700000 Uncommon trap: reason=class_check 
action=maybe_recompile pc=0x00007f98fd82eeb4 
method=java.util.concurrent.locks.AbstractQueuedSynchronizer.release(I)Z @ 2
Event: 32.036 Thread 0x00007f990c700000 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd82eee8 
method=java.util.concurrent.locks.AbstractQueuedSynchronizer.release(I)Z @ 14
Event: 35.274 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd8c8fa0 
method=sun.security.provider.MD5.implDigest([BI)V @ 21
Event: 35.274 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd829fec 
method=sun.security.provider.DigestBase.engineUpdate([BII)V @ 119
Event: 35.274 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd8a7770 
method=sun.security.provider.MD5.implDigest([BI)V @ 21
Event: 35.274 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd86473c 
method=org.apache.jena.sparql.expr.nodevalue.XSDFuncOp.strAfter(Lorg/apache/jena/sparql/expr/NodeValue;Lorg/apache/jena/sparql/expr/NodeValue;)Lorg/apache/jena/sparql/expr/NodeValu
Event: 35.274 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd8c7750 
method=org.apache.xerces.impl.dv.xs.XSSimpleTypeDecl.normalize(Ljava/lang/String;S)Ljava/lang/String;
 @ 14
Event: 40.483 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd987c30 
method=org.apache.jena.ext.com.google.common.cache.LocalCache$Segment.put(Ljava/lang/Object;ILjava/lang/Object;Z)Ljava/lang/Object;
 @ 127
Event: 60.281 Thread 0x00007f990c6c8800 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd82cfcc 
method=org.apache.jena.tdb.base.file.BlockAccessMapped.allocSegment(I)Ljava/nio/MappedByteBuffer;
 @ 65
Event: 182.011 Thread 0x00007f990c6ca000 Uncommon trap: reason=unstable_if 
action=reinterpret pc=0x00007f98fd88c700 
method=java.util.concurrent.locks.ReentrantLock$Sync.nonfairTryAcquire(I)Z @ 34

Internal exceptions (10 events):
Event: 2.181 Thread 0x00007f990c00a000 Exception <a 
'java/lang/ClassNotFoundException': 
org/apache/shiro/realm/SimpleAccountRealmCustomizer> (0x00007f9656255078) 
thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/classfile/systemDictionary.cpp,
 line 210]
Event: 2.182 Thread 0x00007f990c00a000 Exception <a 
'java/lang/ClassNotFoundException': 
org/apache/shiro/realm/text/TextConfigurationRealmCustomizer> 
(0x00007f965626c9c0) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/classfile/systemDictionary.cpp,
 line 210]
Event: 2.183 Thread 0x00007f990c00a000 Exception <a 
'java/lang/ClassNotFoundException': 
org/apache/shiro/realm/text/IniRealmCustomizer> (0x00007f9656286598) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/classfile/systemDictionary.cpp,
 line 210]
Event: 2.302 Thread 0x00007f990c00a000 Exception <a 
'java/io/FileNotFoundException'> (0x00007f9656628218) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/prims/jni.cpp,
 line 709]
Event: 2.338 Thread 0x00007f990c00a000 Exception <a 
'java/lang/NoSuchMethodError': 
java.lang.Object.lambda$codePoints$1()Ljava/util/Spliterator$OfInt;> 
(0x00007f965686d748) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/interpreter/linkResolver.cpp,
 line 582]
Event: 2.580 Thread 0x00007f990c00a000 Exception <a 
'java/lang/NoSuchMethodError': 
java.lang.Object.lambda$and$0(Ljava/util/function/Predicate;Ljava/lang/Object;)Z>
 (0x00007f96528c7598) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/interpreter/linkResolver.cpp,
Event: 2.755 Thread 0x00007f990c00a000 Exception <a 
'java/lang/NoSuchMethodError': 
java.lang.Object.lambda$negate$1(Ljava/lang/Object;)Z> (0x00007f965327c728) 
thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/interpreter/linkResolver.cpp,
 line 582]
Event: 2.938 Thread 0x00007f990c00a000 Exception <a 
'java/io/FileNotFoundException'> (0x00007f9653656120) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/prims/jni.cpp,
 line 709]
Event: 2.938 Thread 0x00007f990c00a000 Exception <a 
'java/io/FileNotFoundException'> (0x00007f9653657038) thrown at 
[/build/openjdk-8-YNUxN3/openjdk-8-8u72-b15/src/hotspot/src/share/vm/prims/jni.cpp,
 line 709]
Event: 13.446 Thread 0x00007f990c6c8800 Implicit null exception at 
0x00007f98fd474485 to 0x00007f98fd4745c1

Events (10 events):
Event: 508.249 Executing VM operation: ParallelGCFailedAllocation done
Event: 520.216 Executing VM operation: ParallelGCFailedAllocation
Event: 524.558 Executing VM operation: ParallelGCFailedAllocation done
Event: 548.746 Executing VM operation: ParallelGCFailedAllocation
Event: 551.658 Executing VM operation: ParallelGCFailedAllocation done
Event: 565.004 Executing VM operation: ParallelGCFailedAllocation
Event: 566.436 Executing VM operation: ParallelGCFailedAllocation done
Event: 579.882 Executing VM operation: ParallelGCFailedAllocation
Event: 592.058 Executing VM operation: ParallelGCFailedAllocation done
Event: 605.954 Executing VM operation: ParallelGCFailedAllocation


Dynamic libraries:
00400000-00401000 r-xp 00000000 fd:03 13420300                           
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
00600000-00601000 r--p 00000000 fd:03 13420300                           
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
00601000-00602000 rw-p 00001000 fd:03 13420300                           
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
017c7000-017e8000 rw-p 00000000 00:00 0                                  [heap]
7f906b000000-7f906b800000 rw-s 06000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906b800000-7f906c000000 rw-s 05800000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906c000000-7f906c800000 rw-s 05000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906c800000-7f906d000000 rw-s 04800000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906d000000-7f906d800000 rw-s 04000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906d800000-7f906e000000 rw-s 03800000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906e000000-7f906e800000 rw-s 03000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906e800000-7f906f000000 rw-s 02800000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906f000000-7f906f800000 rw-s 02000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f906f800000-7f9070000000 rw-s 01800000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f9070000000-7f9070021000 rw-p 00000000 00:00 0 
7f9070021000-7f9074000000 ---p 00000000 00:00 0 
7f9074600000-7f9074e00000 rw-s 01000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f9074e00000-7f9075600000 rw-s 00800000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f9075600000-7f9075640000 rw-p 00000000 00:00 0 
7f9075640000-7f9075800000 ---p 00000000 00:00 0 
7f9075800000-7f9076000000 rw-s 00000000 fd:03 18915344                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/SPO.dat
7f9076000000-7f9076800000 rw-s 00000000 fd:03 18915345                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/SPO.idn
7f9076800000-7f9077000000 rw-s 06000000 fd:03 18915348                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/node2id.dat
7f9077000000-7f9077800000 rw-s 00800000 fd:03 18915349                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/node2id.idn
7f9077800000-7f9078000000 rw-s 00000000 fd:03 18915340                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.dat
7f9078000000-7f9078021000 rw-p 00000000 00:00 0 
7f9078021000-7f907c000000 ---p 00000000 00:00 0 
7f907c000000-7f907c037000 rw-p 00000000 00:00 0 
7f907c037000-7f9080000000 ---p 00000000 00:00 0 
7f9080000000-7f9080026000 rw-p 00000000 00:00 0 
7f9080026000-7f9084000000 ---p 00000000 00:00 0 
7f9084000000-7f9084021000 rw-p 00000000 00:00 0 
7f9084021000-7f9088000000 ---p 00000000 00:00 0 
7f9088196000-7f9088996000 rw-s 00000000 fd:03 18915341                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/POS.idn
7f9088996000-7f9089196000 rw-s 2a800000 fd:03 18915348                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/node2id.dat
7f9089196000-7f9089996000 rw-s 00000000 fd:03 18915349                   
/opt/apache-jena-fuseki-2.3.1/data/GNDAJFTSSOLRTREA100316_550/node2id.idn
7f9089996000-7f9089999000 ---p 00000000 00:00 0 
7f9089999000-7f9089c97000 rw-p 00000000 00:00 0 
7f9089c97000-7f9089e97000 rw-p 00000000 00:00 0 
7f9089e97000-7f9089ebe000 r-xp 00000000 fd:03 13420341                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libsunec.so
7f9089ebe000-7f908a0bd000 ---p 00027000 fd:03 13420341                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libsunec.so
7f908a0bd000-7f908a0c1000 r--p 00026000 fd:03 13420341                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libsunec.so
7f908a0c1000-7f908a0c2000 rw-p 0002a000 fd:03 13420341                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libsunec.so
7f908a0c2000-7f908a2c3000 rw-p 00000000 00:00 0 
7f908a2c3000-7f908a4c3000 rw-p 00000000 00:00 0 
7f908a4c3000-7f908a6c3000 rw-p 00000000 00:00 0 
7f908a6c3000-7f908a6c6000 ---p 00000000 00:00 0 
7f908a6c6000-7f908a9c4000 rw-p 00000000 00:00 0 
7f908a9c4000-7f908a9c7000 ---p 00000000 00:00 0 
7f908a9c7000-7f908aac5000 rw-p 00000000 00:00 0 
7f908aac5000-7f908aac8000 ---p 00000000 00:00 0 
7f908aac8000-7f908abc6000 rw-p 00000000 00:00 0 
7f908abc6000-7f908abc9000 ---p 00000000 00:00 0 
7f908abc9000-7f908acc7000 rw-p 00000000 00:00 0 
7f908acc7000-7f908acca000 ---p 00000000 00:00 0 
7f908acca000-7f908adc8000 rw-p 00000000 00:00 0 
7f908adc8000-7f908adcb000 ---p 00000000 00:00 0 
7f908adcb000-7f908aec9000 rw-p 00000000 00:00 0 
7f908aec9000-7f908aecc000 ---p 00000000 00:00 0 
7f908aecc000-7f908afca000 rw-p 00000000 00:00 0 
7f908afca000-7f908afcd000 ---p 00000000 00:00 0 
7f908afcd000-7f908b0cb000 rw-p 00000000 00:00 0 
7f908b0cb000-7f908b0ce000 ---p 00000000 00:00 0 
7f908b0ce000-7f908b1cc000 rw-p 00000000 00:00 0 
7f908b1cc000-7f908b1d5000 r-xp 00000000 fd:03 13420339                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libmanagement.so
7f908b1d5000-7f908b3d4000 ---p 00009000 fd:03 13420339                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libmanagement.so
7f908b3d4000-7f908b3d5000 r--p 00008000 fd:03 13420339                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libmanagement.so
7f908b3d5000-7f908b3d6000 rw-p 00009000 fd:03 13420339                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libmanagement.so
7f908b3d6000-7f908b5d6000 rw-p 00000000 00:00 0 
7f908b5d6000-7f908b7d6000 rw-p 00000000 00:00 0 
7f908b7d6000-7f908b9d6000 rw-p 00000000 00:00 0 
7f908b9d6000-7f908bbd6000 rw-p 00000000 00:00 0 
7f908bbd6000-7f908bbec000 r-xp 00000000 fd:03 13420325                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnet.so
7f908bbec000-7f908bdec000 ---p 00016000 fd:03 13420325                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnet.so
7f908bdec000-7f908bded000 r--p 00016000 fd:03 13420325                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnet.so
7f908bded000-7f908bdee000 rw-p 00017000 fd:03 13420325                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnet.so
7f908bdee000-7f908bdff000 r-xp 00000000 fd:03 13420349                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnio.so
7f908bdff000-7f908bffe000 ---p 00011000 fd:03 13420349                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnio.so
7f908bffe000-7f908bfff000 r--p 00010000 fd:03 13420349                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnio.so
7f908bfff000-7f908c000000 rw-p 00011000 fd:03 13420349                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libnio.so
7f908c000000-7f908c7ee000 rw-p 00000000 00:00 0 
7f908c7ee000-7f9090000000 ---p 00000000 00:00 0 
7f9090000000-7f9090021000 rw-p 00000000 00:00 0 
7f9090021000-7f9094000000 ---p 00000000 00:00 0 
7f9094000000-7f9094021000 rw-p 00000000 00:00 0 
7f9094021000-7f9098000000 ---p 00000000 00:00 0 
7f9098000000-7f9099f6b000 rw-p 00000000 00:00 0 
7f9099f6b000-7f909c000000 ---p 00000000 00:00 0 
7f909c000000-7f909c021000 rw-p 00000000 00:00 0 
7f909c021000-7f90a0000000 ---p 00000000 00:00 0 
7f90a0000000-7f90a0021000 rw-p 00000000 00:00 0 
7f90a0021000-7f90a4000000 ---p 00000000 00:00 0 
7f90a4000000-7f90a51a4000 rw-p 00000000 00:00 0 
7f90a51a4000-7f90a8000000 ---p 00000000 00:00 0 
7f90a8000000-7f90a806b000 rw-p 00000000 00:00 0 
7f90a806b000-7f90ac000000 ---p 00000000 00:00 0 
7f90ac000000-7f90ad542000 rw-p 00000000 00:00 0 
7f90ad542000-7f90b0000000 ---p 00000000 00:00 0 
7f90b00fe000-7f90b02a8000 r--s 0164f000 fd:03 13410588                   
/opt/apache-jena-fuseki-2.3.1/fuseki-server.jar
7f90b02a8000-7f90b02a9000 ---p 00000000 00:00 0 
7f90b02a9000-7f90b03a9000 rw-p 00000000 00:00 0 
7f90b03a9000-7f90b03ac000 ---p 00000000 00:00 0 
7f90b03ac000-7f90b04aa000 rw-p 00000000 00:00 0 
7f90b04aa000-7f90b04ad000 ---p 00000000 00:00 0 
7f90b04ad000-7f90b05ab000 rw-p 00000000 00:00 0 
7f90b05ab000-7f90b05ae000 ---p 00000000 00:00 0 
7f90b05ae000-7f90b06ac000 rw-p 00000000 00:00 0 
7f90b06ac000-7f90b06af000 ---p 00000000 00:00 0 
7f90b06af000-7f90b07ad000 rw-p 00000000 00:00 0 
7f90b07ad000-7f90b07b0000 ---p 00000000 00:00 0 
7f90b07b0000-7f90b08ae000 rw-p 00000000 00:00 0 
7f90b08ae000-7f90b08b1000 ---p 00000000 00:00 0 
7f90b08b1000-7f90b09af000 rw-p 00000000 00:00 0 
7f90b09af000-7f90b09b0000 ---p 00000000 00:00 0 
7f90b09b0000-7f90b1406000 rw-p 00000000 00:00 0 
7f90b1406000-7f90b15d3000 r--s 03be5000 fd:03 13420364                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/rt.jar
7f90b15d3000-7f90f6053000 rw-p 00000000 00:00 0 
7f90f6053000-7f90f6054000 ---p 00000000 00:00 0 
7f90f6054000-7f90f6fb6000 rw-p 00000000 00:00 0 
7f90f6fb6000-7f90f8bff000 ---p 00000000 00:00 0 
7f90f8bff000-7f90f9a61000 rw-p 00000000 00:00 0 
7f90f9a61000-7f90fb6a9000 ---p 00000000 00:00 0 
7f90fb6a9000-7f90fcba4000 rw-p 00000000 00:00 0 
7f90fcba4000-7f90fcbff000 ---p 00000000 00:00 0 
7f90fcbff000-7f92c9000000 rw-p 00000000 00:00 0 
7f9343100000-7f9652180000 ---p 00000000 00:00 0 
7f9652180000-7f98f1480000 rw-p 00000000 00:00 0 
7f98f1480000-7f98fcc00000 ---p 00000000 00:00 0 
7f98fcc3f000-7f98fcc68000 rw-p 00000000 00:00 0 
7f98fcc68000-7f98fd000000 ---p 00000000 00:00 0 
7f98fd000000-7f98fd9f0000 rwxp 00000000 00:00 0 
7f98fd9f0000-7f990c000000 ---p 00000000 00:00 0 
7f990c000000-7f990c983000 rw-p 00000000 00:00 0 
7f990c983000-7f9910000000 ---p 00000000 00:00 0 
7f9910000000-7f9910003000 r--s 00015000 fd:03 13420309                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jce.jar
7f9910003000-7f9910006000 ---p 00000000 00:00 0 
7f9910006000-7f991003c000 rw-p 00000000 00:00 0 
7f991003c000-7f991004f000 r--s 00346000 fd:03 13420352                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/resources.jar
7f991004f000-7f9910055000 r--s 0003a000 fd:03 13426703                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunjce_provider.jar
7f9910055000-7f9910070000 r--s 001d7000 fd:03 13426697                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/nashorn.jar
7f9910070000-7f991008c000 r--s 00393000 fd:03 13426699                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/cldrdata.jar
7f991008c000-7f991008d000 ---p 00000000 00:00 0 
7f991008d000-7f991018d000 rw-p 00000000 00:00 0 
7f991018d000-7f9910195000 r-xp 00000000 fd:03 13420332                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so
7f9910195000-7f9910394000 ---p 00008000 fd:03 13420332                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so
7f9910394000-7f9910395000 r--p 00007000 fd:03 13420332                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so
7f9910395000-7f9910396000 rw-p 00008000 fd:03 13420332                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libzip.so
7f9910396000-7f99103a1000 r-xp 00000000 fd:03 13396110                   
/lib/x86_64-linux-gnu/libnss_files-2.19.so
7f99103a1000-7f99105a0000 ---p 0000b000 fd:03 13396110                   
/lib/x86_64-linux-gnu/libnss_files-2.19.so
7f99105a0000-7f99105a1000 r--p 0000a000 fd:03 13396110                   
/lib/x86_64-linux-gnu/libnss_files-2.19.so
7f99105a1000-7f99105a2000 rw-p 0000b000 fd:03 13396110                   
/lib/x86_64-linux-gnu/libnss_files-2.19.so
7f99105a2000-7f99105ad000 r-xp 00000000 fd:03 13396102                   
/lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f99105ad000-7f99107ac000 ---p 0000b000 fd:03 13396102                   
/lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f99107ac000-7f99107ad000 r--p 0000a000 fd:03 13396102                   
/lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f99107ad000-7f99107ae000 rw-p 0000b000 fd:03 13396102                   
/lib/x86_64-linux-gnu/libnss_nis-2.19.so
7f99107ae000-7f99107c5000 r-xp 00000000 fd:03 13396098                   
/lib/x86_64-linux-gnu/libnsl-2.19.so
7f99107c5000-7f99109c4000 ---p 00017000 fd:03 13396098                   
/lib/x86_64-linux-gnu/libnsl-2.19.so
7f99109c4000-7f99109c5000 r--p 00016000 fd:03 13396098                   
/lib/x86_64-linux-gnu/libnsl-2.19.so
7f99109c5000-7f99109c6000 rw-p 00017000 fd:03 13396098                   
/lib/x86_64-linux-gnu/libnsl-2.19.so
7f99109c6000-7f99109c8000 rw-p 00000000 00:00 0 
7f99109c8000-7f99109d1000 r-xp 00000000 fd:03 13395056                   
/lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f99109d1000-7f9910bd0000 ---p 00009000 fd:03 13395056                   
/lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f9910bd0000-7f9910bd1000 r--p 00008000 fd:03 13395056                   
/lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f9910bd1000-7f9910bd2000 rw-p 00009000 fd:03 13395056                   
/lib/x86_64-linux-gnu/libnss_compat-2.19.so
7f9910bd2000-7f9910bfe000 r-xp 00000000 fd:03 13420317                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so
7f9910bfe000-7f9910dfe000 ---p 0002c000 fd:03 13420317                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so
7f9910dfe000-7f9910dff000 r--p 0002c000 fd:03 13420317                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so
7f9910dff000-7f9910e01000 rw-p 0002d000 fd:03 13420317                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libjava.so
7f9910e01000-7f9910e11000 r-xp 00000000 fd:03 13420318                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so
7f9910e11000-7f9911010000 ---p 00010000 fd:03 13420318                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so
7f9911010000-7f9911012000 r--p 0000f000 fd:03 13420318                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so
7f9911012000-7f9911013000 rw-p 00011000 fd:03 13420318                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/libverify.so
7f9911013000-7f991101a000 r-xp 00000000 fd:03 13396106                   
/lib/x86_64-linux-gnu/librt-2.19.so
7f991101a000-7f9911219000 ---p 00007000 fd:03 13396106                   
/lib/x86_64-linux-gnu/librt-2.19.so
7f9911219000-7f991121a000 r--p 00006000 fd:03 13396106                   
/lib/x86_64-linux-gnu/librt-2.19.so
7f991121a000-7f991121b000 rw-p 00007000 fd:03 13396106                   
/lib/x86_64-linux-gnu/librt-2.19.so
7f991121b000-7f9911231000 r-xp 00000000 fd:03 13395768                   
/lib/x86_64-linux-gnu/libgcc_s.so.1
7f9911231000-7f9911430000 ---p 00016000 fd:03 13395768                   
/lib/x86_64-linux-gnu/libgcc_s.so.1
7f9911430000-7f9911431000 rw-p 00015000 fd:03 13395768                   
/lib/x86_64-linux-gnu/libgcc_s.so.1
7f9911431000-7f9911536000 r-xp 00000000 fd:03 13394587                   
/lib/x86_64-linux-gnu/libm-2.19.so
7f9911536000-7f9911735000 ---p 00105000 fd:03 13394587                   
/lib/x86_64-linux-gnu/libm-2.19.so
7f9911735000-7f9911736000 r--p 00104000 fd:03 13394587                   
/lib/x86_64-linux-gnu/libm-2.19.so
7f9911736000-7f9911737000 rw-p 00105000 fd:03 13394587                   
/lib/x86_64-linux-gnu/libm-2.19.so
7f9911737000-7f991181d000 r-xp 00000000 fd:03 13361416                   
/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f991181d000-7f9911a1c000 ---p 000e6000 fd:03 13361416                   
/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f9911a1c000-7f9911a24000 r--p 000e5000 fd:03 13361416                   
/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f9911a24000-7f9911a26000 rw-p 000ed000 fd:03 13361416                   
/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.19
7f9911a26000-7f9911a3b000 rw-p 00000000 00:00 0 
7f9911a3b000-7f9912627000 r-xp 00000000 fd:03 13420330                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f9912627000-7f9912827000 ---p 00bec000 fd:03 13420330                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f9912827000-7f99128c5000 r--p 00bec000 fd:03 13420330                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f99128c5000-7f99128ee000 rw-p 00c8a000 fd:03 13420330                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server/libjvm.so
7f99128ee000-7f991291e000 rw-p 00000000 00:00 0 
7f991291e000-7f9912937000 r-xp 00000000 fd:03 13396099                   
/lib/x86_64-linux-gnu/libpthread-2.19.so
7f9912937000-7f9912b36000 ---p 00019000 fd:03 13396099                   
/lib/x86_64-linux-gnu/libpthread-2.19.so
7f9912b36000-7f9912b37000 r--p 00018000 fd:03 13396099                   
/lib/x86_64-linux-gnu/libpthread-2.19.so
7f9912b37000-7f9912b38000 rw-p 00019000 fd:03 13396099                   
/lib/x86_64-linux-gnu/libpthread-2.19.so
7f9912b38000-7f9912b3c000 rw-p 00000000 00:00 0 
7f9912b3c000-7f9912b3f000 r-xp 00000000 fd:03 13394732                   
/lib/x86_64-linux-gnu/libdl-2.19.so
7f9912b3f000-7f9912d3e000 ---p 00003000 fd:03 13394732                   
/lib/x86_64-linux-gnu/libdl-2.19.so
7f9912d3e000-7f9912d3f000 r--p 00002000 fd:03 13394732                   
/lib/x86_64-linux-gnu/libdl-2.19.so
7f9912d3f000-7f9912d40000 rw-p 00003000 fd:03 13394732                   
/lib/x86_64-linux-gnu/libdl-2.19.so
7f9912d40000-7f9912d58000 r-xp 00000000 fd:03 13395901                   
/lib/x86_64-linux-gnu/libz.so.1.2.8
7f9912d58000-7f9912f57000 ---p 00018000 fd:03 13395901                   
/lib/x86_64-linux-gnu/libz.so.1.2.8
7f9912f57000-7f9912f58000 r--p 00017000 fd:03 13395901                   
/lib/x86_64-linux-gnu/libz.so.1.2.8
7f9912f58000-7f9912f59000 rw-p 00018000 fd:03 13395901                   
/lib/x86_64-linux-gnu/libz.so.1.2.8
7f9912f59000-7f9913114000 r-xp 00000000 fd:03 13396107                   
/lib/x86_64-linux-gnu/libc-2.19.so
7f9913114000-7f9913313000 ---p 001bb000 fd:03 13396107                   
/lib/x86_64-linux-gnu/libc-2.19.so
7f9913313000-7f9913317000 r--p 001ba000 fd:03 13396107                   
/lib/x86_64-linux-gnu/libc-2.19.so
7f9913317000-7f9913319000 rw-p 001be000 fd:03 13396107                   
/lib/x86_64-linux-gnu/libc-2.19.so
7f9913319000-7f991331e000 rw-p 00000000 00:00 0 
7f991331e000-7f991332b000 r-xp 00000000 fd:03 13420346                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f991332b000-7f991352b000 ---p 0000d000 fd:03 13420346                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f991352b000-7f991352c000 r--p 0000d000 fd:03 13420346                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f991352c000-7f991352d000 rw-p 0000e000 fd:03 13420346                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/jli/libjli.so
7f991352d000-7f9913550000 r-xp 00000000 fd:03 13396100                   
/lib/x86_64-linux-gnu/ld-2.19.so
7f9913550000-7f9913554000 r--s 00097000 fd:03 13420369                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/jsse.jar
7f9913554000-7f9913555000 r--s 0000a000 fd:03 13426701                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/jaccess.jar
7f9913555000-7f9913559000 r--s 00037000 fd:03 13426706                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunpkcs11.jar
7f9913559000-7f991355b000 r--s 00001000 fd:03 13426698                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/dnsns.jar
7f991355b000-7f991355d000 r--s 00006000 fd:03 4841475                    
/usr/share/java/java-atk-wrapper.jar
7f991355d000-7f9913567000 r--s 00116000 fd:03 13426705                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/localedata.jar
7f9913567000-7f9913568000 r--s 00010000 fd:03 13426702                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/zipfs.jar
7f9913568000-7f991356b000 r--s 0000f000 fd:03 13426704                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/icedtea-sound.jar
7f991356b000-7f991363c000 rw-p 00000000 00:00 0 
7f991363c000-7f991363f000 ---p 00000000 00:00 0 
7f991363f000-7f9913742000 rw-p 00000000 00:00 0 
7f9913742000-7f9913743000 r--s 00008000 fd:03 13426700                   
/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/sunec.jar
7f9913743000-7f991374b000 rw-s 00000000 fd:03 4857860                    
/tmp/hsperfdata_root/917
7f991374b000-7f991374c000 rw-p 00000000 00:00 0 
7f991374c000-7f991374d000 ---p 00000000 00:00 0 
7f991374d000-7f991374f000 rw-p 00000000 00:00 0 
7f991374f000-7f9913750000 r--p 00022000 fd:03 13396100                   
/lib/x86_64-linux-gnu/ld-2.19.so
7f9913750000-7f9913751000 rw-p 00023000 fd:03 13396100                   
/lib/x86_64-linux-gnu/ld-2.19.so
7f9913751000-7f9913752000 rw-p 00000000 00:00 0 
7fffd3d5f000-7fffd3d74000 rw-p 00000000 00:00 0                          [stack]
7fffd3dfe000-7fffd3e00000 r-xp 00000000 00:00 0                          [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  
[vsyscall]

VM Arguments:
jvm_args: -Xmx32G 
java_command: fuseki-server.jar 
--config=/etc/default/fuseki/jena-text-config-GND100316_550.ttl --update
java_class_path (initial): fuseki-server.jar
Launcher Type: SUN_STANDARD

Environment Variables:
PATH=/root/.rbenv/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
SHELL=/bin/bash

Signal Handlers:
SIGSEGV: [libjvm.so+0x9f42a0], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0x9f42a0], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGFPE: [libjvm.so+0x8558d0], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGPIPE: [libjvm.so+0x8558d0], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGXFSZ: [libjvm.so+0x8558d0], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGILL: [libjvm.so+0x8558d0], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGUSR2: [libjvm.so+0x8557a0], sa_mask[0]=00000000000000000000000000000000, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGHUP: [libjvm.so+0x855990], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGINT: SIG_IGN, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGTERM: [libjvm.so+0x855990], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO
SIGQUIT: [libjvm.so+0x855990], sa_mask[0]=11111111011111111101111111111110, 
sa_flags=SA_RESTART|SA_SIGINFO


---------------  S Y S T E M  ---------------

OS:DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.4 LTS"

uname:Linux 2.6.32-37-pve #1 SMP Wed Feb 11 10:00:27 CET 2015 x86_64
libc:glibc 2.19 NPTL 2.19 
rlimit: STACK 10240k, CORE 0k, NPROC 128130, NOFILE 4096, AS infinity
load average:1.90 1.62 0.93

/proc/meminfo:
MemTotal:       33554432 kB
MemFree:        17822240 kB
Cached:            24476 kB
Buffers:               0 kB
Active:          7554620 kB
Inactive:        8127516 kB
Active(anon):    7552184 kB
Inactive(anon):  8114828 kB
Active(file):       2436 kB
Inactive(file):    12688 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:       8388608 kB
SwapFree:        5114508 kB
Dirty:                52 kB
Writeback:             0 kB
AnonPages:      15667012 kB
Shmem:              9352 kB
Slab:              49940 kB
SReclaimable:       4072 kB
SUnreclaim:        45868 kB


CPU:total 4 (4 cores per cpu, 1 threads per core) family 6 model 30 stepping 5, 
cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, tsc, 
tscinvbit

/proc/cpuinfo:
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 30
model name      : Intel(R) Xeon(R) CPU           X3430  @ 2.40GHz
stepping        : 5
microcode       : 4
cpu MHz         : 2393.971
cache size      : 8192 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 4
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 11
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf 
pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 
popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 4787.94
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 30
model name      : Intel(R) Xeon(R) CPU           X3430  @ 2.40GHz
stepping        : 5
microcode       : 4
cpu MHz         : 2393.971
cache size      : 8192 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 4
apicid          : 2
initial apicid  : 2
fpu             : yes
fpu_exception   : yes
cpuid level     : 11
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov 
pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm 
constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf 
pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 
popcnt lahf_lm ida dtherm tpr_shadow vnmi flexpriority ept vpid
bogomips        : 4787.94
clflush size    : 64
cache_alignment : 64
address sizes   : 36 bits physical, 48 bits virtual
power management:



Memory: 4k page, physical 33554432k(17822348k free), swap 8388608k(5114400k 
free)

vm_info: OpenJDK 64-Bit Server VM (25.72-b15) for linux-amd64 JRE 
(1.8.0_72-internal-b15), built on Jan 28 2016 23:42:34 by "buildd" with gcc 
4.8.2

time: Thu May 12 23:14:13 2016
elapsed time: 875 seconds (0d 0h 14m 35s)

Reply via email to