LinkedIn: All content tagged as LinkedIn in NoSQL databases and polyglot persistence
Tuesday, 17 August 2010
Krati: A Persistent High-Performance Data Store
Krati is a simple persistent data store with very low latency and high throughput. It is designed for easy integration with read-write-intensive applications with little effort in tuning configuration, performance and JVM garbage collection.
Sounds a bit like Bitcask. Anyone can point out at least on the major differences?
From the project page:
- supports varying-length data array
- supports key-value data store access
- performs append-only writes in batches
- has write-ahead redo logs and periodic checkpointing
- has automatic data compaction (i.e. garbage collection)
- is memory-resident (or OS page cache resident) yet persistent
- allows single-writer and multiple readers
Krati: A Persistent High-Performance Data Store originally posted on the NoSQL blog: myNoSQL
Thursday, 8 July 2010
LinkedIn, Data Processing, and Pig
Probably one of the nicest taglines for Pig:
If Perl is the duct tape of the internet, and Hadoop is the kernel of the data center as computer, then Pig is the duct tape of Big Data.
And an advise on how to use Pig:
When I write Pig Latin code beyond a dozen lines, I check it in stages:
- Write Pig Latin in TextMate (Saved in a git repo, otherwise I lose code)
- Paste the code into the Grunt shell – Did it parse?
- DESCRIBE the final output and each complex step – Did it still parse? Is the schema what I expected?
- ILLUSTRATE the output – Does it still parse? Is the schema ok? Is the example data ok?
- SAMPLE / LIMIT / DUMP the output – Does it still parse? Is the schema ok? Is the sampled/limited data sane?
- STORE the final output and see if the job completes.
- cat output_dir/part-00000 (followed by a quick ctrl-c to stop the flood) – Is the stored output on HDFS ok?
via: http://blog.linkedin.com/2010/07/01/linkedin-apache-pig/
Most Popular Articles
- Translate SQL to MongoDB MapReduce
- Tutorial: Getting Started With Cassandra
- CouchDB vs MongoDB: An attempt for a More Informed Comparison
- Cassandra @ Twitter: An Interview with Ryan King
- A Couple of Nice GUI Tools for MongoDB
- NoSQL benchmarks and performance evaluations
- Ehcache: Distributed Cache or NoSQL Store?
- Document Databases Compared: CouchDB, MongoDB, RavenDB
- Quick Review of Existing Graph Databases
- NoSQL Data Modeling