HN user

kzk_mover

163 karma
Posts47
Comments8
View on HN
www.fluentd.org 11y ago

Centralized App Logging with Fluentd

kzk_mover
3pts0
docs.fluentd.org 13y ago

High Availability Log Collector Configuration (Fluentd)

kzk_mover
2pts0
architects.dzone.com 13y ago

Fluentd: The Missing Log Collector

kzk_mover
2pts0
cloud.dzone.com 13y ago

Treasure Data Working as an Alternative to Hadoop

kzk_mover
1pts0
docs.fluentd.org 13y ago

Fluentd: Log Everything in JSON from Python Applications

kzk_mover
1pts0
docs.fluentd.org 13y ago

Fluentd: Log Everything in JSON from Ruby

kzk_mover
1pts0
groups.google.com 13y ago

Fluentd v0.10.30 is released

kzk_mover
1pts0
docs.fluentd.org 13y ago

Slides of Fluentd (lightweight but robust log collector)

kzk_mover
1pts0
architects.dzone.com 13y ago

Attack of the Hadoop Hybrids

kzk_mover
2pts0
docs.fluentd.org 13y ago

Fluentd + HDFS: Instant Big Data Collection

kzk_mover
1pts0
docs.fluentd.org 13y ago

Fluentd: Store Apache Logs into MongoDB

kzk_mover
4pts0
docs.fluentd.org 13y ago

Fluentd: Store Apache Logs into Amazon S3

kzk_mover
1pts0
java.dzone.com 13y ago

Fluentd + Hadoop: Instant Big Data Collection

kzk_mover
2pts0
github.com 13y ago

Show HN: Instant jemalloc injection into Ruby apps

kzk_mover
1pts0
docs.fluentd.org 13y ago

Fluentd Users

kzk_mover
2pts0
blog.treasure-data.com 13y ago

Fluentd + Hadoop: Instant Big Data Collection

kzk_mover
2pts0
nutch.apache.org 14y ago

Apache Nutch v2.0 Released

kzk_mover
2pts0
blog.treasure-data.com 14y ago

How ContextLogic moved from Scribe to a cloud service to power their A/B testing

kzk_mover
4pts1
www.quora.com 14y ago

Who uses MessagePack in production?

kzk_mover
2pts0
blog.treasure-data.com 14y ago

Real-Time Log Collection with Fluentd and MongoDB

kzk_mover
46pts18
blog.treasure-data.com 14y ago

Fluentd: the missing log collector

kzk_mover
50pts7
blog.treasure-data.com 14y ago

MessagePack: the missing serializer

kzk_mover
7pts1
www.scribd.com 14y ago

Fluent: The Event Collector Daemon

kzk_mover
2pts0
kzk9.net 14y ago

Deploying Tornado on Heroku (Mac OSX)

kzk_mover
4pts0
kzk9.net 14y ago

Simple benchmark for transparent huge pages and libhugetlbfs

kzk_mover
1pts0
kzk9.net 14y ago

JRUBY ON RAILS 3.1

kzk_mover
1pts0
forge.mysql.com 14y ago

C/C++ API to handle MYSQL binary log

kzk_mover
1pts0
docs.google.com 15y ago

HBase Search (HBase + Lucene Integration) Presentation

kzk_mover
1pts0
code.google.com 15y ago

MySQL Master High Availability manager and tools (MySQL-MHA)

kzk_mover
2pts0
www.oscon.com 15y ago

Binary log API: A Library for Change Data Capture using MySQL

kzk_mover
1pts0

Now facing this issue... By using 'adjtimex' command, you can clear the problematic INS bit.

At first, you can confirm the status flag like this.

    $ ./adjtimex --print | grep status
    status: 8209
8209's binary representation is like this. This surely have INS bit "100000000[1]0001" (5th LSB).
    $ ruby -e 'p 8209.to_s(2)'
    "10000000010001"
8193 is the value after the clearance of the INS big.
    $ ruby -e 'p 8193.to_s(2)'
    "10000000000001"
Then, let's set it as a current value. Please ensure your ntpd is not running.
    $ adjtimex --status 8193

fluentd's greatest advantage is, it's written in Ruby. So, it's really easy to write the plugin for any datastores.

This is HDFS (Hoop, the HDFS REST gateway) plugin.

* https://github.com/tagomoris/fluent-plugin-hoop

And also, Cassandra plugin are now in under development.

* https://github.com/tomitakazutaka/fluent-plugin-cassandra

You can see the user contributed plugin list here.

* https://github.com/tomitakazutaka/fluent-plugin-cassandra

Yep, we agree with your opinion CURRENTLY.

We're developing Hoop (REST API for HDFS) plugin, and also Stargate (REST API for HBase). It requires additional setup at the infra-side, but still very useful and performs well.

You can feed Twitter stream by writing in_twitter plugin. That will 30 lines of Ruby code :-)

Centos 6 released 15 years ago

This release includes transparent large page? This will hugely increase the performance of memory-consuming applications (c,f. Redis, HBase, MongoDB, etc.). I confirmed at RHEL6.