タグ

2014年3月16日のブックマーク (7件)

  • ElastiCacheとELBとtwemproxy - まめ畑

    redis / memcachedをスケールする方法として、アプリケーションで分散アルゴリズムを実装する方法や、ライブラリを使う方法などありますが、 Twitterが作っているtwemproxy(https://github.com/twitter/twemproxy)というものがあります。 これは、redis / memachedの前段に置くことでキャッシュクラスタを構成することが出来ます。様々な分散アルゴリズムや、故障ノードの切り離しなどの機能もあり、 キャッシュノードが不具合で接続できなくなったとしても自動でサービスアウトしてくれます。 開発も盛んに進んでいて、今、ノード追加時にプロセスの再起動が必要ですが、gracefulの実装も見えて来ました。 詳しくは以前書いたこちらの記事を参照して下さい。http://d.conma.me/entry/20121227/1356596553

    ElastiCacheとELBとtwemproxy - まめ畑
    yass
    yass 2014/03/16
    " ELBでtwemproxyのヘルスチェックを行う際には、/ノードグループのノード数が基準値以下になったら切り離すというような場合は以下のような簡単なスクリプトを配置してxinetdでアクセスを受け付ける事で実現出来ます。"
  • Placement groups - Amazon Elastic Compute Cloud

    To meet the needs of your workload, you can launch a group of interdependent EC2 instances into a placement group to influence their placement. Depending on the type of workload, you can create a placement group using one of the following placement strategies: Cluster – Packs instances close together inside an Availability Zone. This strategy enables workloads to achieve the low-latency network pe

    yass
    yass 2014/03/16
    " Using placement groups enables applications to participate in a low-latency, 10 Gbps network. / choose an instance type that supports enhanced networking. "
  • Services

    Save up to 70% in operating costsUnlock the future of your business with UniKix, the low-risk path to modernization. We offer unparalleled flexibility and scalability with one of the most cost-effective modernization solutions on the market. Discover UniKix

    yass
    yass 2014/03/16
    " So in general it is easier to increase the throughput than to decrease the latency. In computers, when you try to reduce latency you need to put in more hardware, more expensive hardware, and increase complexity. "
  • srmコマンドでUbuntuのハードディスクからファイルやフォルダを完全消去する | Ubuntuアプリのいいところ

    指定したファイルやフォルダのデータを完全消去したいときに使えるのが、srmコマンドです。 Gutmann methodというアルゴリズムを使い、ランダムなデータを38回上書きすることで、データ復元ソフトによるリカバリを防ぐことができます。 srmコマンドの使い方は簡単です。コマンドに続いて完全消去したいファイル名を指定しましょう。 $ srm mypicture.jpg 試しに、800KBのJPGファイルを完全消去してみましたが、約1分30秒もかかりました。 時間がかかりすぎるという場合には、「-f: fast (and insecure mode)」オプションを付けて、ファストモードで実行することもできます。 $ srm -f mypicture.jpg 安全性が低くなりますが、ファストモードなら3秒程度で終わります。 また、サブフォルダも含めて完全消去したいときは、「-r: recur

    yass
    yass 2014/03/16
    " srmコマンドとは、THC-SecureDeleteツールに含まれているコマンドで、Ubuntuのハードディスクから、データを完全消去することができます。"
  • Reducing Network Latency - Jesse Brandeburg : Blueprints : Linux Plumbers Conference

  • Intel(R) Core(TM)2 Duo Processor Overview

    Using Intel.com Search You can easily search the entire Intel.com site in several ways. Brand Name: Core i9 Document Number: 123456 Code Name: Emerald Rapids Special Operators: “Ice Lake”, Ice AND Lake, Ice OR Lake, Ice* Quick Links You can also try the quick links below to see results for most popular searches. Product Information Support Drivers & Software

    Intel(R) Core(TM)2 Duo Processor Overview
  • WebSocketを再接続するアルゴリズムの工夫 - ワザノバ | wazanova

    http://blog.johnryding.com/post/78544969349/how-to-reconnect-web-sockets-in-a-realtime-web-app 1 comment | 0 points | by WazanovaNews ■ comment by Jshiike | 約2時間前 John RydingのブログでWebSocketの再接続のアルゴリズムの工夫について紹介しています。 リアルタイムウェブアプリにおいて、何らかの理由でバックエンドとの接続が切れた場合、クライアントは一定間隔で再試行するというロジックを設定(参考コード)していたとします。その場合、大量のクライアントがいて、もし長い時間接続が不能であれば、再開時にバックエンドには大量のリクエストが集中することになります。 そこでJohnがお薦めするExponential Backoff