1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-11-08 03:42:19 +03:00

change tmp storage name

This commit is contained in:
david hill
2016-05-25 14:08:04 -05:00
parent 5440f1fa02
commit 70a2ca00f6
4 changed files with 8 additions and 8 deletions

View File

@@ -427,9 +427,9 @@ void ServerMonitor::outputProcMemory(bool log)
// get top 5 Memory users by process
//
system("ps -e -orss=1,args= | sort -b -k1,1n |tail -n 5 | awk '{print $1,$2}' > /tmp/infinidb_tmp_files/processMem");
system("ps -e -orss=1,args= | sort -b -k1,1n |tail -n 5 | awk '{print $1,$2}' > /tmp/columnstore_tmp_files/processMem");
ifstream oldFile ("/tmp/infinidb_tmp_files/processMem");
ifstream oldFile ("/tmp/columnstore_tmp_files/processMem");
string process;
long long memory;