StuffTheInternetSaysOnScalabilityForMay2nd, 2014_MySQL

Source: Internet
Author: User
StuffTheInternetSaysOnScalabilityForMay2nd, 2014 Hey, it's HighScalability time:


Google's new POWER8server motherboard

  • 1 trillion: number of scents your nose can smell; millions of square feet: sprawling new server farms
  • Quotable Quotes:
    • Gideon Lewis-Kraus: As the engineer and writer Alex Payne put it, these startups represent "the field offices of a large distributed workforce assembled by venture capitalists and their associate institutions, "doing low-overhead, low-risk R & D for five upgrade ate giants. in such a system, the real disillusionment isn't the discovery that you're unlikely to become a billionaire; it's the realization that your feeling of autonomy is a fantasy, and that the vast majority of you have been set up to fail by design.
    • @ Aphyr: I was already sold on immutability, pure functions, combinators, etc. What forced me out of Haskell was the impenetrable, haphazard docs.
    • @ Monicalent: Going to be migrating away from Rackspace to save some cash. Recommendations? Both Digital Ocean and Linode are half the price for 1 gb ram.
    • Linus Torvalds: So while I 'd love for 'make' to be super-efficient, at the same time I 'd much rather optimize the kernel to do what make needs really well, and have CPU's that don't take too long either.
    • Joe Landman: when the networking revolution comes, the cheap switches will be the first ones against the wall
    • @ Etherealmind: Buying public cloud can say I can't afford a house so I'll buy a tent. Because that works just as well, right?
    • Neil DeGrasse Tyson: The act of doing it perfectly is the measure of it going unnoticed. [...] when it's done perfectly it goes unnoticed or, at best, it's just taken for granted.
  • How we scaled Freshdesk (Part I)-Before Sharding. requests per week boomed from 2 million to 65 million. they scaled vertically for as long as they cocould to handle the increased load. increasing RAM, CPU and I/O. first using read slaves for their heavily read weighted traffic, then assigning queries to particle slaves. writes still needed to scale, so they turned on MySQL partitioning. then caching of objects and html partials. they also used different storage engines for different functions. redShift for analytics and data mining. redis for state and as a job queue. but in the end they had to embrace the shard.

  • This took some guts. fouresquareuses data driven demo-makingto decide to deportalze their app: We looked at the session analysis and saw that only 1 in 20 sessions had both social and discovery. why not actually just split those apart, because 19 out of 20 times, tapping on one icon or the other, you have satisfied your need completely.

  • The blockchain story is bullshit: Looking at the blockchain from a realist's standpoint, it is not obvious that there is a need for a worse-aware Ming database, that an unregulated oligarchy has disproportionate power over, that isn' t improved with administrator arbitration. it looks like a technology looking for a problem to solve, rather than a technology created to solve a problem.

  • How Pinterest handles 20 billion events/day with Apache Kafka and Secor. pinterest is open sourcingSecor, a zero data loss log persistence service whose initial use case was to save logs produced by our monetization pipeline. secor persists Kafka logs to long-term storage such as Amazon S3. It's not affected by S3's weak eventual consistency model, incurs no data loss, scales horizontally, and optionally partitions data based on date.

  • Peter Lawrey on Writing and testing high frequency trading engines in java. Looks at low latency trading, thread affinity, lock free code, ultra low garbage and low latency persistence. Good stuff.

  • Large scale testing is always fun. it often can take more effort than the original product itself. here's how you go about Testing Cassandra 1000 Nodes at a Time. and it's not just the product that gets tested, but all the services inbetween. good on them for doing it.

  • A lot of people including me were wrong. But who even new about app-installwhen Facebook IPOd? Thoughts on Facebook Q1 2014 earnings: like Google Facebook is now a company that derives over 90% of its revenue from ads, so that's where we'll focus. the most striking thing about Facebook's past year or so is the amazingly rapid shift of growth from desktop to mobile advertising.

  • This is amazing... Video: Formula 1 Pit Stops 1950 & Today... A Huge Difference. It's astonishing the improvements that can be made to processes once people start thinking of them as a things in themselves.

  • The new hotness won't always treat you nice. why VividCortex Uses MySQL: MySQL is Mature and Proven; MySQL Has a Flourishing Ecosystem; MySQL is Excellent, Good, or Usable For processing Things; MySQL is High-Performance and Scalable; mySQL Is Reliable.

  • Preach it brother. jepsen: Testing the Partition Tolerance of PostgreSQL, Redis, MongoDB and Riak: First, clients are an important part of the distributed system, not objective observers. consider extending consistency algorithms through the boundaries of your systems: hand TCP clients ETags or vector clocks, or extend CRDTs to the browser.

  • CoreOS is a minimal Linux-based operating system aimed at large-scale server deployments. Can it work for you? Marcel de Graaf is mad scientist Experimenting with CoreOS, confd, etcd, fleet, and CloudFormation try to find out: I'm extremely impressed by CoreOS and the tooling ecosystem around it. I wouldn't be surprised if this is going to be the next big step in setting up highly available and scalable web applications.

  • So you add slaves to your database hoping to fix problems and you get another problem in return, replication lag. how to identify and cure MySQL replication slave lag is a very helpful article on the subject. just don't tell Daenerys Targaryen.

  • Good design advice for your process infrastructure. differences between nanomsg and ZeroMQ: POSIX Compliance, implemented in C, Pluggable Transports and Protocols, better threading, organization around state machines, IOCP Support, Level-triggered Polling, and much. though a question still burns. is nano really smaller than zero?

  • Russian doll implements alization is becoming a thing. multi-node OpenStack RDO IceHouse on AWS/EC2 and Google. using double nested virtualization, with 4 levels involved: Amazon runs Xen (bare metal OS), We run our hypervisor on top of Amazon (first level guest ), customer runs OpenStack compute node (second level guest, first level of nested), Instance runs on Openstack (third level guest, second level nesting ).

  • Now available videos fromCraft 2014-Software Craftsmanship Matters-in beautiful Budapest. To see all the videos make sure to click on the room links near the top.

  • CloudFactory talks about Engineering breakthroughs continue to help us scale: We decided to decouple this task dispatcher from our core platform and use Redis (RAM database) as our backend technology. decoupling this way helped us to make it more cohesive and focus on its sole job I. e. task dispatching. this also made it very light-weight and blazingly fast.

  • Slides are available fronNoSQL Matters @ Cologne, Germany.

  • Slides for GopherCon 2014 are now available.

  • When ideology trumps pragmatic design: I am not claiming Apple is not long for this world. they make great kit. but at the same time, like all other companies, sometimes they mess up. and do so in profound ways. ways that completely open the door to competition, and adjust tively exclude them from playing there. I hope it was unintentional. they need to rethink the no-PCIe card design. cool DOESN'T matter for squat if you can't do your work on it.

  • Nice detailed article on how tocalculate running totals in SQL. So who needs NoSQL?

  • Creating a static blog is like making your own light saber. blogging With Jekyll and Linode Part 1: Jekyll: This is the first post in a multi-part series on creating a new blog from scratch in Jekyll and hosting it yourself with Linode and nginx.

  • StorageMojo: The biggest surprise of the Hacker News comments was how reduist most views of the issue were. Cheap storage? Powered down disks. But power isn' t the major driver of cost at Internet scale.

  • Yammer manages tomove to weekly release schedulesfor mobile apps: Projects at Yammer follow a rule of thumb: 2 to 10 people, 2 to 10 weeks. we like to run a lot of concurrent smaller projects, not a few big monoliths. today, 80% of our iOS users are running the latest version of app 2 days after it is released. as a team we agreed that it's no longer OK for a project to knowinugly temporarily regress the master branch. and we're steadily increasing our test coverage.

  • Scalability in a Reactive World: Two things really matters: Maximising locality reference making sure data stays local to its processing context is extremely important. contention is the second scalability killer e.g. overuse of synchronous locks. to truly scale we also need a way of adding resources to our system, scale out is about managing elasticity, adding nodes or resources.

  • 6 Distributed File Systems For Big Data: HDFS, Quantcast File System, Ceph, Lustre, GlusterFS, PVFS.

  • The Scalable Commutativity Rule: Designing Scalable Software for Multicore Processors: Can scalability opportunities be identified even before any implementation exists, simply by considering interface specifications? To answer these questions this paper introduces the following rule: Whenever interface operations com-mute, they can be implemented in a way that scales.

  • Lightweight Contention Management forEcient Compare-and-Swap Operations: our performance evaluation establishes that lightweight contention management support can greatly improve performance under medium and high contention levels while typically incurring only small over-head when contention is low.

  • Pinocchio: Nearly Practical Verifiable Computation: To this end, we introduce Pinocchio, a built system for efficiently verifying general computations while relying only on cryptographic assumptions. with Pinocchio, the client creates a public evaluation key to describe her computation; this setup is proportional to evaluating the computation once. the worker then evaluates the computation on a participant input and uses the evaluation key to produce a proof of correctness.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.