添加摄像头功能调试成功
parent
2694213e78
commit
7ba902d71d
|
@ -87,6 +87,7 @@ public class CameraController extends CommonResult {
|
||||||
@NoRepeatSubmitAnnotation(prefix = "camera/insert")
|
@NoRepeatSubmitAnnotation(prefix = "camera/insert")
|
||||||
public CommonResult insert(@RequestBody @Valid InsertFaceCamera insertFaceCamera) {
|
public CommonResult insert(@RequestBody @Valid InsertFaceCamera insertFaceCamera) {
|
||||||
try {
|
try {
|
||||||
|
System.out.println("进入添加摄像头方法");
|
||||||
faceCameraServiceImpl.insertCamera(insertFaceCamera);
|
faceCameraServiceImpl.insertCamera(insertFaceCamera);
|
||||||
} catch (DkException e) {
|
} catch (DkException e) {
|
||||||
return failResult(e.getMessage());
|
return failResult(e.getMessage());
|
||||||
|
|
|
@ -107,11 +107,13 @@ public class CompareServiceImpl implements ICompareService {
|
||||||
if (compareRequestVo.getUrlList().size() != comparePicSize) {
|
if (compareRequestVo.getUrlList().size() != comparePicSize) {
|
||||||
throw new DkException("请上传1:1比对的两张图片");
|
throw new DkException("请上传1:1比对的两张图片");
|
||||||
}
|
}
|
||||||
String apiUrl = apiServerPrefix + ApiUrlEnum.FACE_COMPARISON.getUrl();
|
// String apiUrl = apiServerPrefix + ApiUrlEnum.FACE_COMPARISON.getUrl();
|
||||||
|
String apiUrltest = "192.168.1.196:5403/compare";
|
||||||
FaceCompareVO faceCompareVO = new FaceCompareVO();
|
FaceCompareVO faceCompareVO = new FaceCompareVO();
|
||||||
faceCompareVO.setImage1(compareRequestVo.getUrlList().get(0));
|
faceCompareVO.setImage1(compareRequestVo.getUrlList().get(0));
|
||||||
faceCompareVO.setImage2(compareRequestVo.getUrlList().get(1));
|
faceCompareVO.setImage2(compareRequestVo.getUrlList().get(1));
|
||||||
ReturnVO returnVO = (ReturnVO)httpUtil.post(apiUrl, faceCompareVO, ReturnVO.class);
|
ReturnVO returnVO = (ReturnVO)httpUtil.post(apiUrltest, faceCompareVO, ReturnVO.class);
|
||||||
|
//
|
||||||
ApiFaceOneSearchReturnFaceVO apiFaceOneSearchReturnFaceVO = JsonUtil.string2Obj(JsonUtil.obj2String(returnVO.getData()), new TypeReference<ApiFaceOneSearchReturnFaceVO>() {});
|
ApiFaceOneSearchReturnFaceVO apiFaceOneSearchReturnFaceVO = JsonUtil.string2Obj(JsonUtil.obj2String(returnVO.getData()), new TypeReference<ApiFaceOneSearchReturnFaceVO>() {});
|
||||||
//返回结果集
|
//返回结果集
|
||||||
OneToOneResultVo oneToOneResultVo = new OneToOneResultVo();
|
OneToOneResultVo oneToOneResultVo = new OneToOneResultVo();
|
||||||
|
@ -136,6 +138,7 @@ public class CompareServiceImpl implements ICompareService {
|
||||||
throw new DkException("文件上传失败");
|
throw new DkException("文件上传失败");
|
||||||
}
|
}
|
||||||
String imag = map1.getString("url");
|
String imag = map1.getString("url");
|
||||||
|
//人脸检测方法
|
||||||
validateSingleFaceImage(imag);
|
validateSingleFaceImage(imag);
|
||||||
return imag;
|
return imag;
|
||||||
|
|
||||||
|
|
|
@ -115,20 +115,28 @@ public class FaceCameraServiceImpl extends ServiceImpl<FaceCameraDao, FaceCamera
|
||||||
@Transactional(rollbackFor = Exception.class)
|
@Transactional(rollbackFor = Exception.class)
|
||||||
@Override
|
@Override
|
||||||
public Integer insertCamera(InsertFaceCamera insertFaceCamera) {
|
public Integer insertCamera(InsertFaceCamera insertFaceCamera) {
|
||||||
|
// System.out.println("校验空参数");
|
||||||
if (insertFaceCamera == null) {
|
if (insertFaceCamera == null) {
|
||||||
throw new DkException("参数为空");
|
throw new DkException("参数为空");
|
||||||
}
|
}
|
||||||
//校验经纬度是否重复
|
//校验经纬度是否重复
|
||||||
|
// System.out.println("校验经纬度");
|
||||||
FaceCameraEntity faceCameraInfo = this.findByCoordinate(insertFaceCamera.getCameraLongitude(), insertFaceCamera.getCameraLatitude());
|
FaceCameraEntity faceCameraInfo = this.findByCoordinate(insertFaceCamera.getCameraLongitude(), insertFaceCamera.getCameraLatitude());
|
||||||
if (UtilValidate.isNotEmpty(faceCameraInfo)) {
|
if (UtilValidate.isNotEmpty(faceCameraInfo)) {
|
||||||
throw new DkException("摄像头经纬度坐标重复");
|
throw new DkException("摄像头经纬度坐标重复");
|
||||||
}
|
}
|
||||||
|
// System.out.println(insertFaceCamera.getCameraLongitude());
|
||||||
|
// System.out.println(insertFaceCamera.getCameraLatitude());
|
||||||
//摄像头名称,ip,rtsp地址重复性校验
|
//摄像头名称,ip,rtsp地址重复性校验
|
||||||
|
// System.out.println("校验名称iprtsp地址");
|
||||||
FaceCameraEntity nameEntity = baseMapper.selectOne(new QueryWrapper<FaceCameraEntity>().eq("camera_name", insertFaceCamera.getCameraName().trim()).eq("is_valid", YNEnums.YES.code));
|
FaceCameraEntity nameEntity = baseMapper.selectOne(new QueryWrapper<FaceCameraEntity>().eq("camera_name", insertFaceCamera.getCameraName().trim()).eq("is_valid", YNEnums.YES.code));
|
||||||
FaceCameraEntity ipEntity = baseMapper.selectOne(new QueryWrapper<FaceCameraEntity>().eq("ip", insertFaceCamera.getIp().trim()).eq("is_valid", YNEnums.YES.code));
|
FaceCameraEntity ipEntity = baseMapper.selectOne(new QueryWrapper<FaceCameraEntity>().eq("ip", insertFaceCamera.getIp().trim()).eq("is_valid", YNEnums.YES.code));
|
||||||
FaceCameraEntity rtspUrlEntity = baseMapper.selectOne(new QueryWrapper<FaceCameraEntity>().eq("rtsp_url", insertFaceCamera.getRtspUrl().trim()).eq("is_valid", YNEnums.YES.code));
|
FaceCameraEntity rtspUrlEntity = baseMapper.selectOne(new QueryWrapper<FaceCameraEntity>().eq("rtsp_url", insertFaceCamera.getRtspUrl().trim()).eq("is_valid", YNEnums.YES.code));
|
||||||
//版本码表关联
|
//版本码表关联
|
||||||
SysDictDataEntity brand = sysDictDataDao.selectById(insertFaceCamera.getIdBrand());
|
SysDictDataEntity brand = sysDictDataDao.selectById(insertFaceCamera.getIdBrand());
|
||||||
|
// System.out.println( insertFaceCamera.getCameraName());
|
||||||
|
// System.out.println( insertFaceCamera.getIp());
|
||||||
|
// System.out.println( insertFaceCamera.getRtspUrl());
|
||||||
|
|
||||||
if (UtilValidate.isEmpty(brand)) {
|
if (UtilValidate.isEmpty(brand)) {
|
||||||
throw new DkException("摄像头型号不能为空");
|
throw new DkException("摄像头型号不能为空");
|
||||||
|
@ -144,19 +152,31 @@ public class FaceCameraServiceImpl extends ServiceImpl<FaceCameraDao, FaceCamera
|
||||||
if (rtspUrlEntity != null) {
|
if (rtspUrlEntity != null) {
|
||||||
throw new DkException("摄像头rtsp地址不能重复");
|
throw new DkException("摄像头rtsp地址不能重复");
|
||||||
}
|
}
|
||||||
|
// System.out.println("开始装填map");
|
||||||
Map map = new HashMap();
|
Map map = new HashMap();
|
||||||
map.put("name", insertFaceCamera.getCameraName());
|
map.put("name", insertFaceCamera.getCameraName());
|
||||||
map.put("url", insertFaceCamera.getRtspUrl());
|
map.put("url", insertFaceCamera.getRtspUrl());
|
||||||
ApiVO result = httpUtil.post(link + ApiUrlEnum.CAMERA.getUrl(), map, ApiVO.class);
|
// ApiVO result = httpUtil.post(link + ApiUrlEnum.CAMERA.getUrl(), map, ApiVO.class);
|
||||||
if (result == null || !ErrEnum.OK.getCode().equals(result.getCode())) {
|
// if (result == null || !ErrEnum.OK.getCode().equals(result.getCode())) {
|
||||||
throw new DkException("新增摄像头失败");
|
// throw new DkException("新增摄像头失败");
|
||||||
}
|
// }
|
||||||
|
// System.out.println("创建faceCamera新实体");
|
||||||
FaceCameraEntity faceCameraEntity = new FaceCameraEntity();
|
FaceCameraEntity faceCameraEntity = new FaceCameraEntity();
|
||||||
|
// System.out.println("复制属性到新实体");
|
||||||
BeanUtils.copyProperties(insertFaceCamera, faceCameraEntity);
|
BeanUtils.copyProperties(insertFaceCamera, faceCameraEntity);
|
||||||
|
System.out.println("设置状态码");
|
||||||
faceCameraEntity.setStatus(YNEnums.NO.code);
|
faceCameraEntity.setStatus(YNEnums.NO.code);
|
||||||
JSONObject jsonObject = JSON.parseObject(JSON.toJSONString(result.getData()));
|
// JSONObject jsonObject = JSON.parseObject(JSON.toJSONString(result.getData()));
|
||||||
faceCameraEntity.setIdFaceCamera(Long.parseLong(jsonObject.getString("carmeraId")));
|
// faceCameraEntity.setIdFaceCamera(Long.parseLong(jsonObject.getString("carmeraId")));
|
||||||
String[] regions = faceCameraEntity.getCameraRegionFirstlevel().split(",");
|
// System.out.println("准备获取设置id"+System.currentTimeMillis());
|
||||||
|
faceCameraEntity.setIdFaceCamera(System.currentTimeMillis());
|
||||||
|
// System.out.println("查看获取设置的id");
|
||||||
|
// System.out.println(faceCameraEntity.getIdFaceCamera());
|
||||||
|
|
||||||
|
// String[] regions = faceCameraEntity.getCameraRegionFirstlevel().split(",");
|
||||||
|
System.out.println("获取区域"+insertFaceCamera.getCameraRegionFirstlevel());
|
||||||
|
|
||||||
|
String[] regions = insertFaceCamera.getCameraRegionFirstlevel().split(",");
|
||||||
faceCameraEntity.setCameraRegion(regions[regions.length - 1]);
|
faceCameraEntity.setCameraRegion(regions[regions.length - 1]);
|
||||||
faceCameraEntity.setCameraRegionFirstlevelBackUp("");
|
faceCameraEntity.setCameraRegionFirstlevelBackUp("");
|
||||||
//翻译摄像头区域层级冗余字段
|
//翻译摄像头区域层级冗余字段
|
||||||
|
|
|
@ -0,0 +1,490 @@
|
||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffa8cf12ddf, pid=18436, tid=0x00000000000042dc
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_131-b11) (build 1.8.0_131-b11)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.131-b11 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [avutil-56.dll+0x2ddf]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
# The crash happened outside the Java Virtual Machine in native code.
|
||||||
|
# See problematic frame for where to report the bug.
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x0000000022e44000): JavaThread "scheduling-1" [_thread_in_native, id=17116, stack(0x000000002a110000,0x000000002a210000)]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x0000000000000072, RBX=0x0000000000000000, RCX=0x0000000000000000, RDX=0x00007ffa8b09a94d
|
||||||
|
RSP=0x000000002a20df48, RBP=0x0000000000000000, RSI=0x00007ffa8b093606, RDI=0x00007ffa8b060061
|
||||||
|
R8 =0x0000000000000000, R9 =0x00000000011cefc0, R10=0x0000000000000001, R11=0x000000002a20e000
|
||||||
|
R12=0x000000002a20dfc8, R13=0x0000000000000000, R14=0x000000002a20dfd0, R15=0x00007ffa8b03bf40
|
||||||
|
RIP=0x00007ffa8cf12ddf, EFLAGS=0x0000000000010206
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x000000002a20df48)
|
||||||
|
0x000000002a20df48: 00007ffa8add8f36 0000000000000000
|
||||||
|
0x000000002a20df58: 000000002a20dfc8 0000000000000000
|
||||||
|
0x000000002a20df68: 000000002a20dfd0 00007ffa8b031fa0
|
||||||
|
0x000000002a20df78: 00007ffa8acf30d2 0000000000000000
|
||||||
|
0x000000002a20df88: 0000000000000000 0000000000000000
|
||||||
|
0x000000002a20df98: 0000000021e85440 00007ffa8cf91b18
|
||||||
|
0x000000002a20dfa8: 0000000000000000 000000002a20e270
|
||||||
|
0x000000002a20dfb8: 00000000d6b2be8e 0000000000000000
|
||||||
|
0x000000002a20dfc8: 00000000000000c0 0000000000000000
|
||||||
|
0x000000002a20dfd8: 00007ffa8b148060 0000000000000000
|
||||||
|
0x000000002a20dfe8: 0000000000000000 0000000000000000
|
||||||
|
0x000000002a20dff8: 000000002a20e0cc 00007ffa8b0a5822
|
||||||
|
0x000000002a20e008: 0000000000000000 000000002a20e0d0
|
||||||
|
0x000000002a20e018: 000000002a20e160 000000002a20e168
|
||||||
|
0x000000002a20e028: 000000002a20e270 0000000022e44000
|
||||||
|
0x000000002a20e038: 00007ffa8acf3332 0000000000000000
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffa8cf12ddf)
|
||||||
|
0x00007ffa8cf12dbf: 00 0f b6 02 84 c0 75 18 eb 27 0f 1f 80 00 00 00
|
||||||
|
0x00007ffa8cf12dcf: 00 48 83 c2 01 0f b6 02 48 83 c1 01 84 c0 74 11
|
||||||
|
0x00007ffa8cf12ddf: 3a 01 74 ed 84 c0 0f 94 c0 0f b6 c0 c3 0f 1f 40
|
||||||
|
0x00007ffa8cf12def: 00 4d 85 c0 74 0f 49 89 08 0f b6 02 84 c0 0f 94
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x0000000000000072 is an unknown value
|
||||||
|
RBX=0x0000000000000000 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x00007ffa8b09a94d is an unknown value
|
||||||
|
RSP=0x000000002a20df48 is pointing into the stack for thread: 0x0000000022e44000
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x00007ffa8b093606 is an unknown value
|
||||||
|
RDI=0x00007ffa8b060061 is an unknown value
|
||||||
|
R8 =0x0000000000000000 is an unknown value
|
||||||
|
R9 =0x00000000011cefc0 is an unknown value
|
||||||
|
R10=0x0000000000000001 is an unknown value
|
||||||
|
R11=0x000000002a20e000 is pointing into the stack for thread: 0x0000000022e44000
|
||||||
|
R12=0x000000002a20dfc8 is pointing into the stack for thread: 0x0000000022e44000
|
||||||
|
R13=0x0000000000000000 is an unknown value
|
||||||
|
R14=0x000000002a20dfd0 is pointing into the stack for thread: 0x0000000022e44000
|
||||||
|
R15=0x00007ffa8b03bf40 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x000000002a110000,0x000000002a210000], sp=0x000000002a20df48, free space=1015k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
|
||||||
|
j org.bytedeco.javacpp.avformat.avformat_open_input(Lorg/bytedeco/javacpp/avformat$AVFormatContext;Ljava/lang/String;Lorg/bytedeco/javacpp/avformat$AVInputFormat;Lorg/bytedeco/javacpp/avutil$AVDictionary;)I+0
|
||||||
|
j org.bytedeco.javacv.FFmpegFrameGrabber.startUnsafe()V+624
|
||||||
|
j org.bytedeco.javacv.FFmpegFrameGrabber.start()V+1
|
||||||
|
j com.dkha.server.schedule.CheckCameraTimer.checkCameras()V+89
|
||||||
|
v ~StubRoutines::call_stub
|
||||||
|
J 1968 sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (0 bytes) @ 0x00000000039a897f [0x00000000039a8900+0x7f]
|
||||||
|
J 1967 C1 sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (104 bytes) @ 0x00000000039a979c [0x00000000039a93a0+0x3fc]
|
||||||
|
J 1853 C1 sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (10 bytes) @ 0x000000000394a804 [0x000000000394a7a0+0x64]
|
||||||
|
J 1852 C1 java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (62 bytes) @ 0x000000000394af5c [0x000000000394ae20+0x13c]
|
||||||
|
j org.springframework.scheduling.support.ScheduledMethodRunnable.run()V+19
|
||||||
|
j org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run()V+4
|
||||||
|
j java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;+4
|
||||||
|
j java.util.concurrent.FutureTask.runAndReset$$$capture()Z+47
|
||||||
|
j java.util.concurrent.FutureTask.runAndReset()Z+5
|
||||||
|
j java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z+1
|
||||||
|
j java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V+37
|
||||||
|
j java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V+95
|
||||||
|
j java.util.concurrent.ThreadPoolExecutor$Worker.run()V+5
|
||||||
|
j java.lang.Thread.run()V+11
|
||||||
|
v ~StubRoutines::call_stub
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x0000000022d61800 JavaThread "JavaCPP Deallocator" daemon [_thread_blocked, id=22312, stack(0x0000000026f40000,0x0000000027040000)]
|
||||||
|
0x0000000022d64000 JavaThread "lettuce-eventExecutorLoop-1-3" daemon [_thread_blocked, id=4256, stack(0x000000002e120000,0x000000002e220000)]
|
||||||
|
0x0000000022d66000 JavaThread "elastic-evictor-1" daemon [_thread_blocked, id=4236, stack(0x000000002e020000,0x000000002e120000)]
|
||||||
|
0x0000000022d63000 JavaThread "SimplePauseDetectorThread_2" daemon [_thread_blocked, id=16940, stack(0x000000002df20000,0x000000002e020000)]
|
||||||
|
0x0000000028401800 JavaThread "SimplePauseDetectorThread_1" daemon [_thread_blocked, id=17732, stack(0x000000002de20000,0x000000002df20000)]
|
||||||
|
0x0000000028405800 JavaThread "SimplePauseDetectorThread_0" daemon [_thread_blocked, id=22900, stack(0x000000002dd20000,0x000000002de20000)]
|
||||||
|
0x0000000028408800 JavaThread "Thread-37" daemon [_thread_blocked, id=22772, stack(0x000000002dc20000,0x000000002dd20000)]
|
||||||
|
0x0000000028404800 JavaThread "lettuce-eventExecutorLoop-1-2" daemon [_thread_blocked, id=18904, stack(0x000000002db20000,0x000000002dc20000)]
|
||||||
|
0x0000000028407800 JavaThread "lettuce-nioEventLoop-4-1" daemon [_thread_in_native, id=18900, stack(0x000000002c510000,0x000000002c610000)]
|
||||||
|
0x0000000028406000 JavaThread "RMI TCP Connection(3)-192.168.3.129" daemon [_thread_in_native, id=4240, stack(0x0000000023770000,0x0000000023870000)]
|
||||||
|
0x0000000028403000 JavaThread "DestroyJavaVM" [_thread_blocked, id=15692, stack(0x0000000002f40000,0x0000000003040000)]
|
||||||
|
0x0000000028402800 JavaThread "http-nio-8889-Acceptor-0" daemon [_thread_in_native, id=9024, stack(0x000000002c310000,0x000000002c410000)]
|
||||||
|
0x0000000028407000 JavaThread "http-nio-8889-ClientPoller-1" daemon [_thread_in_native, id=9808, stack(0x000000002c210000,0x000000002c310000)]
|
||||||
|
0x00000000283fa000 JavaThread "http-nio-8889-ClientPoller-0" daemon [_thread_in_native, id=8932, stack(0x000000002c110000,0x000000002c210000)]
|
||||||
|
0x00000000283fd000 JavaThread "http-nio-8889-exec-30" daemon [_thread_blocked, id=19032, stack(0x000000002c010000,0x000000002c110000)]
|
||||||
|
0x0000000028401000 JavaThread "http-nio-8889-exec-29" daemon [_thread_blocked, id=14508, stack(0x000000002bf10000,0x000000002c010000)]
|
||||||
|
0x00000000283fe800 JavaThread "http-nio-8889-exec-28" daemon [_thread_blocked, id=20328, stack(0x000000002be10000,0x000000002bf10000)]
|
||||||
|
0x00000000283ff800 JavaThread "http-nio-8889-exec-27" daemon [_thread_blocked, id=2600, stack(0x000000002bd10000,0x000000002be10000)]
|
||||||
|
0x0000000028400000 JavaThread "http-nio-8889-exec-26" daemon [_thread_blocked, id=2824, stack(0x000000002bc10000,0x000000002bd10000)]
|
||||||
|
0x00000000283f9800 JavaThread "http-nio-8889-exec-25" daemon [_thread_blocked, id=3180, stack(0x000000002bb10000,0x000000002bc10000)]
|
||||||
|
0x00000000283fc800 JavaThread "http-nio-8889-exec-24" daemon [_thread_blocked, id=2872, stack(0x000000002ba10000,0x000000002bb10000)]
|
||||||
|
0x00000000283fb000 JavaThread "http-nio-8889-exec-23" daemon [_thread_blocked, id=19984, stack(0x000000002b910000,0x000000002ba10000)]
|
||||||
|
0x00000000283fb800 JavaThread "http-nio-8889-exec-22" daemon [_thread_blocked, id=21592, stack(0x000000002b810000,0x000000002b910000)]
|
||||||
|
0x00000000283fe000 JavaThread "http-nio-8889-exec-21" daemon [_thread_blocked, id=13932, stack(0x000000002b710000,0x000000002b810000)]
|
||||||
|
0x00000000283e3800 JavaThread "http-nio-8889-exec-20" daemon [_thread_blocked, id=14044, stack(0x000000002b610000,0x000000002b710000)]
|
||||||
|
0x00000000283e0000 JavaThread "http-nio-8889-exec-19" daemon [_thread_blocked, id=13980, stack(0x000000002b510000,0x000000002b610000)]
|
||||||
|
0x00000000283e1800 JavaThread "http-nio-8889-exec-18" daemon [_thread_blocked, id=13992, stack(0x000000002b410000,0x000000002b510000)]
|
||||||
|
0x00000000283e2000 JavaThread "http-nio-8889-exec-17" daemon [_thread_blocked, id=13928, stack(0x000000002b310000,0x000000002b410000)]
|
||||||
|
0x00000000283e3000 JavaThread "http-nio-8889-exec-16" daemon [_thread_blocked, id=22376, stack(0x000000002b210000,0x000000002b310000)]
|
||||||
|
0x00000000283df000 JavaThread "http-nio-8889-exec-15" daemon [_thread_blocked, id=9020, stack(0x000000002b110000,0x000000002b210000)]
|
||||||
|
0x00000000283e4800 JavaThread "http-nio-8889-exec-14" daemon [_thread_blocked, id=19332, stack(0x000000002b010000,0x000000002b110000)]
|
||||||
|
0x00000000283e0800 JavaThread "http-nio-8889-exec-13" daemon [_thread_blocked, id=17904, stack(0x000000002af10000,0x000000002b010000)]
|
||||||
|
0x00000000283d7800 JavaThread "http-nio-8889-exec-12" daemon [_thread_blocked, id=21316, stack(0x000000002ae10000,0x000000002af10000)]
|
||||||
|
0x00000000283d9000 JavaThread "http-nio-8889-exec-11" daemon [_thread_blocked, id=21320, stack(0x000000002ad10000,0x000000002ae10000)]
|
||||||
|
0x00000000283db000 JavaThread "http-nio-8889-exec-10" daemon [_thread_blocked, id=21312, stack(0x000000002ac10000,0x000000002ad10000)]
|
||||||
|
0x00000000283de800 JavaThread "http-nio-8889-exec-9" daemon [_thread_blocked, id=21128, stack(0x000000002ab10000,0x000000002ac10000)]
|
||||||
|
0x00000000283dd000 JavaThread "http-nio-8889-exec-8" daemon [_thread_blocked, id=23012, stack(0x000000002aa10000,0x000000002ab10000)]
|
||||||
|
0x00000000283dd800 JavaThread "http-nio-8889-exec-7" daemon [_thread_blocked, id=2696, stack(0x000000002a910000,0x000000002aa10000)]
|
||||||
|
0x00000000283d6000 JavaThread "http-nio-8889-exec-6" daemon [_thread_blocked, id=14064, stack(0x000000002a810000,0x000000002a910000)]
|
||||||
|
0x00000000283da800 JavaThread "http-nio-8889-exec-5" daemon [_thread_blocked, id=13248, stack(0x000000002a710000,0x000000002a810000)]
|
||||||
|
0x00000000283dc000 JavaThread "http-nio-8889-exec-4" daemon [_thread_blocked, id=16472, stack(0x000000002a610000,0x000000002a710000)]
|
||||||
|
0x00000000283d5000 JavaThread "http-nio-8889-exec-3" daemon [_thread_blocked, id=10448, stack(0x000000002a510000,0x000000002a610000)]
|
||||||
|
0x00000000283d6800 JavaThread "http-nio-8889-exec-2" daemon [_thread_blocked, id=10416, stack(0x000000002a410000,0x000000002a510000)]
|
||||||
|
0x00000000283d8000 JavaThread "http-nio-8889-exec-1" daemon [_thread_blocked, id=7124, stack(0x000000002a310000,0x000000002a410000)]
|
||||||
|
0x00000000283d9800 JavaThread "NioBlockingSelector.BlockPoller-1" daemon [_thread_in_native, id=10356, stack(0x000000002a210000,0x000000002a310000)]
|
||||||
|
=>0x0000000022e44000 JavaThread "scheduling-1" [_thread_in_native, id=17116, stack(0x000000002a110000,0x000000002a210000)]
|
||||||
|
0x0000000022e42800 JavaThread "File Watcher" daemon [_thread_blocked, id=2464, stack(0x0000000026c40000,0x0000000026d40000)]
|
||||||
|
0x0000000022e36800 JavaThread "Live Reload Server" daemon [_thread_in_native, id=6740, stack(0x0000000029c10000,0x0000000029d10000)]
|
||||||
|
0x0000000022e42000 JavaThread "container-0" [_thread_blocked, id=19748, stack(0x0000000029310000,0x0000000029410000)]
|
||||||
|
0x0000000022e3f800 JavaThread "Catalina-utility-2" [_thread_blocked, id=19756, stack(0x0000000029210000,0x0000000029310000)]
|
||||||
|
0x0000000022e43800 JavaThread "Catalina-utility-1" [_thread_blocked, id=19816, stack(0x0000000029110000,0x0000000029210000)]
|
||||||
|
0x0000000022e41000 JavaThread "lettuce-eventExecutorLoop-1-1" daemon [_thread_blocked, id=11556, stack(0x0000000029010000,0x0000000029110000)]
|
||||||
|
0x0000000022e40800 JavaThread "RMI TCP Connection(2)-192.168.3.129" daemon [_thread_in_native, id=9884, stack(0x0000000028b10000,0x0000000028c10000)]
|
||||||
|
0x0000000022e3f000 JavaThread "ForkJoinPool.commonPool-worker-7" daemon [_thread_blocked, id=6116, stack(0x0000000027640000,0x0000000027740000)]
|
||||||
|
0x0000000022e3e000 JavaThread "ForkJoinPool.commonPool-worker-12" daemon [_thread_blocked, id=20216, stack(0x0000000027540000,0x0000000027640000)]
|
||||||
|
0x0000000022e3b000 JavaThread "ForkJoinPool.commonPool-worker-14" daemon [_thread_blocked, id=20172, stack(0x0000000027440000,0x0000000027540000)]
|
||||||
|
0x0000000022e3d800 JavaThread "ForkJoinPool.commonPool-worker-10" daemon [_thread_blocked, id=20320, stack(0x0000000027340000,0x0000000027440000)]
|
||||||
|
0x0000000022e3a800 JavaThread "ForkJoinPool.commonPool-worker-3" daemon [_thread_blocked, id=12564, stack(0x0000000027140000,0x0000000027240000)]
|
||||||
|
0x0000000022e35000 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_blocked, id=12568, stack(0x0000000027040000,0x0000000027140000)]
|
||||||
|
0x0000000022e3c000 JavaThread "ForkJoinPool.commonPool-worker-15" daemon [_thread_blocked, id=3304, stack(0x0000000026e40000,0x0000000026f40000)]
|
||||||
|
0x0000000022e39000 JavaThread "ForkJoinPool.commonPool-worker-6" daemon [_thread_blocked, id=19704, stack(0x0000000026d40000,0x0000000026e40000)]
|
||||||
|
0x0000000022e37800 JavaThread "ForkJoinPool.commonPool-worker-4" daemon [_thread_blocked, id=18044, stack(0x0000000026b40000,0x0000000026c40000)]
|
||||||
|
0x000000002101f000 JavaThread "ForkJoinPool.commonPool-worker-11" daemon [_thread_blocked, id=19640, stack(0x0000000026a40000,0x0000000026b40000)]
|
||||||
|
0x0000000021025000 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_blocked, id=19644, stack(0x0000000026940000,0x0000000026a40000)]
|
||||||
|
0x0000000021024000 JavaThread "ForkJoinPool.commonPool-worker-9" daemon [_thread_blocked, id=2904, stack(0x0000000026840000,0x0000000026940000)]
|
||||||
|
0x0000000024f08000 JavaThread "Druid-ConnectionPool-Destroy-2020339432" daemon [_thread_blocked, id=19628, stack(0x0000000026540000,0x0000000026640000)]
|
||||||
|
0x0000000024f07800 JavaThread "Druid-ConnectionPool-Create-2020339432" daemon [_thread_blocked, id=19672, stack(0x0000000026440000,0x0000000026540000)]
|
||||||
|
0x0000000024d53000 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=19296, stack(0x0000000023870000,0x0000000023970000)]
|
||||||
|
0x0000000020be1800 JavaThread "logback-1" daemon [_thread_blocked, id=16204, stack(0x0000000023f70000,0x0000000024070000)]
|
||||||
|
0x000000002238c800 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=13840, stack(0x0000000023570000,0x0000000023670000)]
|
||||||
|
0x000000002233a800 JavaThread "RMI TCP Connection(1)-192.168.3.129" daemon [_thread_in_native, id=22320, stack(0x0000000023470000,0x0000000023570000)]
|
||||||
|
0x00000000221cd000 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=17580, stack(0x0000000022fc0000,0x00000000230c0000)]
|
||||||
|
0x00000000210dc000 JavaThread "Service Thread" daemon [_thread_blocked, id=3024, stack(0x0000000021ef0000,0x0000000021ff0000)]
|
||||||
|
0x000000002101f800 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=18656, stack(0x0000000021cf0000,0x0000000021df0000)]
|
||||||
|
0x0000000021022000 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=6088, stack(0x0000000021bf0000,0x0000000021cf0000)]
|
||||||
|
0x0000000021020800 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=10612, stack(0x0000000021af0000,0x0000000021bf0000)]
|
||||||
|
0x0000000021021000 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=10856, stack(0x00000000219f0000,0x0000000021af0000)]
|
||||||
|
0x0000000021025800 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=1828, stack(0x00000000218f0000,0x00000000219f0000)]
|
||||||
|
0x000000002101e000 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=17560, stack(0x00000000217f0000,0x00000000218f0000)]
|
||||||
|
0x0000000021015800 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=16464, stack(0x00000000216f0000,0x00000000217f0000)]
|
||||||
|
0x0000000021010800 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=5356, stack(0x00000000215f0000,0x00000000216f0000)]
|
||||||
|
0x0000000021010000 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=18660, stack(0x00000000214f0000,0x00000000215f0000)]
|
||||||
|
0x0000000021007000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=17160, stack(0x00000000213f0000,0x00000000214f0000)]
|
||||||
|
0x0000000021004000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=23208, stack(0x00000000212f0000,0x00000000213f0000)]
|
||||||
|
0x0000000020fdc000 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=22544, stack(0x00000000211f0000,0x00000000212f0000)]
|
||||||
|
0x000000001ec10000 JavaThread "JDWP Command Reader" daemon [_thread_in_native, id=4652, stack(0x00000000208f0000,0x00000000209f0000)]
|
||||||
|
0x000000001ec0f800 JavaThread "JDWP Event Helper Thread" daemon [_thread_blocked, id=17444, stack(0x00000000207f0000,0x00000000208f0000)]
|
||||||
|
0x000000001ec05800 JavaThread "JDWP Transport Listener: dt_socket" daemon [_thread_blocked, id=17440, stack(0x00000000206f0000,0x00000000207f0000)]
|
||||||
|
0x000000001eba4000 JavaThread "Attach Listener" daemon [_thread_blocked, id=1172, stack(0x00000000205f0000,0x00000000206f0000)]
|
||||||
|
0x000000001eb8c800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=19584, stack(0x00000000204f0000,0x00000000205f0000)]
|
||||||
|
0x000000001eb7c000 JavaThread "Finalizer" daemon [_thread_blocked, id=19612, stack(0x00000000203f0000,0x00000000204f0000)]
|
||||||
|
0x000000001d126000 JavaThread "Reference Handler" daemon [_thread_blocked, id=19604, stack(0x00000000202f0000,0x00000000203f0000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
0x000000001eb55000 VMThread [stack: 0x00000000201f0000,0x00000000202f0000] [id=19300]
|
||||||
|
0x00000000221ed800 WatcherThread [stack: 0x00000000230c0000,0x00000000231c0000] [id=3204]
|
||||||
|
|
||||||
|
VM state:not at safepoint (normal execution)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: None
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 781312K, used 37539K [0x000000076c300000, 0x00000007a9600000, 0x00000007c0000000)
|
||||||
|
eden space 756224K, 1% used [0x000000076c300000,0x000000076cf302a0,0x000000079a580000)
|
||||||
|
from space 25088K, 99% used [0x000000079a580000,0x000000079bdf8c58,0x000000079be00000)
|
||||||
|
to space 29184K, 0% used [0x00000007a7980000,0x00000007a7980000,0x00000007a9600000)
|
||||||
|
ParOldGen total 187904K, used 47260K [0x00000006c4800000, 0x00000006cff80000, 0x000000076c300000)
|
||||||
|
object space 187904K, 25% used [0x00000006c4800000,0x00000006c76273a0,0x00000006cff80000)
|
||||||
|
Metaspace used 71407K, capacity 75014K, committed 75056K, reserved 1114112K
|
||||||
|
class space used 9344K, capacity 9998K, committed 10032K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x0000000012770000,0x0000000012f50000] byte_map_base: 0x000000000f14c000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x000000006b91c720
|
||||||
|
Begin Bits: [0x0000000014190000, 0x0000000018070000)
|
||||||
|
End Bits: [0x0000000018070000, 0x000000001bf50000)
|
||||||
|
|
||||||
|
Polling page: 0x0000000001170000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=19393Kb max_used=19393Kb free=226366Kb
|
||||||
|
bounds [0x00000000033b0000, 0x00000000046b0000, 0x00000000123b0000]
|
||||||
|
total_blobs=9461 nmethods=8805 adapters=572
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 21.224 Thread 0x0000000021022000 8953 1 javax.management.openmbean.CompositeType::keySet (26 bytes)
|
||||||
|
Event: 21.224 Thread 0x000000002101f800 8955 1 javax.management.openmbean.SimpleType::isValue (21 bytes)
|
||||||
|
Event: 21.225 Thread 0x0000000021020800 8954 1 javax.management.openmbean.CompositeDataSupport::getCompositeType (5 bytes)
|
||||||
|
Event: 21.225 Thread 0x0000000021020800 nmethod 8954 0x00000000046a0990 code [0x00000000046a0ae0, 0x00000000046a0bf0]
|
||||||
|
Event: 21.225 Thread 0x000000002101f800 nmethod 8955 0x00000000046a0c50 code [0x00000000046a0dc0, 0x00000000046a0f98]
|
||||||
|
Event: 21.225 Thread 0x0000000021022000 nmethod 8953 0x00000000046a10d0 code [0x00000000046a1240, 0x00000000046a1568]
|
||||||
|
Event: 21.232 Thread 0x0000000021021000 8956 1 java.util.Collections$SynchronizedCollection::iterator (10 bytes)
|
||||||
|
Event: 21.232 Thread 0x0000000021020800 8957 ! 1 com.sun.proxy.$Proxy232::value (29 bytes)
|
||||||
|
Event: 21.232 Thread 0x0000000021021000 nmethod 8956 0x00000000046a17d0 code [0x00000000046a1920, 0x00000000046a1a68]
|
||||||
|
Event: 21.232 Thread 0x0000000021020800 nmethod 8957 0x00000000046a1ad0 code [0x00000000046a1c60, 0x00000000046a1f38]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 6.912 GC heap before
|
||||||
|
{Heap before GC invocations=12 (full 2):
|
||||||
|
PSYoungGen total 391168K, used 373248K [0x000000076c300000, 0x0000000790900000, 0x00000007c0000000)
|
||||||
|
eden space 373248K, 100% used [0x000000076c300000,0x0000000782f80000,0x0000000782f80000)
|
||||||
|
from space 17920K, 0% used [0x0000000782f80000,0x0000000782f80000,0x0000000784100000)
|
||||||
|
to space 17408K, 0% used [0x000000078f800000,0x000000078f800000,0x0000000790900000)
|
||||||
|
ParOldGen total 123392K, used 20241K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 16% used [0x00000006c4800000,0x00000006c5bc47c8,0x00000006cc080000)
|
||||||
|
Metaspace used 42244K, capacity 43626K, committed 43824K, reserved 1087488K
|
||||||
|
class space used 5490K, capacity 5843K, committed 5936K, reserved 1048576K
|
||||||
|
Event: 6.917 GC heap after
|
||||||
|
Heap after GC invocations=12 (full 2):
|
||||||
|
PSYoungGen total 548864K, used 13049K [0x000000076c300000, 0x0000000790500000, 0x00000007c0000000)
|
||||||
|
eden space 535552K, 0% used [0x000000076c300000,0x000000076c300000,0x000000078ce00000)
|
||||||
|
from space 13312K, 98% used [0x000000078f800000,0x00000007904be600,0x0000000790500000)
|
||||||
|
to space 17920K, 0% used [0x000000078e200000,0x000000078e200000,0x000000078f380000)
|
||||||
|
ParOldGen total 123392K, used 20265K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 16% used [0x00000006c4800000,0x00000006c5bca7c8,0x00000006cc080000)
|
||||||
|
Metaspace used 42244K, capacity 43626K, committed 43824K, reserved 1087488K
|
||||||
|
class space used 5490K, capacity 5843K, committed 5936K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 8.275 GC heap before
|
||||||
|
{Heap before GC invocations=13 (full 2):
|
||||||
|
PSYoungGen total 548864K, used 548601K [0x000000076c300000, 0x0000000790500000, 0x00000007c0000000)
|
||||||
|
eden space 535552K, 100% used [0x000000076c300000,0x000000078ce00000,0x000000078ce00000)
|
||||||
|
from space 13312K, 98% used [0x000000078f800000,0x00000007904be600,0x0000000790500000)
|
||||||
|
to space 17920K, 0% used [0x000000078e200000,0x000000078e200000,0x000000078f380000)
|
||||||
|
ParOldGen total 123392K, used 20265K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 16% used [0x00000006c4800000,0x00000006c5bca7c8,0x00000006cc080000)
|
||||||
|
Metaspace used 53127K, capacity 55296K, committed 55600K, reserved 1097728K
|
||||||
|
class space used 6915K, capacity 7368K, committed 7472K, reserved 1048576K
|
||||||
|
Event: 8.289 GC heap after
|
||||||
|
Heap after GC invocations=13 (full 2):
|
||||||
|
PSYoungGen total 573952K, used 17914K [0x000000076c300000, 0x000000079d680000, 0x00000007c0000000)
|
||||||
|
eden space 556032K, 0% used [0x000000076c300000,0x000000076c300000,0x000000078e200000)
|
||||||
|
from space 17920K, 99% used [0x000000078e200000,0x000000078f37ebc0,0x000000078f380000)
|
||||||
|
to space 25088K, 0% used [0x000000079be00000,0x000000079be00000,0x000000079d680000)
|
||||||
|
ParOldGen total 123392K, used 34227K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 27% used [0x00000006c4800000,0x00000006c696cf48,0x00000006cc080000)
|
||||||
|
Metaspace used 53127K, capacity 55296K, committed 55600K, reserved 1097728K
|
||||||
|
class space used 6915K, capacity 7368K, committed 7472K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 8.722 GC heap before
|
||||||
|
{Heap before GC invocations=14 (full 2):
|
||||||
|
PSYoungGen total 573952K, used 173227K [0x000000076c300000, 0x000000079d680000, 0x00000007c0000000)
|
||||||
|
eden space 556032K, 27% used [0x000000076c300000,0x0000000775aac0d0,0x000000078e200000)
|
||||||
|
from space 17920K, 99% used [0x000000078e200000,0x000000078f37ebc0,0x000000078f380000)
|
||||||
|
to space 25088K, 0% used [0x000000079be00000,0x000000079be00000,0x000000079d680000)
|
||||||
|
ParOldGen total 123392K, used 34227K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 27% used [0x00000006c4800000,0x00000006c696cf48,0x00000006cc080000)
|
||||||
|
Metaspace used 56665K, capacity 59024K, committed 59160K, reserved 1101824K
|
||||||
|
class space used 7262K, capacity 7752K, committed 7856K, reserved 1048576K
|
||||||
|
Event: 8.730 GC heap after
|
||||||
|
Heap after GC invocations=14 (full 2):
|
||||||
|
PSYoungGen total 781312K, used 5127K [0x000000076c300000, 0x000000079f000000, 0x00000007c0000000)
|
||||||
|
eden space 756224K, 0% used [0x000000076c300000,0x000000076c300000,0x000000079a580000)
|
||||||
|
from space 25088K, 20% used [0x000000079be00000,0x000000079c301f08,0x000000079d680000)
|
||||||
|
to space 25088K, 0% used [0x000000079a580000,0x000000079a580000,0x000000079be00000)
|
||||||
|
ParOldGen total 123392K, used 47920K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 38% used [0x00000006c4800000,0x00000006c76cc248,0x00000006cc080000)
|
||||||
|
Metaspace used 56665K, capacity 59024K, committed 59160K, reserved 1101824K
|
||||||
|
class space used 7262K, capacity 7752K, committed 7856K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 8.730 GC heap before
|
||||||
|
{Heap before GC invocations=15 (full 3):
|
||||||
|
PSYoungGen total 781312K, used 5127K [0x000000076c300000, 0x000000079f000000, 0x00000007c0000000)
|
||||||
|
eden space 756224K, 0% used [0x000000076c300000,0x000000076c300000,0x000000079a580000)
|
||||||
|
from space 25088K, 20% used [0x000000079be00000,0x000000079c301f08,0x000000079d680000)
|
||||||
|
to space 25088K, 0% used [0x000000079a580000,0x000000079a580000,0x000000079be00000)
|
||||||
|
ParOldGen total 123392K, used 47920K [0x00000006c4800000, 0x00000006cc080000, 0x000000076c300000)
|
||||||
|
object space 123392K, 38% used [0x00000006c4800000,0x00000006c76cc248,0x00000006cc080000)
|
||||||
|
Metaspace used 56665K, capacity 59024K, committed 59160K, reserved 1101824K
|
||||||
|
class space used 7262K, capacity 7752K, committed 7856K, reserved 1048576K
|
||||||
|
Event: 8.916 GC heap after
|
||||||
|
Heap after GC invocations=15 (full 3):
|
||||||
|
PSYoungGen total 781312K, used 0K [0x000000076c300000, 0x000000079f000000, 0x00000007c0000000)
|
||||||
|
eden space 756224K, 0% used [0x000000076c300000,0x000000076c300000,0x000000079a580000)
|
||||||
|
from space 25088K, 0% used [0x000000079be00000,0x000000079be00000,0x000000079d680000)
|
||||||
|
to space 25088K, 0% used [0x000000079a580000,0x000000079a580000,0x000000079be00000)
|
||||||
|
ParOldGen total 187904K, used 46528K [0x00000006c4800000, 0x00000006cff80000, 0x000000076c300000)
|
||||||
|
object space 187904K, 24% used [0x00000006c4800000,0x00000006c7570248,0x00000006cff80000)
|
||||||
|
Metaspace used 56555K, capacity 58850K, committed 59160K, reserved 1101824K
|
||||||
|
class space used 7246K, capacity 7723K, committed 7856K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 21.210 GC heap before
|
||||||
|
{Heap before GC invocations=16 (full 3):
|
||||||
|
PSYoungGen total 781312K, used 756224K [0x000000076c300000, 0x000000079f000000, 0x00000007c0000000)
|
||||||
|
eden space 756224K, 100% used [0x000000076c300000,0x000000079a580000,0x000000079a580000)
|
||||||
|
from space 25088K, 0% used [0x000000079be00000,0x000000079be00000,0x000000079d680000)
|
||||||
|
to space 25088K, 0% used [0x000000079a580000,0x000000079a580000,0x000000079be00000)
|
||||||
|
ParOldGen total 187904K, used 46528K [0x00000006c4800000, 0x00000006cff80000, 0x000000076c300000)
|
||||||
|
object space 187904K, 24% used [0x00000006c4800000,0x00000006c7570248,0x00000006cff80000)
|
||||||
|
Metaspace used 71394K, capacity 75014K, committed 75056K, reserved 1114112K
|
||||||
|
class space used 9343K, capacity 9998K, committed 10032K, reserved 1048576K
|
||||||
|
Event: 21.224 GC heap after
|
||||||
|
Heap after GC invocations=16 (full 3):
|
||||||
|
PSYoungGen total 781312K, used 25059K [0x000000076c300000, 0x00000007a9600000, 0x00000007c0000000)
|
||||||
|
eden space 756224K, 0% used [0x000000076c300000,0x000000076c300000,0x000000079a580000)
|
||||||
|
from space 25088K, 99% used [0x000000079a580000,0x000000079bdf8c58,0x000000079be00000)
|
||||||
|
to space 29184K, 0% used [0x00000007a7980000,0x00000007a7980000,0x00000007a9600000)
|
||||||
|
ParOldGen total 187904K, used 47260K [0x00000006c4800000, 0x00000006cff80000, 0x000000076c300000)
|
||||||
|
object space 187904K, 25% used [0x00000006c4800000,0x00000006c76273a0,0x00000006cff80000)
|
||||||
|
Metaspace used 71394K, capacity 75014K, committed 75056K, reserved 1114112K
|
||||||
|
class space used 9343K, capacity 9998K, committed 10032K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (0 events):
|
||||||
|
No events
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794cabab8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794cac518) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794cace80) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794cadcf0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794cae8f0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794caf620) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794cb0e18) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794ccac98) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.536 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794ccbd28) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 20.541 Thread 0x0000000022e44000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x0000000794dfeb88) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT PACKING pc=0x00000000044d8b0c sp=0x000000002a20d120
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT UNPACKING pc=0x00000000033f787f sp=0x000000002a20cf40 mode 1
|
||||||
|
Event: 21.238 loading class org/bytedeco/javacpp/indexer/Indexable
|
||||||
|
Event: 21.238 loading class org/bytedeco/javacpp/indexer/Indexable done
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT PACKING pc=0x00000000037a4a91 sp=0x000000002a20a930
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT UNPACKING pc=0x00000000033f787f sp=0x000000002a20a680 mode 1
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT PACKING pc=0x00000000044d8bc4 sp=0x000000002a20a9b0
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT UNPACKING pc=0x00000000033f787f sp=0x000000002a20a7d0 mode 1
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT PACKING pc=0x00000000044d8b0c sp=0x000000002a20ab40
|
||||||
|
Event: 21.238 Thread 0x0000000022e44000 DEOPT UNPACKING pc=0x00000000033f787f sp=0x000000002a20a960 mode 1
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff728ab0000 - 0x00007ff728ae7000 F:\ProgramFiles\Java\jdk1.8.0_131\bin\java.exe
|
||||||
|
0x00007ffad6c00000 - 0x00007ffad6e09000 C:\Windows\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffad5ef0000 - 0x00007ffad5fae000 C:\Windows\System32\KERNEL32.DLL
|
||||||
|
0x00007ffad4260000 - 0x00007ffad45dc000 C:\Windows\System32\KERNELBASE.dll
|
||||||
|
0x00007ffad4a80000 - 0x00007ffad4b2e000 C:\Windows\System32\ADVAPI32.dll
|
||||||
|
0x00007ffad6b10000 - 0x00007ffad6bb3000 C:\Windows\System32\msvcrt.dll
|
||||||
|
0x00007ffad4c10000 - 0x00007ffad4cae000 C:\Windows\System32\sechost.dll
|
||||||
|
0x00007ffad5fb0000 - 0x00007ffad60d0000 C:\Windows\System32\RPCRT4.dll
|
||||||
|
0x00007ffad6840000 - 0x00007ffad69ed000 C:\Windows\System32\USER32.dll
|
||||||
|
0x00007ffad4230000 - 0x00007ffad4256000 C:\Windows\System32\win32u.dll
|
||||||
|
0x00007ffad5ea0000 - 0x00007ffad5ec9000 C:\Windows\System32\GDI32.dll
|
||||||
|
0x00007ffad4960000 - 0x00007ffad4a78000 C:\Windows\System32\gdi32full.dll
|
||||||
|
0x00007ffad4190000 - 0x00007ffad422d000 C:\Windows\System32\msvcp_win.dll
|
||||||
|
0x00007ffad45e0000 - 0x00007ffad46f1000 C:\Windows\System32\ucrtbase.dll
|
||||||
|
0x00007ffac4990000 - 0x00007ffac4c35000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22000.120_none_9d947278b86cc467\COMCTL32.dll
|
||||||
|
0x00007ffad6180000 - 0x00007ffad61b2000 C:\Windows\System32\IMM32.DLL
|
||||||
|
0x000000006b9a0000 - 0x000000006ba72000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\msvcr100.dll
|
||||||
|
0x000000006b100000 - 0x000000006b99c000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffad5ed0000 - 0x00007ffad5ed8000 C:\Windows\System32\PSAPI.DLL
|
||||||
|
0x00007ffacbb90000 - 0x00007ffacbb99000 C:\Windows\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffad4b30000 - 0x00007ffad4b9f000 C:\Windows\System32\WS2_32.dll
|
||||||
|
0x00007ffad1f60000 - 0x00007ffad1f6a000 C:\Windows\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffacae10000 - 0x00007ffacae43000 C:\Windows\SYSTEM32\WINMM.dll
|
||||||
|
0x000000006b0f0000 - 0x000000006b0ff000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\verify.dll
|
||||||
|
0x000000006b0c0000 - 0x000000006b0e9000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\java.dll
|
||||||
|
0x000000006b080000 - 0x000000006b0b5000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\jdwp.dll
|
||||||
|
0x000000006b070000 - 0x000000006b078000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\npt.dll
|
||||||
|
0x000000006b040000 - 0x000000006b063000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\instrument.dll
|
||||||
|
0x000000006b020000 - 0x000000006b036000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\zip.dll
|
||||||
|
0x00007ffad50c0000 - 0x00007ffad5885000 C:\Windows\System32\SHELL32.dll
|
||||||
|
0x00007ffad21d0000 - 0x00007ffad2a35000 C:\Windows\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffad4d40000 - 0x00007ffad50b8000 C:\Windows\System32\combase.dll
|
||||||
|
0x00007ffad2060000 - 0x00007ffad21c6000 C:\Windows\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffad65a0000 - 0x00007ffad668a000 C:\Windows\System32\SHCORE.dll
|
||||||
|
0x00007ffad5d60000 - 0x00007ffad5dbd000 C:\Windows\System32\shlwapi.dll
|
||||||
|
0x00007ffad4000000 - 0x00007ffad4021000 C:\Windows\SYSTEM32\profapi.dll
|
||||||
|
0x000000006b010000 - 0x000000006b019000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\dt_socket.dll
|
||||||
|
0x00007ffad36e0000 - 0x00007ffad3747000 C:\Windows\system32\mswsock.dll
|
||||||
|
0x000000006aff0000 - 0x000000006b00a000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\net.dll
|
||||||
|
0x00007ffad2da0000 - 0x00007ffad2e88000 C:\Windows\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffad2d70000 - 0x00007ffad2d9d000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffad5ee0000 - 0x00007ffad5ee9000 C:\Windows\System32\NSI.dll
|
||||||
|
0x00007ffac9c20000 - 0x00007ffac9c2a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x00007ffac9f20000 - 0x00007ffac9fa1000 C:\Windows\System32\fwpuclnt.dll
|
||||||
|
0x000000006afe0000 - 0x000000006afed000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\management.dll
|
||||||
|
0x000000006afc0000 - 0x000000006afd1000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\nio.dll
|
||||||
|
0x00007ffad3920000 - 0x00007ffad3938000 C:\Windows\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffad31a0000 - 0x00007ffad31d5000 C:\Windows\system32\rsaenh.dll
|
||||||
|
0x00007ffad37d0000 - 0x00007ffad37f9000 C:\Windows\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffad3ab0000 - 0x00007ffad3ad7000 C:\Windows\SYSTEM32\bcrypt.dll
|
||||||
|
0x00007ffad4700000 - 0x00007ffad477f000 C:\Windows\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffad3940000 - 0x00007ffad394c000 C:\Windows\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffacb220000 - 0x00007ffacb239000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffacb3c0000 - 0x00007ffacb3de000 C:\Windows\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffac0660000 - 0x00007ffac0677000 C:\Windows\system32\napinsp.dll
|
||||||
|
0x00007ffabe230000 - 0x00007ffabe24b000 C:\Windows\system32\pnrpnsp.dll
|
||||||
|
0x00007ffabe210000 - 0x00007ffabe222000 C:\Windows\System32\winrnr.dll
|
||||||
|
0x00007ffaca030000 - 0x00007ffaca045000 C:\Windows\system32\wshbth.dll
|
||||||
|
0x00007ffabe1f0000 - 0x00007ffabe20f000 C:\Windows\system32\nlansp_c.dll
|
||||||
|
0x000000006af90000 - 0x000000006afb4000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\sunec.dll
|
||||||
|
0x000000006af80000 - 0x000000006af8b000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\sunmscapi.dll
|
||||||
|
0x00007ffad47f0000 - 0x00007ffad4952000 C:\Windows\System32\CRYPT32.dll
|
||||||
|
0x00007ffa8cf10000 - 0x00007ffa8cfcb000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avutil-56.dll
|
||||||
|
0x000000006fe00000 - 0x000000006fee7000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavutil.dll
|
||||||
|
0x00007ffab1a50000 - 0x00007ffab1a77000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\swresample-3.dll
|
||||||
|
0x0000000070080000 - 0x00000000700ae000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniswresample.dll
|
||||||
|
0x00007ffa321f0000 - 0x00007ffa34471000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avcodec-58.dll
|
||||||
|
0x00007ffad66a0000 - 0x00007ffad683a000 C:\Windows\System32\ole32.dll
|
||||||
|
0x000000006a1c0000 - 0x000000006a424000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavcodec.dll
|
||||||
|
0x00007ffa8aca0000 - 0x00007ffa8b161000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avformat-58.dll
|
||||||
|
0x000000006abc0000 - 0x000000006ad0a000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavformat.dll
|
||||||
|
0x00007ffa8ce70000 - 0x00007ffa8cf05000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\swscale-5.dll
|
||||||
|
0x0000000067cc0000 - 0x0000000067cf6000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniswscale.dll
|
||||||
|
0x00007ffa8ce40000 - 0x00007ffa8ce6a000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\postproc-55.dll
|
||||||
|
0x000000006a0c0000 - 0x000000006a0ed000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnipostproc.dll
|
||||||
|
0x00007ffa8a910000 - 0x00007ffa8ac91000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avfilter-7.dll
|
||||||
|
0x0000000064400000 - 0x0000000064477000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavfilter.dll
|
||||||
|
0x00007ffa8ce10000 - 0x00007ffa8ce3c000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avdevice-58.dll
|
||||||
|
0x00007ffad5dc0000 - 0x00007ffad5e96000 C:\Windows\System32\OLEAUT32.dll
|
||||||
|
0x00007ffaac170000 - 0x00007ffaac189000 C:\Windows\SYSTEM32\AVICAP32.dll
|
||||||
|
0x00007ffa8cde0000 - 0x00007ffa8ce0b000 C:\Windows\SYSTEM32\MSVFW32.dll
|
||||||
|
0x0000000027240000 - 0x0000000027279000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavdevice.dll
|
||||||
|
0x00007ffad1230000 - 0x00007ffad1451000 C:\Windows\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -Dfile.encoding=UTF-8 -agentlib:jdwp=transport=dt_socket,address=127.0.0.1:14807,suspend=y,server=n -XX:TieredStopAtLevel=1 -Xverify:none -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:C:\Users\Èî\AppData\Local\JetBrains\IntelliJIdea2020.2\captureAgent\debugger-agent.jar -Dfile.encoding=UTF-8
|
||||||
|
java_command: com.dkha.server.FaceServerApplication
|
||||||
|
java_class_path (initial): F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\charsets.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\deploy.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\access-bridge-64.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\cldrdata.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\dnsns.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\jaccess.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\jfxrt.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\localedata.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\nashorn.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunec.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunjce_provider.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunmscapi.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunpkcs11.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\zipfs.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\javaws.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jce.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jfr.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jfxswt.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jsse.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\management-agent.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\plugin.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\resources.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\rt.jar;F:\ProgramFiles\git\face_project_server\face-application\face-server\target\classes;F:\ProgramFiles\git\face_project_server\face-application\face-common\target\classes;F:\Java\maven\repository\com\ecwid\consul\consul-api\1.2.1\consul-api-1.2.1.jar;F:\Java\maven\repository\com\google\code\gson\gson\2.8.5\gson-2.8.5.jar;F:\Java\maven\repository\org\apache\httpcomponents\httpcore\4.4.11\httpcore-4.4.11.jar;F:\Java\maven\repository\org\apache\httpcomponents\httpclient\4.5.8\httpclient-4.5.8.jar;F:\Java\maven\repository\com\auth0\java-jwt\3.2.0\java-jwt-3.2.0.jar;F:\Java\maven\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar;F:\Java\maven\repository\o
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
JAVA_HOME=F:\ProgramFiles\Java\jdk1.8.0_131
|
||||||
|
JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
|
||||||
|
CLASSPATH=.;F:\ProgramFiles\Java\jdk1.8.0_131\lib;F:\ProgramFiles\Java\jdk1.8.0_131\lib\tools.jar
|
||||||
|
PATH=C:\Program Files (x86)\VMware\VMware Workstation\bin\;F:\CUDA\set_up\cuda11.6\bin;F:\CUDA\set_up\cuda11.6\libnvvp;F:\Python310\Scripts\;F:\Java\maven\apache-maven-3.3.9-bin\apache-maven-3.3.9\bin;F:\Python310\;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;F:\Bandizip\;F:\Python\Anaconda;F:\Python\Anaconda\Scripts;F:\Python\Anaconda\Library\bin;F:\Python\Anaconda\Library\mingw-w64\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2022.1.0\;F:\CUDA\set_up\cuda11.6;F:\CUDA\set_up\cuda11.6\bin;F:\CUDA\set_up\cuda11.6\lib\x64;F:\CUDA\set_up\cuda11.6\libnvvp;F:\BaiduNetdiskDownload\hadoop\hadoop-2.7.6\bin;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;D:\Program Files (x86)\NetSarang\Xshell 7\;C:\Program Files\nodejs\;C:\Users\Èî\AppData\Local\Microsoft\WindowsApps;F:\ProgramFiles\Java\jdk1.8.0_131\bin;F:\ryxmysql\mysql-5.7.19-winx64\mysql-5.7.19-winx64\bin;F:\Python\PyCharm Community Edition 2022.2.1\bin;C:\Users\Èî\AppData\Roaming\npm
|
||||||
|
USERNAME=Èî
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 22000 (10.0.22000.1516)
|
||||||
|
|
||||||
|
CPU:total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16474616k(9835940k free), swap 28008952k(14534160k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.131-b11) for windows-amd64 JRE (1.8.0_131-b11), built on Mar 15 2017 01:23:53 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Tue Mar 28 15:12:48 2023
|
||||||
|
elapsed time: 21 seconds (0d 0h 0m 21s)
|
||||||
|
|
|
@ -0,0 +1,486 @@
|
||||||
|
#
|
||||||
|
# A fatal error has been detected by the Java Runtime Environment:
|
||||||
|
#
|
||||||
|
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffab20d2ddf, pid=18668, tid=0x0000000000000ebc
|
||||||
|
#
|
||||||
|
# JRE version: Java(TM) SE Runtime Environment (8.0_131-b11) (build 1.8.0_131-b11)
|
||||||
|
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.131-b11 mixed mode windows-amd64 compressed oops)
|
||||||
|
# Problematic frame:
|
||||||
|
# C [avutil-56.dll+0x2ddf]
|
||||||
|
#
|
||||||
|
# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
|
||||||
|
#
|
||||||
|
# If you would like to submit a bug report, please visit:
|
||||||
|
# http://bugreport.java.com/bugreport/crash.jsp
|
||||||
|
# The crash happened outside the Java Virtual Machine in native code.
|
||||||
|
# See problematic frame for where to report the bug.
|
||||||
|
#
|
||||||
|
|
||||||
|
--------------- T H R E A D ---------------
|
||||||
|
|
||||||
|
Current thread (0x00000000275ed000): JavaThread "scheduling-1" [_thread_in_native, id=3772, stack(0x0000000029740000,0x0000000029840000)]
|
||||||
|
|
||||||
|
siginfo: ExceptionCode=0xc0000005, reading address 0x0000000000000000
|
||||||
|
|
||||||
|
Registers:
|
||||||
|
RAX=0x0000000000000072, RBX=0x0000000000000000, RCX=0x0000000000000000, RDX=0x00007ffa3068a94d
|
||||||
|
RSP=0x000000002983e528, RBP=0x0000000000000000, RSI=0x00007ffa30683606, RDI=0x00007ffa30650061
|
||||||
|
R8 =0x0000000000000000, R9 =0x0000000000baefc0, R10=0x0000000000000001, R11=0x000000002983e500
|
||||||
|
R12=0x000000002983e5a8, R13=0x0000000000000000, R14=0x000000002983e5b0, R15=0x00007ffa3062bf40
|
||||||
|
RIP=0x00007ffab20d2ddf, EFLAGS=0x0000000000010206
|
||||||
|
|
||||||
|
Top of Stack: (sp=0x000000002983e528)
|
||||||
|
0x000000002983e528: 00007ffa303c8f36 0000000000000000
|
||||||
|
0x000000002983e538: 000000002983e5a8 0000000000000000
|
||||||
|
0x000000002983e548: 000000002983e5b0 00007ffa30621fa0
|
||||||
|
0x000000002983e558: 00007ffa302e30d2 0000000000000000
|
||||||
|
0x000000002983e568: 0000000000000000 0000000000000000
|
||||||
|
0x000000002983e578: 0000000021595440 00007ffab2151b18
|
||||||
|
0x000000002983e588: 0000000000000000 000000002983e850
|
||||||
|
0x000000002983e598: 00000000d6b2be8e 0000000000000000
|
||||||
|
0x000000002983e5a8: 00000000000000c0 0000000000000000
|
||||||
|
0x000000002983e5b8: 00007ffa30738060 0000000000000000
|
||||||
|
0x000000002983e5c8: 0000000000000000 0000000000000000
|
||||||
|
0x000000002983e5d8: 000000002983e6ac 00007ffa30695822
|
||||||
|
0x000000002983e5e8: 0000000000000000 000000002983e6b0
|
||||||
|
0x000000002983e5f8: 000000002983e740 000000002983e748
|
||||||
|
0x000000002983e608: 000000002983e850 00000000275ed000
|
||||||
|
0x000000002983e618: 00007ffa302e3332 0000000000000000
|
||||||
|
|
||||||
|
Instructions: (pc=0x00007ffab20d2ddf)
|
||||||
|
0x00007ffab20d2dbf: 00 0f b6 02 84 c0 75 18 eb 27 0f 1f 80 00 00 00
|
||||||
|
0x00007ffab20d2dcf: 00 48 83 c2 01 0f b6 02 48 83 c1 01 84 c0 74 11
|
||||||
|
0x00007ffab20d2ddf: 3a 01 74 ed 84 c0 0f 94 c0 0f b6 c0 c3 0f 1f 40
|
||||||
|
0x00007ffab20d2def: 00 4d 85 c0 74 0f 49 89 08 0f b6 02 84 c0 0f 94
|
||||||
|
|
||||||
|
|
||||||
|
Register to memory mapping:
|
||||||
|
|
||||||
|
RAX=0x0000000000000072 is an unknown value
|
||||||
|
RBX=0x0000000000000000 is an unknown value
|
||||||
|
RCX=0x0000000000000000 is an unknown value
|
||||||
|
RDX=0x00007ffa3068a94d is an unknown value
|
||||||
|
RSP=0x000000002983e528 is pointing into the stack for thread: 0x00000000275ed000
|
||||||
|
RBP=0x0000000000000000 is an unknown value
|
||||||
|
RSI=0x00007ffa30683606 is an unknown value
|
||||||
|
RDI=0x00007ffa30650061 is an unknown value
|
||||||
|
R8 =0x0000000000000000 is an unknown value
|
||||||
|
R9 =0x0000000000baefc0 is an unknown value
|
||||||
|
R10=0x0000000000000001 is an unknown value
|
||||||
|
R11=0x000000002983e500 is pointing into the stack for thread: 0x00000000275ed000
|
||||||
|
R12=0x000000002983e5a8 is pointing into the stack for thread: 0x00000000275ed000
|
||||||
|
R13=0x0000000000000000 is an unknown value
|
||||||
|
R14=0x000000002983e5b0 is pointing into the stack for thread: 0x00000000275ed000
|
||||||
|
R15=0x00007ffa3062bf40 is an unknown value
|
||||||
|
|
||||||
|
|
||||||
|
Stack: [0x0000000029740000,0x0000000029840000], sp=0x000000002983e528, free space=1017k
|
||||||
|
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
|
||||||
|
|
||||||
|
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
|
||||||
|
j org.bytedeco.javacpp.avformat.avformat_open_input(Lorg/bytedeco/javacpp/avformat$AVFormatContext;Ljava/lang/String;Lorg/bytedeco/javacpp/avformat$AVInputFormat;Lorg/bytedeco/javacpp/avutil$AVDictionary;)I+0
|
||||||
|
j org.bytedeco.javacv.FFmpegFrameGrabber.startUnsafe()V+624
|
||||||
|
j org.bytedeco.javacv.FFmpegFrameGrabber.start()V+1
|
||||||
|
j com.dkha.server.schedule.CheckCameraTimer.checkCameras()V+89
|
||||||
|
v ~StubRoutines::call_stub
|
||||||
|
J 1846 sun.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (0 bytes) @ 0x00000000031b75ff [0x00000000031b7580+0x7f]
|
||||||
|
J 1847 C1 sun.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (104 bytes) @ 0x00000000031c3424 [0x00000000031c3060+0x3c4]
|
||||||
|
J 1809 C1 sun.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (10 bytes) @ 0x00000000031a1524 [0x00000000031a14e0+0x44]
|
||||||
|
J 1808 C1 java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object; (62 bytes) @ 0x00000000031a1924 [0x00000000031a1820+0x104]
|
||||||
|
j org.springframework.scheduling.support.ScheduledMethodRunnable.run()V+19
|
||||||
|
j org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run()V+4
|
||||||
|
j java.util.concurrent.Executors$RunnableAdapter.call()Ljava/lang/Object;+4
|
||||||
|
j java.util.concurrent.FutureTask.runAndReset()Z+47
|
||||||
|
j java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$301(Ljava/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask;)Z+1
|
||||||
|
j java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run()V+37
|
||||||
|
j java.util.concurrent.ThreadPoolExecutor.runWorker(Ljava/util/concurrent/ThreadPoolExecutor$Worker;)V+95
|
||||||
|
j java.util.concurrent.ThreadPoolExecutor$Worker.run()V+5
|
||||||
|
j java.lang.Thread.run()V+11
|
||||||
|
v ~StubRoutines::call_stub
|
||||||
|
|
||||||
|
--------------- P R O C E S S ---------------
|
||||||
|
|
||||||
|
Java Threads: ( => current thread )
|
||||||
|
0x0000000027ba6000 JavaThread "JavaCPP Deallocator" daemon [_thread_blocked, id=19604, stack(0x0000000026770000,0x0000000026870000)]
|
||||||
|
0x0000000027ba4800 JavaThread "lettuce-eventExecutorLoop-1-3" daemon [_thread_blocked, id=15476, stack(0x000000002d950000,0x000000002da50000)]
|
||||||
|
0x0000000027ba3800 JavaThread "elastic-evictor-1" daemon [_thread_blocked, id=6624, stack(0x000000002d850000,0x000000002d950000)]
|
||||||
|
0x0000000027ba6800 JavaThread "SimplePauseDetectorThread_2" daemon [_thread_blocked, id=5996, stack(0x000000002d550000,0x000000002d650000)]
|
||||||
|
0x0000000027ba3000 JavaThread "SimplePauseDetectorThread_1" daemon [_thread_blocked, id=5268, stack(0x000000002d450000,0x000000002d550000)]
|
||||||
|
0x0000000027ba2000 JavaThread "SimplePauseDetectorThread_0" daemon [_thread_blocked, id=7100, stack(0x000000002d350000,0x000000002d450000)]
|
||||||
|
0x0000000027ba0800 JavaThread "Thread-30" daemon [_thread_blocked, id=7184, stack(0x000000002d250000,0x000000002d350000)]
|
||||||
|
0x0000000027ba1800 JavaThread "lettuce-eventExecutorLoop-1-2" daemon [_thread_blocked, id=4452, stack(0x000000002d150000,0x000000002d250000)]
|
||||||
|
0x0000000027b9e800 JavaThread "lettuce-nioEventLoop-4-1" daemon [_thread_in_native, id=7608, stack(0x000000002bf40000,0x000000002c040000)]
|
||||||
|
0x0000000027b3f800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=12352, stack(0x0000000022ca0000,0x0000000022da0000)]
|
||||||
|
0x0000000027b3c800 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=22096, stack(0x0000000022ba0000,0x0000000022ca0000)]
|
||||||
|
0x0000000027b3e000 JavaThread "DestroyJavaVM" [_thread_blocked, id=23056, stack(0x0000000002870000,0x0000000002970000)]
|
||||||
|
0x0000000027b42800 JavaThread "http-nio-8889-Acceptor-0" daemon [_thread_in_native, id=22768, stack(0x000000002bb40000,0x000000002bc40000)]
|
||||||
|
0x0000000027b41800 JavaThread "http-nio-8889-ClientPoller-1" daemon [_thread_in_native, id=18528, stack(0x000000002ba40000,0x000000002bb40000)]
|
||||||
|
0x0000000027b3e800 JavaThread "http-nio-8889-ClientPoller-0" daemon [_thread_in_native, id=21020, stack(0x000000002b940000,0x000000002ba40000)]
|
||||||
|
0x0000000027b3d000 JavaThread "http-nio-8889-exec-30" daemon [_thread_blocked, id=17684, stack(0x000000002b840000,0x000000002b940000)]
|
||||||
|
0x0000000027b41000 JavaThread "http-nio-8889-exec-29" daemon [_thread_blocked, id=23040, stack(0x000000002b740000,0x000000002b840000)]
|
||||||
|
0x0000000027b40000 JavaThread "http-nio-8889-exec-28" daemon [_thread_blocked, id=23052, stack(0x000000002b640000,0x000000002b740000)]
|
||||||
|
0x0000000027b35000 JavaThread "http-nio-8889-exec-27" daemon [_thread_blocked, id=2032, stack(0x000000002b540000,0x000000002b640000)]
|
||||||
|
0x0000000027b3b800 JavaThread "http-nio-8889-exec-26" daemon [_thread_blocked, id=1924, stack(0x000000002b440000,0x000000002b540000)]
|
||||||
|
0x0000000027b35800 JavaThread "http-nio-8889-exec-25" daemon [_thread_blocked, id=17660, stack(0x000000002b340000,0x000000002b440000)]
|
||||||
|
0x0000000027b3b000 JavaThread "http-nio-8889-exec-24" daemon [_thread_blocked, id=16904, stack(0x000000002b240000,0x000000002b340000)]
|
||||||
|
0x0000000027b33800 JavaThread "http-nio-8889-exec-23" daemon [_thread_blocked, id=18376, stack(0x000000002b140000,0x000000002b240000)]
|
||||||
|
0x0000000027b3a000 JavaThread "http-nio-8889-exec-22" daemon [_thread_blocked, id=22804, stack(0x000000002b040000,0x000000002b140000)]
|
||||||
|
0x0000000027b38800 JavaThread "http-nio-8889-exec-21" daemon [_thread_blocked, id=23036, stack(0x000000002af40000,0x000000002b040000)]
|
||||||
|
0x0000000027b38000 JavaThread "http-nio-8889-exec-20" daemon [_thread_blocked, id=10908, stack(0x000000002ae40000,0x000000002af40000)]
|
||||||
|
0x0000000027b39800 JavaThread "http-nio-8889-exec-19" daemon [_thread_blocked, id=18064, stack(0x000000002ad40000,0x000000002ae40000)]
|
||||||
|
0x0000000027b37000 JavaThread "http-nio-8889-exec-18" daemon [_thread_blocked, id=18548, stack(0x000000002ac40000,0x000000002ad40000)]
|
||||||
|
0x0000000027b36800 JavaThread "http-nio-8889-exec-17" daemon [_thread_blocked, id=11180, stack(0x000000002ab40000,0x000000002ac40000)]
|
||||||
|
0x0000000027b34000 JavaThread "http-nio-8889-exec-16" daemon [_thread_blocked, id=14356, stack(0x000000002aa40000,0x000000002ab40000)]
|
||||||
|
0x0000000024563800 JavaThread "http-nio-8889-exec-15" daemon [_thread_blocked, id=3944, stack(0x000000002a940000,0x000000002aa40000)]
|
||||||
|
0x00000000275f3000 JavaThread "http-nio-8889-exec-14" daemon [_thread_blocked, id=17592, stack(0x000000002a840000,0x000000002a940000)]
|
||||||
|
0x00000000275f2000 JavaThread "http-nio-8889-exec-13" daemon [_thread_blocked, id=14364, stack(0x000000002a740000,0x000000002a840000)]
|
||||||
|
0x00000000275f9000 JavaThread "http-nio-8889-exec-12" daemon [_thread_blocked, id=1756, stack(0x000000002a640000,0x000000002a740000)]
|
||||||
|
0x00000000275f8000 JavaThread "http-nio-8889-exec-11" daemon [_thread_blocked, id=14380, stack(0x000000002a540000,0x000000002a640000)]
|
||||||
|
0x00000000275f4800 JavaThread "http-nio-8889-exec-10" daemon [_thread_blocked, id=3528, stack(0x000000002a440000,0x000000002a540000)]
|
||||||
|
0x00000000275f7800 JavaThread "http-nio-8889-exec-9" daemon [_thread_blocked, id=17608, stack(0x000000002a340000,0x000000002a440000)]
|
||||||
|
0x00000000275f6800 JavaThread "http-nio-8889-exec-8" daemon [_thread_blocked, id=3868, stack(0x000000002a240000,0x000000002a340000)]
|
||||||
|
0x00000000275f6000 JavaThread "http-nio-8889-exec-7" daemon [_thread_blocked, id=23028, stack(0x000000002a140000,0x000000002a240000)]
|
||||||
|
0x00000000275f5000 JavaThread "http-nio-8889-exec-6" daemon [_thread_blocked, id=23088, stack(0x000000002a040000,0x000000002a140000)]
|
||||||
|
0x00000000275f3800 JavaThread "http-nio-8889-exec-5" daemon [_thread_blocked, id=23048, stack(0x0000000029f40000,0x000000002a040000)]
|
||||||
|
0x00000000275ea800 JavaThread "http-nio-8889-exec-4" daemon [_thread_blocked, id=23044, stack(0x0000000029e40000,0x0000000029f40000)]
|
||||||
|
0x00000000275f1800 JavaThread "http-nio-8889-exec-3" daemon [_thread_blocked, id=23032, stack(0x0000000029d40000,0x0000000029e40000)]
|
||||||
|
0x00000000275e9800 JavaThread "http-nio-8889-exec-2" daemon [_thread_blocked, id=21680, stack(0x0000000029c40000,0x0000000029d40000)]
|
||||||
|
0x00000000275ec000 JavaThread "http-nio-8889-exec-1" daemon [_thread_blocked, id=5768, stack(0x0000000029b40000,0x0000000029c40000)]
|
||||||
|
0x00000000275ed800 JavaThread "NioBlockingSelector.BlockPoller-1" daemon [_thread_in_native, id=7688, stack(0x0000000029a40000,0x0000000029b40000)]
|
||||||
|
=>0x00000000275ed000 JavaThread "scheduling-1" [_thread_in_native, id=3772, stack(0x0000000029740000,0x0000000029840000)]
|
||||||
|
0x00000000275ef000 JavaThread "File Watcher" daemon [_thread_blocked, id=2604, stack(0x0000000029640000,0x0000000029740000)]
|
||||||
|
0x00000000275f0000 JavaThread "Live Reload Server" daemon [_thread_in_native, id=5820, stack(0x0000000026d70000,0x0000000026e70000)]
|
||||||
|
0x00000000275ee800 JavaThread "container-0" [_thread_blocked, id=6032, stack(0x0000000028b40000,0x0000000028c40000)]
|
||||||
|
0x00000000275eb800 JavaThread "Catalina-utility-2" [_thread_blocked, id=22368, stack(0x0000000028a40000,0x0000000028b40000)]
|
||||||
|
0x0000000024565800 JavaThread "Catalina-utility-1" [_thread_blocked, id=22556, stack(0x0000000028940000,0x0000000028a40000)]
|
||||||
|
0x0000000024568800 JavaThread "lettuce-eventExecutorLoop-1-1" daemon [_thread_blocked, id=6840, stack(0x0000000028640000,0x0000000028740000)]
|
||||||
|
0x0000000024566800 JavaThread "RMI TCP Connection(6)-192.168.3.129" daemon [_thread_in_native, id=18364, stack(0x0000000026f70000,0x0000000027070000)]
|
||||||
|
0x0000000024564000 JavaThread "ForkJoinPool.commonPool-worker-7" daemon [_thread_blocked, id=20312, stack(0x0000000026e70000,0x0000000026f70000)]
|
||||||
|
0x000000002456a000 JavaThread "ForkJoinPool.commonPool-worker-14" daemon [_thread_blocked, id=972, stack(0x0000000026c70000,0x0000000026d70000)]
|
||||||
|
0x0000000024569800 JavaThread "ForkJoinPool.commonPool-worker-10" daemon [_thread_blocked, id=2244, stack(0x0000000026b70000,0x0000000026c70000)]
|
||||||
|
0x0000000024568000 JavaThread "ForkJoinPool.commonPool-worker-12" daemon [_thread_blocked, id=9364, stack(0x0000000026970000,0x0000000026a70000)]
|
||||||
|
0x0000000021d7c000 JavaThread "ForkJoinPool.commonPool-worker-1" daemon [_thread_blocked, id=22484, stack(0x0000000026870000,0x0000000026970000)]
|
||||||
|
0x0000000021d7b800 JavaThread "ForkJoinPool.commonPool-worker-15" daemon [_thread_blocked, id=18936, stack(0x0000000026670000,0x0000000026770000)]
|
||||||
|
0x0000000021d7e800 JavaThread "ForkJoinPool.commonPool-worker-6" daemon [_thread_blocked, id=22992, stack(0x0000000026570000,0x0000000026670000)]
|
||||||
|
0x0000000021d7f000 JavaThread "ForkJoinPool.commonPool-worker-13" daemon [_thread_blocked, id=16936, stack(0x0000000026470000,0x0000000026570000)]
|
||||||
|
0x0000000021d78800 JavaThread "ForkJoinPool.commonPool-worker-4" daemon [_thread_blocked, id=18040, stack(0x0000000026370000,0x0000000026470000)]
|
||||||
|
0x0000000021d79000 JavaThread "ForkJoinPool.commonPool-worker-11" daemon [_thread_blocked, id=19768, stack(0x0000000026270000,0x0000000026370000)]
|
||||||
|
0x0000000021d7a800 JavaThread "ForkJoinPool.commonPool-worker-2" daemon [_thread_blocked, id=18216, stack(0x0000000025f70000,0x0000000026070000)]
|
||||||
|
0x0000000021d7d000 JavaThread "ForkJoinPool.commonPool-worker-9" daemon [_thread_blocked, id=2488, stack(0x0000000025e70000,0x0000000025f70000)]
|
||||||
|
0x00000000244e8800 JavaThread "Druid-ConnectionPool-Destroy-161402219" daemon [_thread_blocked, id=17300, stack(0x0000000025b70000,0x0000000025c70000)]
|
||||||
|
0x00000000244e7800 JavaThread "Druid-ConnectionPool-Create-161402219" daemon [_thread_blocked, id=19788, stack(0x0000000025a70000,0x0000000025b70000)]
|
||||||
|
0x0000000024353000 JavaThread "Abandoned connection cleanup thread" daemon [_thread_blocked, id=9016, stack(0x0000000025470000,0x0000000025570000)]
|
||||||
|
0x0000000022495000 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=19652, stack(0x0000000023ba0000,0x0000000023ca0000)]
|
||||||
|
0x0000000022394000 JavaThread "RMI TCP Connection(2)-192.168.3.129" daemon [_thread_in_native, id=11448, stack(0x0000000022da0000,0x0000000022ea0000)]
|
||||||
|
0x0000000021d80800 JavaThread "logback-1" daemon [_thread_blocked, id=16984, stack(0x00000000234a0000,0x00000000235a0000)]
|
||||||
|
0x000000002181b800 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=23164, stack(0x00000000226f0000,0x00000000227f0000)]
|
||||||
|
0x00000000206d3000 JavaThread "Service Thread" daemon [_thread_blocked, id=7012, stack(0x0000000021600000,0x0000000021700000)]
|
||||||
|
0x000000002060b800 JavaThread "C1 CompilerThread11" daemon [_thread_blocked, id=18768, stack(0x0000000021400000,0x0000000021500000)]
|
||||||
|
0x00000000205ef000 JavaThread "C1 CompilerThread10" daemon [_thread_blocked, id=18760, stack(0x0000000021300000,0x0000000021400000)]
|
||||||
|
0x00000000205e6000 JavaThread "C1 CompilerThread9" daemon [_thread_blocked, id=19008, stack(0x0000000021200000,0x0000000021300000)]
|
||||||
|
0x00000000205dd800 JavaThread "C1 CompilerThread8" daemon [_thread_blocked, id=19004, stack(0x0000000021100000,0x0000000021200000)]
|
||||||
|
0x00000000205dc800 JavaThread "C2 CompilerThread7" daemon [_thread_blocked, id=19104, stack(0x0000000021000000,0x0000000021100000)]
|
||||||
|
0x00000000205da000 JavaThread "C2 CompilerThread6" daemon [_thread_blocked, id=19112, stack(0x0000000020f00000,0x0000000021000000)]
|
||||||
|
0x00000000205d9000 JavaThread "C2 CompilerThread5" daemon [_thread_blocked, id=19592, stack(0x0000000020e00000,0x0000000020f00000)]
|
||||||
|
0x00000000205d8800 JavaThread "C2 CompilerThread4" daemon [_thread_blocked, id=19596, stack(0x0000000020d00000,0x0000000020e00000)]
|
||||||
|
0x00000000205d1800 JavaThread "C2 CompilerThread3" daemon [_thread_blocked, id=16344, stack(0x0000000020c00000,0x0000000020d00000)]
|
||||||
|
0x00000000205d1000 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=22548, stack(0x0000000020b00000,0x0000000020c00000)]
|
||||||
|
0x00000000205ce000 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=22128, stack(0x0000000020a00000,0x0000000020b00000)]
|
||||||
|
0x000000002051b800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=13580, stack(0x0000000020900000,0x0000000020a00000)]
|
||||||
|
0x00000000205cd800 JavaThread "Monitor Ctrl-Break" daemon [_thread_in_native, id=5788, stack(0x0000000020800000,0x0000000020900000)]
|
||||||
|
0x000000001e4b9800 JavaThread "Attach Listener" daemon [_thread_blocked, id=9728, stack(0x000000001ff00000,0x0000000020000000)]
|
||||||
|
0x000000001e463800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=15636, stack(0x000000001fe00000,0x000000001ff00000)]
|
||||||
|
0x000000001e43c000 JavaThread "Finalizer" daemon [_thread_blocked, id=5048, stack(0x000000001fc90000,0x000000001fd90000)]
|
||||||
|
0x000000001c9b8800 JavaThread "Reference Handler" daemon [_thread_blocked, id=20740, stack(0x000000001fb90000,0x000000001fc90000)]
|
||||||
|
|
||||||
|
Other Threads:
|
||||||
|
0x000000001e414800 VMThread [stack: 0x000000001fa90000,0x000000001fb90000] [id=5092]
|
||||||
|
0x000000002182b000 WatcherThread [stack: 0x00000000227f0000,0x00000000228f0000] [id=2896]
|
||||||
|
|
||||||
|
VM state:not at safepoint (normal execution)
|
||||||
|
|
||||||
|
VM Mutex/Monitor currently owned by a thread: None
|
||||||
|
|
||||||
|
Heap:
|
||||||
|
PSYoungGen total 506880K, used 223759K [0x000000076c300000, 0x0000000791d80000, 0x00000007c0000000)
|
||||||
|
eden space 479744K, 43% used [0x000000076c300000,0x0000000778e68250,0x0000000789780000)
|
||||||
|
from space 27136K, 57% used [0x0000000789780000,0x000000078a69b9c0,0x000000078b200000)
|
||||||
|
to space 26112K, 0% used [0x0000000790400000,0x0000000790400000,0x0000000791d80000)
|
||||||
|
ParOldGen total 246272K, used 51971K [0x00000006c4800000, 0x00000006d3880000, 0x000000076c300000)
|
||||||
|
object space 246272K, 21% used [0x00000006c4800000,0x00000006c7ac0db0,0x00000006d3880000)
|
||||||
|
Metaspace used 70376K, capacity 73936K, committed 74240K, reserved 1114112K
|
||||||
|
class space used 9310K, capacity 9917K, committed 9984K, reserved 1048576K
|
||||||
|
|
||||||
|
Card table byte_map: [0x0000000012000000,0x00000000127e0000] byte_map_base: 0x000000000e9dc000
|
||||||
|
|
||||||
|
Marking Bits: (ParMarkBitMap*) 0x000000006b91c720
|
||||||
|
Begin Bits: [0x0000000013a20000, 0x0000000017900000)
|
||||||
|
End Bits: [0x0000000017900000, 0x000000001b7e0000)
|
||||||
|
|
||||||
|
Polling page: 0x0000000000b90000
|
||||||
|
|
||||||
|
CodeCache: size=245760Kb used=18809Kb max_used=18809Kb free=226950Kb
|
||||||
|
bounds [0x0000000002c40000, 0x0000000003ea0000, 0x0000000011c40000]
|
||||||
|
total_blobs=9466 nmethods=8805 adapters=569
|
||||||
|
compilation: enabled
|
||||||
|
|
||||||
|
Compilation events (10 events):
|
||||||
|
Event: 17.246 Thread 0x000000002060b800 8879 1 java.lang.Class::asSubclass (22 bytes)
|
||||||
|
Event: 17.246 Thread 0x000000002060b800 nmethod 8879 0x0000000003e9d4d0 code [0x0000000003e9d640, 0x0000000003e9d828]
|
||||||
|
Event: 17.246 Thread 0x000000002060b800 8880 1 java.util.Collections$SynchronizedCollection::iterator (10 bytes)
|
||||||
|
Event: 17.246 Thread 0x000000002060b800 nmethod 8880 0x0000000003e9d910 code [0x0000000003e9da60, 0x0000000003e9dba8]
|
||||||
|
Event: 17.253 Thread 0x00000000205e6000 8881 1 java.util.Hashtable::access$100 (6 bytes)
|
||||||
|
Event: 17.253 Thread 0x00000000205dd800 8882 1 java.util.Hashtable::getIterator (22 bytes)
|
||||||
|
Event: 17.253 Thread 0x00000000205e6000 nmethod 8881 0x0000000003e9dc10 code [0x0000000003e9dd80, 0x0000000003e9df28]
|
||||||
|
Event: 17.253 Thread 0x00000000205dd800 nmethod 8882 0x0000000003e9e010 code [0x0000000003e9e180, 0x0000000003e9e348]
|
||||||
|
Event: 17.260 Thread 0x00000000205ef000 8883 ! 1 com.sun.proxy.$Proxy232::value (29 bytes)
|
||||||
|
Event: 17.260 Thread 0x00000000205ef000 nmethod 8883 0x0000000003e9e3d0 code [0x0000000003e9e540, 0x0000000003e9e7b8]
|
||||||
|
|
||||||
|
GC Heap History (10 events):
|
||||||
|
Event: 3.938 GC heap before
|
||||||
|
{Heap before GC invocations=12 (full 2):
|
||||||
|
PSYoungGen total 323584K, used 306688K [0x000000076c300000, 0x0000000787280000, 0x00000007c0000000)
|
||||||
|
eden space 306688K, 100% used [0x000000076c300000,0x000000077ee80000,0x000000077ee80000)
|
||||||
|
from space 16896K, 0% used [0x000000077ee80000,0x000000077ee80000,0x000000077ff00000)
|
||||||
|
to space 16384K, 0% used [0x0000000786280000,0x0000000786280000,0x0000000787280000)
|
||||||
|
ParOldGen total 158720K, used 21671K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 13% used [0x00000006c4800000,0x00000006c5d29cc8,0x00000006ce300000)
|
||||||
|
Metaspace used 41578K, capacity 43026K, committed 43264K, reserved 1087488K
|
||||||
|
class space used 5471K, capacity 5811K, committed 5888K, reserved 1048576K
|
||||||
|
Event: 3.944 GC heap after
|
||||||
|
Heap after GC invocations=12 (full 2):
|
||||||
|
PSYoungGen total 400896K, used 11837K [0x000000076c300000, 0x0000000786e80000, 0x00000007c0000000)
|
||||||
|
eden space 388608K, 0% used [0x000000076c300000,0x000000076c300000,0x0000000783e80000)
|
||||||
|
from space 12288K, 96% used [0x0000000786280000,0x0000000786e0f690,0x0000000786e80000)
|
||||||
|
to space 16384K, 0% used [0x0000000784e80000,0x0000000784e80000,0x0000000785e80000)
|
||||||
|
ParOldGen total 158720K, used 21687K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 13% used [0x00000006c4800000,0x00000006c5d2dcc8,0x00000006ce300000)
|
||||||
|
Metaspace used 41578K, capacity 43026K, committed 43264K, reserved 1087488K
|
||||||
|
class space used 5471K, capacity 5811K, committed 5888K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 4.590 GC heap before
|
||||||
|
{Heap before GC invocations=13 (full 2):
|
||||||
|
PSYoungGen total 400896K, used 400445K [0x000000076c300000, 0x0000000786e80000, 0x00000007c0000000)
|
||||||
|
eden space 388608K, 100% used [0x000000076c300000,0x0000000783e80000,0x0000000783e80000)
|
||||||
|
from space 12288K, 96% used [0x0000000786280000,0x0000000786e0f690,0x0000000786e80000)
|
||||||
|
to space 16384K, 0% used [0x0000000784e80000,0x0000000784e80000,0x0000000785e80000)
|
||||||
|
ParOldGen total 158720K, used 21687K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 13% used [0x00000006c4800000,0x00000006c5d2dcc8,0x00000006ce300000)
|
||||||
|
Metaspace used 47366K, capacity 49208K, committed 49408K, reserved 1091584K
|
||||||
|
class space used 6240K, capacity 6656K, committed 6656K, reserved 1048576K
|
||||||
|
Event: 4.598 GC heap after
|
||||||
|
Heap after GC invocations=13 (full 2):
|
||||||
|
PSYoungGen total 421376K, used 16370K [0x000000076c300000, 0x000000078c600000, 0x00000007c0000000)
|
||||||
|
eden space 404992K, 0% used [0x000000076c300000,0x000000076c300000,0x0000000784e80000)
|
||||||
|
from space 16384K, 99% used [0x0000000784e80000,0x0000000785e7c880,0x0000000785e80000)
|
||||||
|
to space 20480K, 0% used [0x000000078b200000,0x000000078b200000,0x000000078c600000)
|
||||||
|
ParOldGen total 158720K, used 28423K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 17% used [0x00000006c4800000,0x00000006c63c1ea8,0x00000006ce300000)
|
||||||
|
Metaspace used 47366K, capacity 49208K, committed 49408K, reserved 1091584K
|
||||||
|
class space used 6240K, capacity 6656K, committed 6656K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 5.611 GC heap before
|
||||||
|
{Heap before GC invocations=14 (full 2):
|
||||||
|
PSYoungGen total 421376K, used 363126K [0x000000076c300000, 0x000000078c600000, 0x00000007c0000000)
|
||||||
|
eden space 404992K, 85% used [0x000000076c300000,0x00000007815a1220,0x0000000784e80000)
|
||||||
|
from space 16384K, 99% used [0x0000000784e80000,0x0000000785e7c880,0x0000000785e80000)
|
||||||
|
to space 20480K, 0% used [0x000000078b200000,0x000000078b200000,0x000000078c600000)
|
||||||
|
ParOldGen total 158720K, used 28423K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 17% used [0x00000006c4800000,0x00000006c63c1ea8,0x00000006ce300000)
|
||||||
|
Metaspace used 56611K, capacity 59006K, committed 59096K, reserved 1101824K
|
||||||
|
class space used 7300K, capacity 7787K, committed 7808K, reserved 1048576K
|
||||||
|
Event: 5.623 GC heap after
|
||||||
|
Heap after GC invocations=14 (full 2):
|
||||||
|
PSYoungGen total 500224K, used 20451K [0x000000076c300000, 0x000000078e180000, 0x00000007c0000000)
|
||||||
|
eden space 479744K, 0% used [0x000000076c300000,0x000000076c300000,0x0000000789780000)
|
||||||
|
from space 20480K, 99% used [0x000000078b200000,0x000000078c5f8eb8,0x000000078c600000)
|
||||||
|
to space 27136K, 0% used [0x0000000789780000,0x0000000789780000,0x000000078b200000)
|
||||||
|
ParOldGen total 158720K, used 38752K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 24% used [0x00000006c4800000,0x00000006c6dd8270,0x00000006ce300000)
|
||||||
|
Metaspace used 56611K, capacity 59006K, committed 59096K, reserved 1101824K
|
||||||
|
class space used 7300K, capacity 7787K, committed 7808K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 5.623 GC heap before
|
||||||
|
{Heap before GC invocations=15 (full 3):
|
||||||
|
PSYoungGen total 500224K, used 20451K [0x000000076c300000, 0x000000078e180000, 0x00000007c0000000)
|
||||||
|
eden space 479744K, 0% used [0x000000076c300000,0x000000076c300000,0x0000000789780000)
|
||||||
|
from space 20480K, 99% used [0x000000078b200000,0x000000078c5f8eb8,0x000000078c600000)
|
||||||
|
to space 27136K, 0% used [0x0000000789780000,0x0000000789780000,0x000000078b200000)
|
||||||
|
ParOldGen total 158720K, used 38752K [0x00000006c4800000, 0x00000006ce300000, 0x000000076c300000)
|
||||||
|
object space 158720K, 24% used [0x00000006c4800000,0x00000006c6dd8270,0x00000006ce300000)
|
||||||
|
Metaspace used 56611K, capacity 59006K, committed 59096K, reserved 1101824K
|
||||||
|
class space used 7300K, capacity 7787K, committed 7808K, reserved 1048576K
|
||||||
|
Event: 5.786 GC heap after
|
||||||
|
Heap after GC invocations=15 (full 3):
|
||||||
|
PSYoungGen total 500224K, used 0K [0x000000076c300000, 0x000000078e180000, 0x00000007c0000000)
|
||||||
|
eden space 479744K, 0% used [0x000000076c300000,0x000000076c300000,0x0000000789780000)
|
||||||
|
from space 20480K, 0% used [0x000000078b200000,0x000000078b200000,0x000000078c600000)
|
||||||
|
to space 27136K, 0% used [0x0000000789780000,0x0000000789780000,0x000000078b200000)
|
||||||
|
ParOldGen total 246272K, used 51963K [0x00000006c4800000, 0x00000006d3880000, 0x000000076c300000)
|
||||||
|
object space 246272K, 21% used [0x00000006c4800000,0x00000006c7abedb0,0x00000006d3880000)
|
||||||
|
Metaspace used 56465K, capacity 58772K, committed 59096K, reserved 1101824K
|
||||||
|
class space used 7278K, capacity 7748K, committed 7808K, reserved 1048576K
|
||||||
|
}
|
||||||
|
Event: 7.055 GC heap before
|
||||||
|
{Heap before GC invocations=16 (full 3):
|
||||||
|
PSYoungGen total 500224K, used 479744K [0x000000076c300000, 0x000000078e180000, 0x00000007c0000000)
|
||||||
|
eden space 479744K, 100% used [0x000000076c300000,0x0000000789780000,0x0000000789780000)
|
||||||
|
from space 20480K, 0% used [0x000000078b200000,0x000000078b200000,0x000000078c600000)
|
||||||
|
to space 27136K, 0% used [0x0000000789780000,0x0000000789780000,0x000000078b200000)
|
||||||
|
ParOldGen total 246272K, used 51963K [0x00000006c4800000, 0x00000006d3880000, 0x000000076c300000)
|
||||||
|
object space 246272K, 21% used [0x00000006c4800000,0x00000006c7abedb0,0x00000006d3880000)
|
||||||
|
Metaspace used 63416K, capacity 66656K, committed 66944K, reserved 1107968K
|
||||||
|
class space used 8384K, capacity 8979K, committed 9088K, reserved 1048576K
|
||||||
|
Event: 7.065 GC heap after
|
||||||
|
Heap after GC invocations=16 (full 3):
|
||||||
|
PSYoungGen total 506880K, used 15470K [0x000000076c300000, 0x0000000791d80000, 0x00000007c0000000)
|
||||||
|
eden space 479744K, 0% used [0x000000076c300000,0x000000076c300000,0x0000000789780000)
|
||||||
|
from space 27136K, 57% used [0x0000000789780000,0x000000078a69b9c0,0x000000078b200000)
|
||||||
|
to space 26112K, 0% used [0x0000000790400000,0x0000000790400000,0x0000000791d80000)
|
||||||
|
ParOldGen total 246272K, used 51971K [0x00000006c4800000, 0x00000006d3880000, 0x000000076c300000)
|
||||||
|
object space 246272K, 21% used [0x00000006c4800000,0x00000006c7ac0db0,0x00000006d3880000)
|
||||||
|
Metaspace used 63416K, capacity 66656K, committed 66944K, reserved 1107968K
|
||||||
|
class space used 8384K, capacity 8979K, committed 9088K, reserved 1048576K
|
||||||
|
}
|
||||||
|
|
||||||
|
Deoptimization events (0 events):
|
||||||
|
No events
|
||||||
|
|
||||||
|
Internal exceptions (10 events):
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b0008) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b0a68) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b13d0) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b2240) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b2e40) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b3b70) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734b5368) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734cf1e8) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.057 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007734d0278) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
Event: 17.061 Thread 0x00000000275ed000 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000007735ebe28) thrown at [C:\re\workspace\8-2-build-windows-amd64-cygwin\jdk8u131\8869\hotspot\src\share\vm\runtime\sharedRuntime.cpp, line 605]
|
||||||
|
|
||||||
|
Events (10 events):
|
||||||
|
Event: 17.252 loading class org/bytedeco/javacv/FrameGrabber$ImageMode
|
||||||
|
Event: 17.252 loading class org/bytedeco/javacv/FrameGrabber$ImageMode done
|
||||||
|
Event: 17.253 loading class org/bytedeco/javacv/FrameGrabber$SampleMode
|
||||||
|
Event: 17.253 loading class org/bytedeco/javacv/FrameGrabber$SampleMode done
|
||||||
|
Event: 17.253 loading class java/util/concurrent/Executors$FinalizableDelegatedExecutorService
|
||||||
|
Event: 17.253 loading class java/util/concurrent/Executors$FinalizableDelegatedExecutorService done
|
||||||
|
Event: 17.264 loading class org/bytedeco/javacv/Frame
|
||||||
|
Event: 17.264 loading class org/bytedeco/javacv/Frame done
|
||||||
|
Event: 17.265 loading class org/bytedeco/javacpp/indexer/Indexable
|
||||||
|
Event: 17.265 loading class org/bytedeco/javacpp/indexer/Indexable done
|
||||||
|
|
||||||
|
|
||||||
|
Dynamic libraries:
|
||||||
|
0x00007ff728ab0000 - 0x00007ff728ae7000 F:\ProgramFiles\Java\jdk1.8.0_131\bin\java.exe
|
||||||
|
0x00007ffad6c00000 - 0x00007ffad6e09000 C:\Windows\SYSTEM32\ntdll.dll
|
||||||
|
0x00007ffad5ef0000 - 0x00007ffad5fae000 C:\Windows\System32\KERNEL32.DLL
|
||||||
|
0x00007ffad4260000 - 0x00007ffad45dc000 C:\Windows\System32\KERNELBASE.dll
|
||||||
|
0x00007ffad4a80000 - 0x00007ffad4b2e000 C:\Windows\System32\ADVAPI32.dll
|
||||||
|
0x00007ffad6b10000 - 0x00007ffad6bb3000 C:\Windows\System32\msvcrt.dll
|
||||||
|
0x00007ffad4c10000 - 0x00007ffad4cae000 C:\Windows\System32\sechost.dll
|
||||||
|
0x00007ffad5fb0000 - 0x00007ffad60d0000 C:\Windows\System32\RPCRT4.dll
|
||||||
|
0x00007ffad6840000 - 0x00007ffad69ed000 C:\Windows\System32\USER32.dll
|
||||||
|
0x00007ffad4230000 - 0x00007ffad4256000 C:\Windows\System32\win32u.dll
|
||||||
|
0x00007ffad5ea0000 - 0x00007ffad5ec9000 C:\Windows\System32\GDI32.dll
|
||||||
|
0x00007ffad4960000 - 0x00007ffad4a78000 C:\Windows\System32\gdi32full.dll
|
||||||
|
0x00007ffad4190000 - 0x00007ffad422d000 C:\Windows\System32\msvcp_win.dll
|
||||||
|
0x00007ffad45e0000 - 0x00007ffad46f1000 C:\Windows\System32\ucrtbase.dll
|
||||||
|
0x00007ffac4990000 - 0x00007ffac4c35000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22000.120_none_9d947278b86cc467\COMCTL32.dll
|
||||||
|
0x00007ffad6180000 - 0x00007ffad61b2000 C:\Windows\System32\IMM32.DLL
|
||||||
|
0x000000006b9a0000 - 0x000000006ba72000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\msvcr100.dll
|
||||||
|
0x000000006b100000 - 0x000000006b99c000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\server\jvm.dll
|
||||||
|
0x00007ffad5ed0000 - 0x00007ffad5ed8000 C:\Windows\System32\PSAPI.DLL
|
||||||
|
0x00007ffacbb90000 - 0x00007ffacbb99000 C:\Windows\SYSTEM32\WSOCK32.dll
|
||||||
|
0x00007ffad4b30000 - 0x00007ffad4b9f000 C:\Windows\System32\WS2_32.dll
|
||||||
|
0x00007ffad1f60000 - 0x00007ffad1f6a000 C:\Windows\SYSTEM32\VERSION.dll
|
||||||
|
0x00007ffacae10000 - 0x00007ffacae43000 C:\Windows\SYSTEM32\WINMM.dll
|
||||||
|
0x000000006b0f0000 - 0x000000006b0ff000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\verify.dll
|
||||||
|
0x000000006b0c0000 - 0x000000006b0e9000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\java.dll
|
||||||
|
0x000000006b090000 - 0x000000006b0b3000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\instrument.dll
|
||||||
|
0x000000006b070000 - 0x000000006b086000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\zip.dll
|
||||||
|
0x00007ffad50c0000 - 0x00007ffad5885000 C:\Windows\System32\SHELL32.dll
|
||||||
|
0x00007ffad21d0000 - 0x00007ffad2a35000 C:\Windows\SYSTEM32\windows.storage.dll
|
||||||
|
0x00007ffad4d40000 - 0x00007ffad50b8000 C:\Windows\System32\combase.dll
|
||||||
|
0x00007ffad2060000 - 0x00007ffad21c6000 C:\Windows\SYSTEM32\wintypes.dll
|
||||||
|
0x00007ffad65a0000 - 0x00007ffad668a000 C:\Windows\System32\SHCORE.dll
|
||||||
|
0x00007ffad5d60000 - 0x00007ffad5dbd000 C:\Windows\System32\shlwapi.dll
|
||||||
|
0x00007ffad4000000 - 0x00007ffad4021000 C:\Windows\SYSTEM32\profapi.dll
|
||||||
|
0x00007ffacbb20000 - 0x00007ffacbb3a000 F:\ProgramFiles\IDEA2020.2\IntelliJ IDEA 2020.2\bin\breakgen64.dll
|
||||||
|
0x000000006b050000 - 0x000000006b06a000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\net.dll
|
||||||
|
0x00007ffad36e0000 - 0x00007ffad3747000 C:\Windows\system32\mswsock.dll
|
||||||
|
0x00007ffad2da0000 - 0x00007ffad2e88000 C:\Windows\SYSTEM32\DNSAPI.dll
|
||||||
|
0x00007ffad2d70000 - 0x00007ffad2d9d000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
|
||||||
|
0x00007ffad5ee0000 - 0x00007ffad5ee9000 C:\Windows\System32\NSI.dll
|
||||||
|
0x00007ffac9c20000 - 0x00007ffac9c2a000 C:\Windows\System32\rasadhlp.dll
|
||||||
|
0x00007ffac9f20000 - 0x00007ffac9fa1000 C:\Windows\System32\fwpuclnt.dll
|
||||||
|
0x000000006b040000 - 0x000000006b04d000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\management.dll
|
||||||
|
0x000000006b020000 - 0x000000006b031000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\nio.dll
|
||||||
|
0x00007ffad3920000 - 0x00007ffad3938000 C:\Windows\SYSTEM32\CRYPTSP.dll
|
||||||
|
0x00007ffad31a0000 - 0x00007ffad31d5000 C:\Windows\system32\rsaenh.dll
|
||||||
|
0x00007ffad37d0000 - 0x00007ffad37f9000 C:\Windows\SYSTEM32\USERENV.dll
|
||||||
|
0x00007ffad3ab0000 - 0x00007ffad3ad7000 C:\Windows\SYSTEM32\bcrypt.dll
|
||||||
|
0x00007ffad4700000 - 0x00007ffad477f000 C:\Windows\System32\bcryptprimitives.dll
|
||||||
|
0x00007ffad3940000 - 0x00007ffad394c000 C:\Windows\SYSTEM32\CRYPTBASE.dll
|
||||||
|
0x00007ffacb220000 - 0x00007ffacb239000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL
|
||||||
|
0x00007ffacb3c0000 - 0x00007ffacb3de000 C:\Windows\SYSTEM32\dhcpcsvc.DLL
|
||||||
|
0x00007ffac0660000 - 0x00007ffac0677000 C:\Windows\system32\napinsp.dll
|
||||||
|
0x00007ffabe230000 - 0x00007ffabe24b000 C:\Windows\system32\pnrpnsp.dll
|
||||||
|
0x00007ffabe210000 - 0x00007ffabe222000 C:\Windows\System32\winrnr.dll
|
||||||
|
0x00007ffaca030000 - 0x00007ffaca045000 C:\Windows\system32\wshbth.dll
|
||||||
|
0x00007ffabe1f0000 - 0x00007ffabe20f000 C:\Windows\system32\nlansp_c.dll
|
||||||
|
0x000000006aff0000 - 0x000000006b014000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\sunec.dll
|
||||||
|
0x000000006afe0000 - 0x000000006afeb000 F:\ProgramFiles\Java\jdk1.8.0_131\jre\bin\sunmscapi.dll
|
||||||
|
0x00007ffad47f0000 - 0x00007ffad4952000 C:\Windows\System32\CRYPT32.dll
|
||||||
|
0x00007ffab20d0000 - 0x00007ffab218b000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avutil-56.dll
|
||||||
|
0x000000006fe00000 - 0x000000006fee7000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavutil.dll
|
||||||
|
0x00007ffacbaf0000 - 0x00007ffacbb17000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\swresample-3.dll
|
||||||
|
0x0000000070080000 - 0x00000000700ae000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniswresample.dll
|
||||||
|
0x00007ffa1ce40000 - 0x00007ffa1f0c1000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avcodec-58.dll
|
||||||
|
0x00007ffad66a0000 - 0x00007ffad683a000 C:\Windows\System32\ole32.dll
|
||||||
|
0x000000006a1c0000 - 0x000000006a424000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavcodec.dll
|
||||||
|
0x00007ffa30290000 - 0x00007ffa30751000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avformat-58.dll
|
||||||
|
0x000000006abc0000 - 0x000000006ad0a000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavformat.dll
|
||||||
|
0x00007ffab2030000 - 0x00007ffab20c5000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\swscale-5.dll
|
||||||
|
0x0000000067cc0000 - 0x0000000067cf6000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniswscale.dll
|
||||||
|
0x00007ffab2000000 - 0x00007ffab202a000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\postproc-55.dll
|
||||||
|
0x000000006a0c0000 - 0x000000006a0ed000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jnipostproc.dll
|
||||||
|
0x00007ffa1cab0000 - 0x00007ffa1ce31000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avfilter-7.dll
|
||||||
|
0x0000000064400000 - 0x0000000064477000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavfilter.dll
|
||||||
|
0x00007ffab1fd0000 - 0x00007ffab1ffc000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\avdevice-58.dll
|
||||||
|
0x00007ffad5dc0000 - 0x00007ffad5e96000 C:\Windows\System32\OLEAUT32.dll
|
||||||
|
0x00007ffab1fb0000 - 0x00007ffab1fc9000 C:\Windows\SYSTEM32\AVICAP32.dll
|
||||||
|
0x00007ffab1f80000 - 0x00007ffab1fab000 C:\Windows\SYSTEM32\MSVFW32.dll
|
||||||
|
0x0000000026a80000 - 0x0000000026ab9000 C:\Users\Èî\.javacpp\cache\ffmpeg-4.0.2-1.4.3-windows-x86_64.jar\org\bytedeco\javacpp\windows-x86_64\jniavdevice.dll
|
||||||
|
0x00007ffad1230000 - 0x00007ffad1451000 C:\Windows\SYSTEM32\dbghelp.dll
|
||||||
|
|
||||||
|
VM Arguments:
|
||||||
|
jvm_args: -Dfile.encoding=UTF-8 -XX:TieredStopAtLevel=1 -Xverify:none -Dspring.output.ansi.enabled=always -Dcom.sun.management.jmxremote -Dspring.jmx.enabled=true -Dspring.liveBeansView.mbeanDomain -Dspring.application.admin.enabled=true -javaagent:F:\ProgramFiles\IDEA2020.2\IntelliJ IDEA 2020.2\lib\idea_rt.jar=14951:F:\ProgramFiles\IDEA2020.2\IntelliJ IDEA 2020.2\bin -Dfile.encoding=UTF-8
|
||||||
|
java_command: com.dkha.server.FaceServerApplication
|
||||||
|
java_class_path (initial): F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\charsets.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\deploy.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\access-bridge-64.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\cldrdata.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\dnsns.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\jaccess.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\jfxrt.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\localedata.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\nashorn.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunec.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunjce_provider.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunmscapi.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\sunpkcs11.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\ext\zipfs.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\javaws.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jce.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jfr.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jfxswt.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\jsse.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\management-agent.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\plugin.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\resources.jar;F:\ProgramFiles\Java\jdk1.8.0_131\jre\lib\rt.jar;F:\ProgramFiles\git\face_project_server\face-application\face-server\target\classes;F:\ProgramFiles\git\face_project_server\face-application\face-common\target\classes;F:\Java\maven\repository\com\ecwid\consul\consul-api\1.2.1\consul-api-1.2.1.jar;F:\Java\maven\repository\com\google\code\gson\gson\2.8.5\gson-2.8.5.jar;F:\Java\maven\repository\org\apache\httpcomponents\httpcore\4.4.11\httpcore-4.4.11.jar;F:\Java\maven\repository\org\apache\httpcomponents\httpclient\4.5.8\httpclient-4.5.8.jar;F:\Java\maven\repository\com\auth0\java-jwt\3.2.0\java-jwt-3.2.0.jar;F:\Java\maven\repository\commons-codec\commons-codec\1.11\commons-codec-1.11.jar;F:\Java\maven\repository\o
|
||||||
|
Launcher Type: SUN_STANDARD
|
||||||
|
|
||||||
|
Environment Variables:
|
||||||
|
JAVA_HOME=F:\ProgramFiles\Java\jdk1.8.0_131
|
||||||
|
JAVA_TOOL_OPTIONS=-Dfile.encoding=UTF-8
|
||||||
|
CLASSPATH=.;F:\ProgramFiles\Java\jdk1.8.0_131\lib;F:\ProgramFiles\Java\jdk1.8.0_131\lib\tools.jar
|
||||||
|
PATH=C:\Program Files (x86)\VMware\VMware Workstation\bin\;F:\CUDA\set_up\cuda11.6\bin;F:\CUDA\set_up\cuda11.6\libnvvp;F:\Python310\Scripts\;F:\Java\maven\apache-maven-3.3.9-bin\apache-maven-3.3.9\bin;F:\Python310\;C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;F:\Bandizip\;F:\Python\Anaconda;F:\Python\Anaconda\Scripts;F:\Python\Anaconda\Library\bin;F:\Python\Anaconda\Library\mingw-w64\bin;C:\Program Files\NVIDIA Corporation\Nsight Compute 2022.1.0\;F:\CUDA\set_up\cuda11.6;F:\CUDA\set_up\cuda11.6\bin;F:\CUDA\set_up\cuda11.6\lib\x64;F:\CUDA\set_up\cuda11.6\libnvvp;F:\BaiduNetdiskDownload\hadoop\hadoop-2.7.6\bin;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;D:\Program Files (x86)\NetSarang\Xshell 7\;C:\Program Files\nodejs\;C:\Users\Èî\AppData\Local\Microsoft\WindowsApps;F:\ProgramFiles\Java\jdk1.8.0_131\bin;F:\ryxmysql\mysql-5.7.19-winx64\mysql-5.7.19-winx64\bin;F:\Python\PyCharm Community Edition 2022.2.1\bin;C:\Users\Èî\AppData\Roaming\npm
|
||||||
|
USERNAME=Èî
|
||||||
|
OS=Windows_NT
|
||||||
|
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 154 Stepping 3, GenuineIntel
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--------------- S Y S T E M ---------------
|
||||||
|
|
||||||
|
OS: Windows 10.0 , 64 bit Build 22000 (10.0.22000.1516)
|
||||||
|
|
||||||
|
CPU:total 16 (initial active 16) (8 cores per cpu, 2 threads per core) family 6 model 154 stepping 3, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, avx, avx2, aes, clmul, erms, 3dnowpref, lzcnt, ht, tsc, tscinvbit, bmi1, bmi2, adx
|
||||||
|
|
||||||
|
Memory: 4k page, physical 16474616k(9518944k free), swap 28008952k(14430280k free)
|
||||||
|
|
||||||
|
vm_info: Java HotSpot(TM) 64-Bit Server VM (25.131-b11) for windows-amd64 JRE (1.8.0_131-b11), built on Mar 15 2017 01:23:53 by "java_re" with MS VC++ 10.0 (VS2010)
|
||||||
|
|
||||||
|
time: Tue Mar 28 15:14:11 2023
|
||||||
|
elapsed time: 17 seconds (0d 0h 0m 17s)
|
||||||
|
|
Loading…
Reference in New Issue