search
HomeDatabaseMysql Tutorial关于Amoeba读取longblob字段的问题_MySQL

bitsCN.com

最近有一个应用使用Amoeba从几个库中读取MySQL中含有longblob字段的表,老是报Session was killed。

经查是Amoeba中可读通道的缓存大小引起的。原来在com.meidusa.amoeba.net.io.PacketInputStream类中,有一个属性maxPacketSize,限制了可读通道的缓存大小,如果当前读取的记录的长度大于maxPacketSize,就会报错。所以我们必须把它调大点。

Java代码 
/** 最大容量 */ 
protected static final int MAX_BUFFER_CAPACITY = 1024 * 1024 * 2; 
private int maxPacketSize = MAX_BUFFER_CAPACITY; 
 
 
public int getMaxPacketSize() { 
    return maxPacketSize; 

 
public void setMaxPacketSize(int maxPacketSize) { 
    this.maxPacketSize = maxPacketSize; 

maxPacketSize默认是2MB,但是发现setMaxPacketSize方法没有在其它地方有调用,应该是不可配置的,因此我直接修改了MAX_BUFFER_CAPACITY,重新打包扔上去就没问题了。


另外,当maxPacketSize大小不足时,用SQLYog连代理时的时候,发现一个有趣的现象。假如我有一表,各字段长度如下:
field1 | field2
1M     | 3M

如果我先执行:SELECT field2 FROM tab
这时出错:Lost connection to MySQL server during query
再执行:SELECT field1 FROM tab
SQLYog就没有响应了,然后amoeba抛OOM异常,屡试不爽。查DUMP文件后,发现AuthingableConnectionManager 和 Log4j的DailyRollingFileAppender塞满了内存。

bitsCN.com
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Go语言中chan通道是什么Go语言中chan通道是什么Jan 10, 2023 pm 06:55 PM

在Go语言中,通道(chan)是goroutine之间通信的管道,是goroutine与另一个goroutine通信的媒介。通道是一种技术,它允许一个goroutine将数据发送到另一个goroutine;默认情况下,通道是双向的,这意味着goroutine可以通过同一通道发送或接收数据。

golang函数通道作为参数传递golang函数通道作为参数传递Apr 22, 2024 pm 06:36 PM

在Go中,我们可以使用chan关键字将函数通道作为函数参数传递,从而轻松地在函数之间共享和传递数据。具体操作步骤如下:创建一个通道来传递特定类型的数据。在函数中使用chan关键字和通道名称将通道作为参数传递。使用单向通道

通过golang实现Select Channels Go并发式编程的效率提升通过golang实现Select Channels Go并发式编程的效率提升Sep 27, 2023 pm 02:58 PM

通过Golang实现SelectChannelsGo并发式编程的效率提升引言:在当今的软件开发领域,高效的并发编程是至关重要的。并发编程可以最大程度地利用现代处理器的多核能力,提高程序的执行效率和性能。Golang是一种以并发性为重点设计的编程语言,通过其内置的goroutine和channel机制,可以轻松实现高效的并发编程。本文将通过Golang中的

golang怎么将通道关闭golang怎么将通道关闭Jan 11, 2023 am 11:12 AM

在golang中,可以使用close()函数来关闭通道,语法“close(msg_chan)”。 通道(chan)是一种系统资源,因此在不需要使用chan 时,需要使用内置函数close来手动关闭管道。注如果向一个已经关闭的管道发送数据,那么程序会pannic。

Golang函数并发编程中通道的类型和规则Golang函数并发编程中通道的类型和规则Apr 18, 2024 am 08:57 AM

通道是Go语言中用于在并发函数间安全传递数据的通信机制,提供的数据竞争保护避免直接访问共享内存。通道类型包括无缓冲通道(chanT)和缓冲通道(chanT,int)。规则包括发送值(

使用time.After函数返回一个定时器的通道使用time.After函数返回一个定时器的通道Jul 24, 2023 am 08:06 AM

Title:使用time.After函数创建定时器Introduction:在Go语言中,我们可以使用time包中的time.After函数来创建一个定时器。定时器可以用于在指定的时间间隔之后执行任务或者触发某个事件。本文将介绍如何使用time.After函数创建一个定时器并提供相应的代码示例。一、time.After函数概述time.After函

Go函数性能优化:管道与通道的使用技巧Go函数性能优化:管道与通道的使用技巧May 03, 2024 am 09:33 AM

管道和通道是Go中实现并行性与并发性的重要工具。它们可以通过以下几种方式优化Go函数性能:管道:实现并行I/O,提高吞吐量。通道:缓冲管道,管理计算密集型任务的并发执行。选择性接收:从多个通道中接收数据,提高效率。

golang函数中的通道是如何实现的?golang函数中的通道是如何实现的?Jun 03, 2024 am 10:45 AM

Go语言中,通道的内部结构包含元素类型、缓冲区指针、互斥锁、发送和接收队列。收发机制涉及唤醒goroutine来发送或接收数据。通道分为缓冲和无缓冲两种。缓冲通道允许goroutine在没有接收者的情况下发送数据,而无缓冲通道则需要发送前有接收者。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.