摘要:
为了分析系统中的性能瓶颈,申请装了JProfile8(...公司可提供的最新版本...),来了解学习一下监控原理和实操运用。 https://www.ej-technologies.com/products/jprofiler/overview.html https://www.ej-technol 阅读全文
摘要:
背景:项目升级ActiveMQ启用Cluster模式后,在压力场景下发生消息被重复发送的情况;而刚好系统的消息接收服务没有过滤重复消息的机制,造成系统发出多次重复PUT消息的请求;而远程外接系统针对重复的PUT消息请求会返回409,又刚好触发系统针对409返回的retry机制导致PUT消息再次被多次 阅读全文
摘要:
参考:https://www.cnblogs.com/vana/p/9983270.html 阅读全文
摘要:
背景:项目上千个自动化回归测试用例,以及数百个手工测试用例,如何管理和整合,CI自动化驱动,以及建立自动化测试开发方案和计划,给stakeholders解释自动化测试ROI等等。 参考: https://www.softwaretestinghelp.com/manual-to-automation 阅读全文
摘要:
Figure 8-1: Handoffs between engineering roles To design for change, make the components of your system Self-contained Independent Well-documented Sta 阅读全文
摘要:
Figure 2-1: z/OS UNIX with open systems interfaces Figure 2-2: Examples of a parent process issuing fork() and spawn() Figure 2-3: z/OS UNIX physical 阅读全文
摘要:
背景:项目开发测试环境的数据库表空间满,爆 ORA-01654: unable to extend index xxxxxx in tablespace xxxxxx. 经查表空间使用率已达100%。删除老旧数据即可。 其他参考: https://blog.csdn.net/jiangqingyao 阅读全文
摘要:
背景:项目测试遇到一个bug,由于Oracle数据库字段定义类型与后台hibernate类型不匹配造成。 参考:https://blog.csdn.net/yzy199391/article/details/80536419 ps:在oracle中,不同长度的number类型我们可以映射为不同的ja 阅读全文
摘要:
背景: 项目线上使用的中间件ActiveMQ遇到连续FailoverTransport error,reason: org.apache.activemq.transport.InactivityIOException: Channel was inactive for too (>30000) l 阅读全文
摘要:
参考:https://www.jianshu.com/p/89f927fe724f 缓冲区就是在内存中预留指定大小的存储空间对I/O数据作临时存储,这部分内存空间即为缓冲区。使用缓冲区可以减少动态分配和回数内存的次数。在java NIO中,缓冲区的作用也是用来临时存储数据。缓冲区可以看作通道(cha 阅读全文