Hi,
I have indexed *915000 * documents into solr. I double check with my
database, and its the same number of lines/documents. The solr query count
is only 5000. There is no more error.
I have 2 questions. Is there a way to get more log on what is failing?
Secondly, how to fix this indexed document not shown on the query search?
Indexing raw status
{
"responseHeader": {
"status": 0,
"QTime": 0
},
"initArgs": [
"defaults",
[
"config",
"db-data-config.xml"
]
],
"command": "status",
"status": "idle",
"importResponse": "",
"statusMessages": {
"Total Requests made to DataSource": "1",
"Total Rows Fetched": "915000",
"Total Documents Processed": "915000",
"Total Documents Skipped": "0",
"Full Dump Started": "2023-12-07 02:54:29",
"": "Indexing completed. Added/Updated: 915000 documents. Deleted
0 documents.",
"Committed": "2023-12-07 02:54:51",
"Time taken": "0:0:21.831"
}
}
Query count:
{
"responseHeader":{
"status":0,
"QTime":1,
"params":{
"q":"*:*",
"indent":"true",
"q.op":"OR",
"rows":"0",
"_":"1701917720136"}},
"response":{"numFound":5000,"start":0,"numFoundExact":true,"docs":[]
}}
the configuration is
<dataConfig>
<dataSource type="JdbcDataSource"
driver="org.postgresql.Driver"
url="jdbc:postgresql://localhost/world"
user="solrpull"
password="StrongPassword"/>
<document>
<entity name ="city"
pk ="id"
query ="select id, name, update_at FROM city
WHERE ( '${dataimporter.request.clean}' = 'true'
OR update_at >
TO_TIMESTAMP('${dih.last_index_time}', 'YYYY-MM-DD, HH24:MI:SS') -
INTERVAL '180 day' )"
rows ="10000"
>
<field column="id" name="id"/>
<field column="name" name="name"/>
<field column="update_at" name="update_at"/>
</entity>
</document></dataConfig>
the field names in managed-schema is
<!-- docValues are enabled by default for long type so we don't
need to index the version field -->
<field name="_version_" type="plong" indexed="true" stored="true"/>
<!-- If you don't use child/nested documents, then you should
remove the next two fields: -->
<!-- for nested documents (minimal; points to root document) -->
<field name="_root_" type="string" indexed="true" stored="false"
docValues="false" />
<!-- for nested documents (relationship tracking) -->
<field name="_nest_path_" type="_nest_path_" /><fieldType
name="_nest_path_" class="solr.NestPathField" />
<field name="_text_" type="text_general" indexed="true"
stored="false" multiValued="true"/>
<field name="id" type="string" indexed="true"
stored="true" required="true" multiValued="false" />
<field name="name" type="text_general" indexed="true"
stored="true" multiValued="false"/>
<field name="update_at" type="text_general" indexed="true"
stored="true" multiValued="false"/>
The source table def as:
CREATE TABLE IF NOT EXISTS public.city
(
id integer,
name text COLLATE pg_catalog."default",
update_at timestamp without time zone
)
The solr.log
2023-12-07 02:54:29.141 INFO (qtp548482954-28) [ x:p4a]
o.a.s.h.d.DataImporter Loading DIH Configuration: db-data-config.xml
2023-12-07 02:54:29.150 INFO (qtp548482954-28) [ x:p4a]
o.a.s.h.d.DataImporter Data Configuration loaded successfully
2023-12-07 02:54:29.159 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport params={core=p4a&indent=on&commit=true
&name=dataimport&clean=true&rows=99999999
&wt=json&command=full-import&entity=city&_=1701917650497&verbose=true}
status=0 QTime=19
2023-12-07 02:54:29.160 INFO (Thread-31) [ ] o.a.s.h.d.DataImporter
Starting Full Import
2023-12-07 02:54:29.164 INFO (qtp548482954-81) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:29.180 INFO (Thread-31) [ ]
o.a.s.h.d.SimplePropertiesWriter Read dataimport.properties
2023-12-07 02:54:29.300 INFO (Thread-31) [ ] o.a.s.h.d.JdbcDataSource
Creating a connection for entity city with URL: jdbc:
postgresql://localhost/world
2023-12-07 02:54:29.505 INFO (Thread-31) [ ] o.a.s.h.d.JdbcDataSource
Time taken for getConnection(): 206
2023-12-07 02:54:33.626 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=1
2023-12-07 02:54:36.409 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:37.244 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:37.902 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:38.575 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:39.331 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=1
2023-12-07 02:54:40.016 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:40.809 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:41.521 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:42.179 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:42.915 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:43.620 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:44.257 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:44.958 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:45.873 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:46.490 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:47.059 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:47.659 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:48.201 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:48.772 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:49.389 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:49.616 INFO (Thread-31) [ ] o.a.s.h.d.DocBuilder Import
completed successfully
2023-12-07 02:54:49.959 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:50.533 INFO (qtp548482954-76) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:54:50.997 INFO (searcherExecutor-45-thread-1) [ ]
o.a.s.c.QuerySenderListener QuerySenderListener done.
2023-12-07 02:54:51.005 INFO (searcherExecutor-45-thread-1) [ ]
o.a.s.c.SolrCore [p4a] Registered new searcher autowarm time: 9 ms
2023-12-07 02:54:51.005 INFO (Thread-31) [ ]
o.a.s.h.d.SimplePropertiesWriter Read dataimport.properties
2023-12-07 02:54:51.005 INFO (Thread-31) [ ]
o.a.s.h.d.SimplePropertiesWriter Wrote last indexed time to
dataimport.properties
2023-12-07 02:54:51.005 INFO (Thread-31) [ ] o.a.s.h.d.DocBuilder Time
taken = 0:0:21.831
2023-12-07 02:54:51.005 INFO (Thread-31) [ ]
o.a.s.u.p.LogUpdateProcessorFactory [p4a] webapp=/solr path=/dataimport
params={core=p4a&indent=on&commit=true&name=dataimport&clean=true&rows=
99999999&wt=json&command=full-import&entity=city&_=1701917650497&verbose=
true} status=0 QTime=19{deleteByQuery=*:* (-1784590021960925184),add=[1 (
1784590022253477888), 2 (1784590022294372352), 3 (1784590022294372353), 4 (
1784590022294372354), 5 (1784590022294372355), 6 (1784590022294372356), 7 (
1784590022310100992), 8 (1784590022310100993), 9 (1784590022310100994), 10 (
1784590022310100995), ... (915000 adds)],commit=} 0 21872
2023-12-07 02:54:51.171 INFO (qtp548482954-28) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/dataimport
params={indent=on&wt=json&command=status&_=1701917650497} status=0 QTime=0
2023-12-07 02:55:20.144 INFO (qtp548482954-27) [ ] o.a.s.s.HttpSolrCall
[admin] webapp=null path=/admin/cores params={indexInfo=false&wt=json&_=
1701917720111} status=0 QTime=0
2023-12-07 02:55:20.223 INFO (qtp548482954-87) [ ] o.a.s.s.HttpSolrCall
[admin] webapp=null path=/admin/info/system params={wt=json&_=1701917720111}
status=0 QTime=86
2023-12-07 02:55:25.460 INFO (qtp548482954-80) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/select params={q=*:*&indent=true&q.op=OR&rows=0&_=
1701917720136} hits=5000 status=0 QTime=9
2023-12-07 02:55:25.485 INFO (qtp548482954-28) [ ] o.a.s.s.HttpSolrCall
[admin] webapp=null path=/admin/cores params={indexInfo=false&wt=json&_=
1701917720111} status=0 QTime=0
2023-12-07 02:55:25.486 INFO (qtp548482954-87) [ x:p4a] o.a.s.c.S.Request
[p4a] webapp=/solr path=/select params={q=*:*&indent=true&q.op=OR&rows=0&_=
1701917720136} hits=5000 status=0 QTime=1
2023-12-07 02:55:25.576 INFO (qtp548482954-86) [ ] o.a.s.s.HttpSolrCall
[admin] webapp=null path=/admin/info/system params={wt=json&_=1701917720111}
status=0 QTime=88
the solr_gc.log
[2023-12-06T21:52:55.106-0500][4.365s] GC(4) User=0.13s Sys=0.02s Real=0.01s
[2023-12-06T21:54:29.188-0500][98.435s] GC(5) Pause Young (Concurrent
Start) (Metadata GC Threshold)
[2023-12-06T21:54:29.188-0500][98.435s] GC(5) Using 15 workers of 15 for
evacuation
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Pre Evacuate Collection
Set: 0.1ms
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Evacuate Collection Set: 39
.6ms
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Post Evacuate Collection
Set: 1.5ms
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Other: 0.3ms
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Eden regions: 79->0(89)
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Survivor regions: 12->13(13)
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Old regions: 0->7
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Humongous regions: 1->1
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Metaspace:
58711K->58711K(1101824K)
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) Pause Young (Concurrent
Start) (Metadata GC Threshold) 363M->81M(8192M) 41.636ms
[2023-12-06T21:54:29.228-0500][98.476s] GC(5) User=0.13s Sys=0.02s Real=0
.04s
[2023-12-06T21:54:29.228-0500][98.476s] GC(6) Concurrent Cycle
[2023-12-06T21:54:29.228-0500][98.476s] GC(6) Concurrent Clear Claimed Marks
[2023-12-06T21:54:29.228-0500][98.477s] GC(6) Concurrent Clear Claimed
Marks 0.070ms
[2023-12-06T21:54:29.228-0500][98.477s] GC(6) Concurrent Scan Root Regions
[2023-12-06T21:54:29.228-0500][98.482s] GC(6) Concurrent Scan Root Regions 5
.654ms
[2023-12-06T21:54:29.228-0500][98.482s] GC(6) Concurrent Mark (98.482s)
[2023-12-06T21:54:29.228-0500][98.482s] GC(6) Concurrent Mark From Roots
[2023-12-06T21:54:29.228-0500][98.482s] GC(6) Using 4 workers of 4 for
marking
[2023-12-06T21:54:29.239-0500][98.489s] GC(6) Concurrent Mark From Roots 6
.836ms
[2023-12-06T21:54:29.239-0500][98.489s] GC(6) Concurrent Preclean
[2023-12-06T21:54:29.239-0500][98.489s] GC(6) Concurrent Preclean 0.116ms
[2023-12-06T21:54:29.239-0500][98.489s] GC(6) Concurrent Mark
(98.482s, 98.489s)
7.041ms
[2023-12-06T21:54:29.239-0500][98.489s] GC(6) Pause Remark
[2023-12-06T21:54:29.244-0500][98.495s] GC(6) Cleaned string and symbol
table, strings: 33333 processed, 0 removed, symbols: 168533 processed, 737
removed
[2023-12-06T21:54:29.249-0500][98.496s] GC(6) Pause Remark 84M->84M(8192M) 6
.400ms
[2023-12-06T21:54:29.249-0500][98.496s] GC(6) User=0.02s Sys=0.00s Real=0
.01s
[2023-12-06T21:54:29.249-0500][98.496s] GC(6) Concurrent Rebuild Remembered
Sets
[2023-12-06T21:54:29.249-0500][98.500s] GC(6) Concurrent Rebuild Remembered
Sets 3.890ms
[2023-12-06T21:54:29.249-0500][98.500s] GC(6) Pause Cleanup
[2023-12-06T21:54:29.249-0500][98.500s] GC(6) Pause Cleanup 85M->85M(8192M)
0.403ms
[2023-12-06T21:54:29.249-0500][98.500s] GC(6) User=0.00s Sys=0.00s Real=0
.00s
[2023-12-06T21:54:29.249-0500][98.501s] GC(6) Concurrent Cleanup for Next
Mark
[2023-12-06T21:54:29.259-0500][98.506s] GC(6) Concurrent Cleanup for Next
Mark 5.653ms
[2023-12-06T21:54:29.259-0500][98.506s] GC(6) Concurrent Cycle 29.855ms
[2023-12-06T21:54:31.342-0500][100.590s] GC(7) Pause Young (Normal) (G1
Evacuation Pause)
[2023-12-06T21:54:31.342-0500][100.590s] GC(7) Using 15 workers of 15 for
evacuation
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Pre Evacuate Collection
Set: 0.0ms
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Evacuate Collection Set: 15
.1ms
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Post Evacuate Collection
Set: 1.1ms
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Other: 0.2ms
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Eden regions: 89->0(98)
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Survivor regions: 13->4(13)
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Old regions: 7->19
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Humongous regions: 1->1
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Metaspace:
61747K->61747K(1105920K)
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) Pause Young (Normal) (G1
Evacuation Pause) 437M->95M(8192M) 16.516ms
[2023-12-06T21:54:31.348-0500][100.607s] GC(7) User=0.00s Sys=0.00s Real=0
.01s
[2023-12-06T21:54:32.200-0500][101.462s] GC(8) Pause Young (Normal) (G1
Evacuation Pause)
[2023-12-06T21:54:32.200-0500][101.462s] GC(8) Using 15 workers of 15 for
evacuation
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Pre Evacuate Collection
Set: 0.0ms
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Evacuate Collection Set: 2
.5ms
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Post Evacuate Collection
Set: 0.6ms
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Other: 0.2ms
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Eden regions: 98->0(459)
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Survivor regions: 4->6(13)
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Old regions: 19->19
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Humongous regions: 1->1
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Metaspace:
61798K->61798K(1105920K)
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) Pause Young (Normal) (G1
Evacuation Pause) 487M->102M(8192M) 3.479ms
[2023-12-06T21:54:32.215-0500][101.465s] GC(8) User=0.11s Sys=0.00s Real=0
.01s
[2023-12-06T21:54:36.262-0500][105.510s] GC(9) Pause Young (Normal) (G1
Evacuation Pause)
[2023-12-06T21:54:36.262-0500][105.510s] GC(9) Using 15 workers of 15 for
evacuation
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Pre Evacuate Collection
Set: 0.0ms
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Evacuate Collection Set: 10
.0ms
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Post Evacuate Collection
Set: 0.7ms
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Other: 0.2ms
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Eden regions: 459->0(459)
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Survivor regions: 6->16(59)
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Old regions: 19->19
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Humongous regions: 7->5
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Metaspace:
61831K->61831K(1105920K)
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) Pause Young (Normal) (G1
Evacuation Pause) 1962M->157M(8192M) 11.218ms
[2023-12-06T21:54:36.262-0500][105.521s] GC(9) User=0.00s Sys=0.00s Real=0
.00s
[2023-12-06T21:54:42.565-0500][111.819s] GC(10) Pause Young (Normal) (G1
Evacuation Pause)
[2023-12-06T21:54:42.565-0500][111.819s] GC(10) Using 15 workers of 15 for
evacuation
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Pre Evacuate Collection
Set: 0.0ms
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Evacuate Collection Set: 9
.0ms
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Post Evacuate Collection
Set: 0.6ms
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Other: 0.2ms
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Eden regions: 459->0(475)
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Survivor regions: 16->14(60)
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Old regions: 19->19
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Humongous regions: 28->21
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Metaspace:
62604K->62604K(1105920K)
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) Pause Young (Normal) (G1
Evacuation Pause) 2085M->211M(8192M) 10.094ms
[2023-12-06T21:54:42.577-0500][111.829s] GC(10) User=0.05s Sys=0.08s Real=0
.01s
[2023-12-06T21:54:46.875-0500][116.122s] GC(11) Pause Young (Normal) (G1
Evacuation Pause)
[2023-12-06T21:54:46.875-0500][116.122s] GC(11) Using 15 workers of 15 for
evacuation
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Pre Evacuate Collection
Set: 0.0ms
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Evacuate Collection Set: 5
.8ms
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Post Evacuate Collection
Set: 0.8ms
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Other: 0.2ms
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Eden regions: 475->0(1221)
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Survivor regions: 14->7(62)
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Old regions: 19->19
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Humongous regions: 21->1
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Metaspace:
63371K->63371K(1105920K)
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) Pause Young (Normal) (G1
Evacuation Pause) 2111M->105M(8192M) 6.984ms
[2023-12-06T21:54:46.882-0500][116.129s] GC(11) User=0.00s Sys=0.02s Real=0
.01s