Predix Cloud Foundry应用程序堆内存不足问题

时间:2018-10-29 12:17:14

标签: java spring heap cloudfoundry predix

我有一个Spring Boot应用程序,该应用程序每两分钟执行一次计划任务,以从时间序列中获取数据并通过HTTP请求对其进行一些计算,然后将结果存储回时间序列中。

问题在于,每次迭代都会增加内存消耗。我为此尝试了2 GB和4 GB的内存,但是一段时间后它耗尽了内存,从而导致堆出内存错误。下面是一个示例代码,可让您大致了解我在做什么。

@Scheduled(cron = "0 0/2 * * * ?")
public void run() {

    try {
        log.info(new Timestamp(System.currentTimeMillis()).toString() + " -- Starting analytics execution.");
        AnalyticResponseModel timeseriesResponse = null;

        //Get input for Analytics Execution
        timeseriesResponse = retrieveDataPointsCurrent(TagsDataBuffer.TAGS);

        //Prepare payload for model execution request
        String payload = mapper.writeValueAsString(timeseriesResponse);
        RequestBody requestBody = RequestBody.create(JSON, payload);
        Request request = new Request.Builder().url(analyticModelURL).header("Content-Type", "application/json")
                .header("Accept", "application/json").post(requestBody).build();
        if( timeseriesResponse.getData().getTime_series().get("time_stamp").isEmpty()) {
            log.error("No Recent Data");
            return;
        }
        dataTimestamp = (long) timeseriesResponse.getData().getTime_series().get("time_stamp").get(0);

        log.info(new Timestamp(System.currentTimeMillis()).toString() + " -- Fetching Input data.");

        //Execute request
        Response response = client.newCall(request).execute();
        parseAndSaveOutput( response);
    } catch (Exception e) {
        log.error(e.getMessage());
    }
}

1-如何检查内存泄漏的位置以及如何在Cloud Foundry中进行泄漏 2-任何替代/更好的方法

1 个答案:

答案 0 :(得分:0)

在检查了代码并尝试了不同的方法之后,似乎将数据提取到时间序列的代码正在泄漏内存。我在每次迭代中初始化租户,由于某种原因,它没有被垃圾回收。因此,我为此尝试了单例方法,并且内存现在似乎已得到控制和解决。自上周以来未超过1.3 GB