search for: 199m

Displaying 10 results from an estimated 10 matches for "199m".

Did you mean: 1998
2008 Nov 18
3
High system in %system load .
Hello Got strange problem with high system "%system load" and very slow user level programs (apache+php+mysql) behavior gstat shows 1.5-4% hard disk busy load but system shows about 20-30% load while user load is max 5%. vmstat shows from 2 to 35 process in "b" state. Now use 7.0-RELEASE-p5 , but the same problem was with 7.0-RELEASE. And have no idea what to do with this.
2015 Mar 12
3
mysql replication - problems
...ql/mysql.sock symbolic-links=0 ;plugin-load=rpl_semi_sync_master=semisync_master.so ;plugin-load=rpl_semi_sync_slave=semisync_slave.so ;rpl_semi_sync_master_enabled=1 ;rpl_semi_sync_master_timeout=10 ;rpl_semi_sync_slave_enabled=1 ;performance_schema query_cache_size = 8MB innodb_buffer_pool_size = 199M general_log_file=/var/log/mysql/mysql.log general_log=1 log-error=/var/log/mysql/mysql_error_log log-slow-queries=/var/log/mysql/mysql_slow_log wait_timeout = 86400 [mysqld_safe] general_log_file=/var/log/mysql/mysql.log general_log=1 log-error=/var/log/mysql/mysql_error_log log-slow-queries=/var/...
2010 Feb 08
5
zfs send/receive : panic and reboot
<copied from opensolaris-dicuss as this probably belongs here.> I kept on trying to migrate my pool with children (see previous threads) and had the (bad) idea to try the -d option on the receive part. The system reboots immediately. Here is the log in /var/adm/messages Feb 8 16:07:09 amber unix: [ID 836849 kern.notice] Feb 8 16:07:09 amber ^Mpanic[cpu1]/thread=ffffff014ba86e40: Feb 8
2015 Mar 12
0
mysql replication - problems
...gin-load=rpl_semi_sync_master=semisync_master.so > ;plugin-load=rpl_semi_sync_slave=semisync_slave.so > ;rpl_semi_sync_master_enabled=1 > ;rpl_semi_sync_master_timeout=10 > ;rpl_semi_sync_slave_enabled=1 > ;performance_schema > query_cache_size = 8MB > innodb_buffer_pool_size = 199M > general_log_file=/var/log/mysql/mysql.log > general_log=1 > log-error=/var/log/mysql/mysql_error_log > log-slow-queries=/var/log/mysql/mysql_slow_log > wait_timeout = 86400 > > [mysqld_safe] > general_log_file=/var/log/mysql/mysql.log > general_log=1 > log-error=/var...
2013 Jun 13
4
puppet: 3.1.1 -> 3.2.1 load increase
Hi, I recently updated from puppet 3.1.1 to 3.2.1 and noticed quite a bit of increased load on the puppetmaster machine. I''m using the Apache/passenger/rack way of puppetmastering. Main symptom is: higher load on puppetmaster machine (8 cores): - 3.1.1: around 4 - 3.2.1: around 9-10 Any idea why there''s more load on the machine with 3.2.1? -- You received this
2004 Nov 24
2
Mbuf errors
.... last pid: 84718; load averages: 2.56, 2.29, 2.55 up 2+03:59:04 13:27:58 195 processes: 2 running, 193 sleeping CPU states: 26.2% user, 0.0% nice, 10.0% system, 5.0% interrupt, 58.8% idle Mem: 1912M Active, 995M Inact, 421M Wired, 132M Cache, 199M Buf, 27M Free Swap: 2048M Total, 34M Used, 2014M Free, 1% Inuse Following is the output of netstat -m 3797/14672/26624 mbufs in use (current/peak/max): 3791 mbufs allocated to data 2 mbufs allocated to fragment reassembly queue headers 4 mbufs allocated to socket names and...
2015 Mar 12
3
mysql replication - problems
...ync_master.so > > ;plugin-load=rpl_semi_sync_slave=semisync_slave.so > > ;rpl_semi_sync_master_enabled=1 > > ;rpl_semi_sync_master_timeout=10 > > ;rpl_semi_sync_slave_enabled=1 > > ;performance_schema > > query_cache_size = 8MB > > innodb_buffer_pool_size = 199M > > general_log_file=/var/log/mysql/mysql.log > > general_log=1 > > log-error=/var/log/mysql/mysql_error_log > > log-slow-queries=/var/log/mysql/mysql_slow_log > > wait_timeout = 86400 > > > > [mysqld_safe] > > general_log_file=/var/log/mysql/mysql.lo...
2007 Mar 01
9
Virtualisation
I'm building a new server at home to handle most of my internal requirements (mail, news, dns, dhcp, backups being the biggies). I also want it to host a couple of virtual servers which are allowed incoming connections from the internet (mail gateway, web server, ssh server); these are virtual so if a hacker _can_ break in then they're limited as to what they can see. At present the
2019 Apr 30
6
Disk space and RAM requirements in docs
...g/lib/Frontend 224M build/tools/clang/lib/Tooling 220M build/tools/clang/unittests/AST/CMakeFiles/ASTTests.dir 220M build/tools/clang/unittests/AST/CMakeFiles 213M build/lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir 213M build/lib/Transforms/Utils/CMakeFiles 213M build/lib/Transforms/Utils 199M build/lib/CodeGen/SelectionDAG/CMakeFiles/LLVMSelectionDAG.dir 199M build/lib/CodeGen/SelectionDAG/CMakeFiles 199M build/lib/CodeGen/SelectionDAG 185M build/utils 181M build/tools/clang/lib/Frontend/CMakeFiles/clangFrontend.dir 181M build/tools/clang/lib/Frontend/CMakeFiles 173M build/lib/CodeGen/A...
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame. For instance > ddTable <- data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry")) I want a dataset that is Id Name 1 Paul 2 Bob > unique(ddTable) Will give me all 4 rows, and > unique(ddTable$Id) Will give me c(1,2), but not accompanied by the name column.