我正在进行实时项目。
工作: 我从twitter获取数据并将输出移动到cassandra数据库,然后使用Testrestfull webservice我以json格式获取输出。最后输出显示在wep页面中。我正在使用玻璃鱼服务器连接Web服务和网页。这是一个实时项目,所以我每隔5秒刷新一次页面。
前几秒我没有收到任何错误它在5到10分钟后工作正常我在玻璃鱼服务器中收到此错误。
错误: 警告:StandardWrapperValve [genric.ApplicationConfig]:servlet genric.ApplicationConfig的Servlet.service()引发了异常 java.lang.OutOfMemoryError:Java堆空间
我不知道为什么我会收到此错误以及如何解决此问题。 任何人都可以帮助我。
这是我的网络服务代码:
public String gettweets(String st)
{
cluster=Cluster.builder().addContactPoint("localhost").build();
session=cluster.connect("space");
String query ="select * from tweet_count where createdtime='"+st+"' allow filtering;";
ResultSet result = session.execute(query);
String text = "[";
for(Row r : result){
System.out.println(r.getString("tag_name"));
text+="{\""+"x"+"\":\""+r.getString("tag_name")+"\",\""+"y"+"\":\""+r.getInt("count")+"\"},";
}
text=text.substring(0,text.length()-1);
text+="]";
return text;
}
这是我的网页代码:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body onload="load();grid();marqueeload();" style="background-color:white">
<pre style="height:25px;background-color:black;">
<div id = "title" style = "text-align:center;font-size:20px;width:100%;"><span>REAL TIME TWITTER TRENDS</span></div>
</pre>
<div><table>
<tr><td><lable>Select Date<lable></td><td> : </td><td><input id="datepicker" type="text" /></td></tr></table>
</div>
<div style = "width:100%">
<div id="container2" style = "width:670px;height:300px;float:left;background-color:white;border: 1px solid green;">
<div style = "text-align:center;font-size:20px;"><span1>CHART VIEW<span1></div>
<div id="container1"></div>
</div>
<div id="container3" style = "width:670px;overflow-y:auto;height:300px;float:right;background-color:white;border: 1px solid green;">
<div style = "text-align:center;font-size:20px;"><span1>GRID VIEW<span1></div>
<div id="Grid"></div>
</div>
</div>
<div style = "width:100%;border: 1px solid green;height:300px;float:left;background-color:white;">
<div style = "text-align:center;font-size:20px;"><span1>Trending tweets<span1></div>
<marquee id = "marqueeid" direction="up" height="200" scrollAmount=2 scrollDelay=130 class="sidelink" onMouseDown="this.stop()" onMouseOver="this.stop()" onMouseMove="this.stop()" onMouseOut="this.start()" vspace="10" >
</marquee>
</div>
<script type="text/javascript" language="javascript">
function marqueeload()
{
var str;
$.get("http://localhost:8080/WebApplication1/webresources/generic", function(str)
{
str=str.slice(12, str.length-14);
var div=document.getElementById('marqueeid');
div.innerHTML=str;
});
}
$(function () {
$("#datepicker").ejDatePicker({
select: "onSelected"
});
$("#datepicker").ejDatePicker({ enabled: true });
});
function onSelected(args) {
var str = args.value;
var newstr = str.split("/",3);
if(newstr[0].length == 1){
newstr[0] = '0'+newstr[0];
}
if(newstr[1].length == 1){
newstr[1] = '0'+newstr[1];
}
var dat = newstr[2]+'-'+newstr[0]+'-'+newstr[1];
window.datetweet = dat;
$("#container1").ejChart("destroy");
grid();
load();
}
function load() {
var str;
$.get("http://localhost:8080/WebApplication1/webresources/time/"+window.datetweet, function(str)
{
str=str.slice(12, str.length-14);
var data=JSON.parse(str);
$("#container1").ejChart(
{
primaryXAxis:
{
title: { text: 'Tagname' },
labelRotation: 45
},
primaryYAxis:
{
range: { min: 0, max: 1000, interval: 100 },
title: { text: 'Count' }
},
commonSeriesOptions: {
type: 'column', animation: true,
tooltipFormat: "#point.x# : #point.y#"
},
series: [
{
points: data,
}
],
load:"loadTheme",
showTooltip: true,
needResize:true,
size: { height: 300 },
legend: { visible: false, position: 'top' }
});
});
}
$(document).ready(function()
{
$("#Grid").ejGrid({
dataSource: [],
allowPaging: true,
allowSorting: true,
columns: [
{ field: "x", headerText: "Trend Name", textAlign: ej.textAlign.Right, width: 10 },
{ field: "y", headerText: "Count", textAlign: ej.textAlign.Right, width: 10 }
]
});
});
function grid()
{
var str;
var url="http://localhost:8080/WebApplication1/webresources/time/"+window.datetweet;
$.get(url, function(str)
{
str=str.slice(12, str.length-14);
var obj=JSON.parse(str);
var instance = $("#Grid").ejGrid("instance");
instance._dataManager = new ej.DataManager(obj);
$("#Grid").ejGrid("model.dataSource", instance._dataManager);
});
}
window.setInterval(function() { load(); grid(); marqueeload(); }, 10000);
</script>
</body>
</html>
答案 0 :(得分:4)
OOM或OOME(OutOfMemoryError)只是意味着JVM内存不足。发生这种情况时,您基本上有两个选择:
如需了解更多信息,请浏览此链接
http://www.mkyong.com/eclipse/eclipse-java-lang-outofmemoryerror-java-heap-space/
答案 1 :(得分:2)
答案:
正确关闭会话对象和群集对象
例如:
session.shutdown();
cluster.shutdown();
感谢@ceiling gecko
答案 2 :(得分:0)