我们正在考虑使用ElasticSearch使用以下简单模式存储日志数据:
{
"data" : {
"properties" : {
"date": {
"type" : "date",
"format" : "yyyy-MM-dd HH:mm:ss"
},
"status": {"type" : "string"},
"group": {"type" : "string"},
"ip": {"type" : "string"},
"username":{"type" : "string"},
"category":{"type" : "string"},
"url":{"type" : "string"}
}
}
}
我们估计我们最多可以拥有5000个INSERT / s和最多1亿个文档。任何想法,如果8GB的RAM足以处理这个? 从我在official documentation上可以看到,典型的服务器使用16-64GB之间但没有关于INSERT / s的信息。
感谢您的建议。