01:39:08 GMT Question, if I have an old redis running (version 2.6). But for some reason, whoever ran this, had placed the redis.conf file in /etc/, and the dir command has ./ set, and the instance is being run as non-root. So it is unable to create backups in /etc/ because it doesn't have permissions, and I can't even see what is going on because the logs are going to /dev/null, lol. I want to make a backup so I can fix all these things, but am 06:16:16 GMT Guest89879: sounds like fun. wonder if you could add a slave to it or if tyat also tries to write to /etc for the replication 07:24:06 GMT I'm getting an error when building redis from source: undefined reference to `clock_gettime' in function 'nstime_get' in /deps/jemalloc/lib/libjemalloc.a(nstime.o). any idea what I can do about this, please? 07:25:38 GMT if i have 10GB memory and 100GB SSD/HDD - and I enable persistence in redis, will redis be able to store 100GB data ? 07:30:59 GMT never mind my question, had to patch the makefile and then it worked. thanks 08:29:11 GMT twry: yeah, known problem at the moment 08:29:35 GMT Inge-: it seems he is gone. next time: CONFIG SET dir /somewhere/redis/can/write/to 08:43:05 GMT badboy_, when the master is back online, yes 08:43:20 GMT you can set "priorities", so when all 3 are online it'll switch back 08:43:42 GMT useful if you are using it for redundancy and have a more powerful box or something 08:45:07 GMT badboy_, I'm considering reading from a local slave, instead of adding 300ms latency across the ocean to get to master. Is this possible with sentinel to find out the "local" slave? 08:55:10 GMT you can find slaves 08:55:23 GMT you have to decide client-side which one is local 09:04:52 GMT hey all 09:05:27 GMT is there a way to check if a DB is corrupt without having to do a dump? 10:00:21 GMT is there a way to check if a DB is corrupt without having to do a dump? 11:58:38 GMT Slydder: what exactly do you mean? 11:58:50 GMT corrupt in-memory data or a corrupt dump? 11:59:08 GMT because corrupt in-memory data means you got a whole lot other problems 11:59:27 GMT a corrupt dump however can come from a broken disk, broken transfer between servers or other means to corrupt persisted data 12:35:11 GMT what to do when redis-sentinel configured my master as slave it now prevent me from flushing it ? :D 12:35:45 GMT all my 3 nodes become slaves 12:38:12 GMT oO 12:38:23 GMT make one master manually and hope for the best? 12:38:32 GMT also what master are they replicating from? 12:41:17 GMT 1 master + 2 slaves, setuping my first redis cluster, so I did many restarts 12:50:05 GMT so what exactly is the problem? 12:51:02 GMT badboy_: Ah. good point. 16:39:39 GMT what is redis' best practice when it comes to "connect many times" x "leave one single connection open the whole time" ? 17:08:59 GMT bsamorim: if you can re-use connections 17:09:14 GMT badboy_:ok, thank you! 17:09:31 GMT tcp connection opening is kinda expensive if all you do is a single command 17:09:40 GMT so by re-using connections you avoid this cost 17:10:08 GMT what if i'm connecting to localhost? 17:23:47 GMT localhost is cheaper, but still has overhead 17:24:15 GMT it still does some tcp-thingy 17:28:24 GMT badboy_: k thx 18:21:16 GMT syn ack ack