Get short, timely messages from Chris Johnson.

Twitter is a rich source of instantly updated information. It's easy to stay updated on an incredibly wide variety of topics. Join today and follow @findchris.

Get updates via SMS by texting follow findchris to 40404 in the United States
Codes for other countries

Two-way (sending and receiving) short codes:
Country Code For customers of
Australia
  • 0198089488 Telstra
Canada
  • 21212 (any)
United Kingdom
  • 86444 Vodafone, Orange, 3, O2
Indonesia
  • 89887 AXIS, 3, Telkomsel
Ireland
  • 51210 O2
India
  • 53000 Bharti Airtel, Videocon
Jordan
  • 90903 Zain
New Zealand
  • 8987 Vodafone, Telecom NZ
United States
  • 40404 (any)

findchris

  1. Pretty nuts: A little tweet bot for the White House Blog that I created a couple of years ago has 20k+ followers! /cc: @WhiteHouse_Blog
  2. @igrigorik Is there any way to know how long an em-http-request takes to return a resp? Looking to track request response times if possible.
  3. @awscloud Having major production issue with our ELB. "transient" errors. Known issue?
  4. @MikeLaRoc Fo shizzle. That's why I sent that tweet: To hopefully make more people aware.
  5. Is raw milk from @OrganicPastures grassfed? Nope. They feed their cows corn (see: facebook.com/permalink.php?… ). @OrganicValley has grassmilk.
  6. @FAGEUSA Really? Raw? Not pasteurized?? Please clarify.
  7. @antirez As you probably saw on code.google.com/p/redis/issues… , my issue is resolved, & was related to FD limits. I appreciate your correspondence.
  8. @antirez I've got plenty of free mem, and dug through all docs you shared. Blocking for 5-10 seconds: Have you seen this behavior before?
  9. @dacat Nice work :)
  10. @MattRogish @wndxlori Did you already do your talk? If so, I missed it. Got slides?
  11. @antirez Given the free mem (3GB), any other investigating I can do?
  12. @antirez No swap usage; 3GB free RAM (1.5GB redis-server process, 8GB total RAM). This blocking behavior feels like something is broken.
  13. @antirez Read /latency; most likely culprit: forking. But it doesn't seem like the fork operation for a 1.5GB redis-server should take >5s?
  14. @antirez Ah ok. What I'm seeing is when the CPU hits 100%, `redis-cli info` blocks for multiple seconds (5-10s). So prob not slave sync.
  15. @antirez I ask about optimization because having the master block (to sync to slave) for multiple seconds in a prod system is surprising.
  16. @antirez A master in-mem only (w/ attached slave), will still generate an RDB, which will send the CPU to 100%? If so, any way to optimize?
  17. @MattRogish @wndxlori When is this talk?
  18. @antirez Could 100% CPU usage be a normal result of load, or is this surprising behavior to you?
  19. @antirez Also, I verified we aren't using a broken distro. Could this be related: github.com/antirez/redis/… ?
  20. @antirez BGSAVE created a new process that hit 100% CPU, but I have all SAVE directives removed (master in-memory only).