开发者

Reducing the number of IOPS - Performance improvement question

so I have an application that is processing a large text document which is composed of many logical documents. Say for eg it has 200,000 logical documents. Right now I read one logical document and do the transformation and write logical document out. This works well because nothing is stored in memory so the wor开发者_JAVA技巧kflow ends up finishing fast but the number of IOPS end up being high! Is there any recommendation on how I can reduce the number of IOPS ?


If this is a single pass through the document, increase your read buffer size (i.e. 2 reads with a buffer size of 1024 becomes 1 read with a buffer size of 2048, which means less overhead).

If you want more detailed suggestions, you'll need to provide more details in your question.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜