Sunday, September 23, 2012

Cost of Latency and Route53 LBR



DNS is a globally distributed service that translates human readable names like www.abc.com into the numeric IP addresses like 192.0.3.2. DNS servers translate requests for names into IP addresses, controlling which server an end user will connect to when they type a domain name into their web browser. In Amazon Web Services infrastructure this function is provided by Route 53 DNS.
Route 53 is a scalable and authoritative Domain Name System (DNS) web service. Route 53 is also a Tier-0 service – where availability is most important for its success.
Route 53 responds to DNS queries using a global network of authoritative DNS servers, which reduces latency. It also provides secure and reliable routing to our infrastructure that uses Amazon Web Services (AWS) products, such as Amazon Elastic Compute Cloud (Amazon EC2) and Elastic Load Balancing.


AWS recently enhanced Route53 with the ability to do latency based routing, which serves user requests from the AWS region with lowest network latency.
If our application is hosted on Amazon EC2 instances in multiple AWS regions, we can reduce latency for our end users by serving their requests from the EC2 region with lowest network latency. Route 53 LBR lets us use DNS to route end-user requests to the AWS region that will give our application users the fastest response. This way it helps us to improve our application’s performance for a global audience.

Why do we need Latency Based Routing (LBR) ?

Imagine a XYZ Low Cost Airlines from Singapore which operates 100+ destinations around the globe (rapidly expanding its operations every year) with following characteristics :
  • Majority of the bookings and business happens through online and mobile medium
  • Their Website and online services are visited by users from Japan, Singapore, Australia, Europe and Middle East all over the year
  • During Sales promotions and holiday seasons they will have visitors from more locations around the world

Since their business has heavy dependence upon the online mediums (web and mobile), their site needs to be highly available, scalable with better performance. Like most of the online companies, the XYZ airlines started their operations with the - Centralized Architecture


Effect of Centralized Architecture 

The entire web/app infrastructure is provisioned inside a single AWS region (example Singapore region). User requests originating all around the world are directed to the centralized infrastructure launched at single region. This architecture may be optimum to start with, but when your user base is distributed across multiple geographies things start crumbling. The users accessing the site from different geographies will have different response times because of the network latency in the internet, Also there is single point of failure if the network link to that particular Amazon EC2 region is broken (though the latter is a very rare occurrence).Example: Users from Singapore and Malaysia will have faster response times with AWS Singapore Servers than Users from Europe, MEA regions (they might feel the latency creeping up).
Since the XYZ airline follows a simple centralized architecture and has a data center in Singapore and all the visitors are distributed across the globe, let us see what it takes as the roundtrip latency measurements to access their website in centralized infrastructure:

Website is hosted on Singapore region (centralized architecture)
From Japan (ms)
From Germany(ms)
From Malaysia (ms)
From Rio (ms)
74
121
30
176

Note: The above measurements are not constant and may keep varying every few seconds.
If a single round trip takes 121ms from Europe imagine content heavy pages loading multiple images, JS, scripts, HTTP/S, hundreds of AJAX calls etc. It is sure they will land in problems when they expand.

What is the Cost of Latency?

One of the most important rules for a company whose business depends on the online mediums is PERFORMANCE. No visitor likes a slow loading site and everybody feels faster is always better. Many companies doing business online sooner or later realize that latency has definite impact on their Sales, Bounce rates, Avg time visitors spend on site etc. Poor Performance affects the online sales heavily,79% of dissatisfied shoppers are less likely to buy from an online site again and 75% would be less likely to return to the website again.
In 2009, a study by Forrester Research found that online shoppers expected pages to load in two seconds or fewer — and at three seconds, a large share of visitors abandon the site. This two-second rule is still often cited as a standard for Web commerce sites. But many in online industry feel it is already outdated. Let see what they think;
Amazon found that shaving 100ms off of load time results in a 1% increase in sales in their .com site.
Google engineers found that users begin to get frustrated with a site after waiting just 400 milliseconds. (Note: Google considers your site speed in their ranking calculations. If the site loads very slowly your .COM is going to ranked lower and eventually ends up losing business to your competitors.)
“Two hundred fifty milliseconds, either slower or faster, is close to the magic number now for competitive advantage on the Web,” People will visit a Web site less often if it is slower than a close competitor by more than 250 milliseconds. - Microsoft.
A year-long performance redesign resulted in a 5 second speed up (from ~7 seconds to ~2 seconds). This resulted in a 25% increase in page views, a 7-12% increase in revenue, and a 50% reduction in hardware. This last point shows the win-win of performance improvements, increasing revenue while driving down operating costs - Shopzilla
Now that we had pretty much understood the importance and cost of poor architectures not concentrating on reducing latency, Let us explore how to address this problem.

Welcome to Geo Distributed Architecture (Using Route53 LBR)

In this architecture, the web/app infrastructure of the XYZ Airlines is geo distributed across multiple AWS regions (example Singapore, Japan, Europe etc). 



User requests originating all around the world are directed to the nearest AWS region or AWS region with lowest network latency (more precisely). For example, suppose you have Load balancers in the Singapore, Japan and Europe Amazon EC2 region and we have created a latency resource record set in Route 53 for each load balancer. An end user in Dubai enters the name of our domain in their browser, and the Domain Name System routes their request to a Route 53 name server. Route 53 refers to its data on latency between Dubai and the Europe EC2 region and between Dubai and the Singapore EC2 region. If latency is lower between Dubai and the Europe region( most of the times), Route 53 responds to the end user's request with the IP address of your load balancer in the Amazon EC2 data center in Europe EC2 region. If latency is lower between Dubai and the Singapore region, Route 53 responds with the IP address of the load balancer in the Amazon EC2 data center in Singapore. This architecture rapidly cuts down the latency and gives the user a better experience. Also in case one of the regions is facing network problems, the requests can be routed to alternate low latency region achieving High Availability at overall website level. Though this architecture has benefits it comes with various complexities depending upon the use case and technical stack used, we will uncover some of them in this article.
If the XYZ airline follows GEO distributed architecture and has data centers in Singapore, Japan and Europe, let us see what it takes as the roundtrip latency measurements to access their website:

The XYZ airlines website is hosted on multiple AWS region with LBR configured
From Japan (ms)
From Germany(ms)
From Malaysia (ms)
From Rio (ms)
12
21
30
75

Note: The above measurements are not constant and may keep varying every few seconds.
From the above table we can observe that using the Geo Distributed architecture the HTTP/S and AJAX calls are delivered from the AWS regions with lowest latency (usually nearest region), the round trip latency measurements have significantly dropped and overall performance has increased for the users.

Complexities and Best Practices behind Geo Distributed + R53 LBR

Let us take a simple Geo distributed online app stack and explore the technicalities and best practices a bit:



DNS and CDN Layer: Configure Route 53 to manage the DNS entries,map Domain Names to CloudFront distributions to and Latency Based Routing entries. LBR records point to the Amazon Elastic Load Balancer's endpoint in Europe and Singapore. Amazon Route 53’s Latency Based Routing (LBR) feature will route Amazon CloudFront origin requests to the AWS Region that provides the lowest possible latency. Internally Amazon Route 53 is integrated with Amazon CloudFront to collect latency measurements from each Amazon CloudFront edge location, resulting in optimal performance for origin fetches and improving overall performance

Load Balancing Layer: Amazon Elastic Load Balancing (ELB) is used as the Load Balancing layer. ELB can elastically expand its capacity to handle load during peak traffic. Amazon ELB should be configured with SSL termination @ Apache Backends, for meeting Security and Compliance in case sensitive information gets passed. Round Robin Algorithm is ideal for most scenarios. ELB should be configured to load balance across Multiple –AZ inside an Amazon EC2 Region. For more details about architecting using ELB refer http://harish11g.blogspot.in/2012/07/aws-elastic-load-balancing-elb-amazon.html

Web/App Layer: Apache Tomcat EC2’s are launched from S3 backed Linux AMI’s in Multiple-AZ’s. Logs periodically shipped to S3. Amazon Auto Scaling can be configured based on CPU or custom metrics to elastically increase/decrease the EC2 instances across Multiple AZ (recommended approach for Scalability and HA). ELB, Amazon Auto Scaling, CloudWatch and Route 53 work together. Session State is synchronized on MemCached. For more details on Amazon EC2 Availability Zones refer http://harish11g.blogspot.in/2012/07/amazon-availability-zones-aws-az.html

Solr Search Layer: Solr Search Instances are launched as EBS backed AMI’s. Solr EC2 can be replicated between Multiple –AZ’s or sharded inside an AZ depending upon need. High Memory instances with RAID levels (EBS Striping) + EBS optimized + Provisioned IOPS give better performance on AWS. Periodic Snapshots are taken and moved across regions. Sync Solr and DB periodically. For more details on Solr Sharding refer http://harish11g.blogspot.in/2012/02/apache-solr-sharding-amazon-ec2.html

Database Layer:
If the use case demands the Data to be localized inside an Amazon EC2 region then one of the following approaches are recommended:

  • ·   RDS with Multi-AZ for HA, HAProxy Load balanced RDS Read Replicas across Multiple AZ’s for Read scaling are recommended approaches
  • ·   MySQL Master with 1-2 Slaves spread across multiple AZ’s inside a Region , RAID 0 with XFS + EBS optimized + PIOPS for performance
If the use case demands the unidirectional Data synchronization across Amazon EC2 regions then:

  • MySQL Master can sync data to a MySQL Slave in another Amazon EC2 region. Data can be sent over SSL or clear according to the requirements. 
  • If the MySQL is inside VPC (private subnet) then IPSEC tunnel should be established across 2 Amazon EC2 regions for communication.
If the use case demands the Bi directional Data synchronization across Amazon EC2 regions then:

  • MySQL Master-Master across regions and Master-Slave inside Regions can be configured. Though the bi directional data synch can be achieved, transactional integrity will become complex. Overall this model is not very efficient when the number of AWS regions increase.
  • Usually the best practice is to streamline and avoid bidirectional sync and expose the function as common data web service that can be consumed over web. This way the Geo distributed applications in both the Amazon EC2 regions can consume that function for information.
Note: Geographically distributed Database is a hot field and lots of stuff are happening/emerging everyday like Google Spanner, Yahoo PNUTS, NuoDB, TransLattice Elastic Database, Cloudant, ClearDB etc. In coming days you will be using these systems which will make your life easier for architecting Geo Distributed applications. I also hope AWS product team comes with solution for this Geo distributed database problem.

Caching Layer: Use MemCacheD/ElastiCache for storing Sessions, results of Heavy queries, frequently used queries and complex queries of DB/Solr and thereby significantly reducing the database load . ElastiCache cannot be distributed over AZ. MemCacheD over Amazon EC2 with Multi-AZ distribution is recommended for website which heavily relies on Caching Layer. Cache need not be replicated across regions, in case needed you need to sync Master/Slave DB's replication with MemCacheD to ensure some consistency.

Storage Layer: S3 for storing Images, JS and other static assets. S3 can be the CloudFront origin. All logs, user uploaded files will be synched to S3 in Amazon EC2 region. 

Functional Patterns for Geo Distributed App ( Sample)

In any online application (example the XYZ Low Cost Airlines.com) some functions will be heavily used compared to others. Functions like Search for Tickets, Search for Products, User profiles and Product details, Flight Schedules and Status, Trip itinerary and printing, Discounts and offers are heavily accessed compared to others. These modules need to be highly scalable and available for the visitors to consume information anytime. Since they are also the customer facing pages, usually these functions are designed with heavy content or lots of AJAX calls. Performance becomes very critical when we adopt a content heavy design and adds burden to your latency. Also, Millions of hits will happen on search and product view functions, but only a percentage (few thousands) of them will be converted as bookings, it becomes very critical for the company to architect these functions and customer facing pages with proper user experience and faster performance. Every second it takes extra to load these pages thousands of customers will lose patience and leave the site and may result millions worth dollars of business is lost in a year. Below diagram illustrates the sample list of functions



If you observe the characteristics of functions like Booking, Payments, User Profile, Registrations etc they are done only by few thousands of users in a day (compared to millions of hits to landing, search pages etc).  They are not graphics heavy, but usually secured using SSL/HTTPS. Users can afford to wait while accessing these pages but security, availability and data integrity takes precedence in these functions. Depending upon the use case, these functions can be segregated as common services, exposed over the internet as HTTP/S or web services (REST, SOAP) for consumption by other services. Also since these functions need not be regionally distributed they can be shared and served from a common region/location. Example: Search, Discounts, Events, Schedules can be delivered from the nearest AWS region whereas Bookings and payments can be delivered from a common AWS region. This way both performance and data integrity can be maintained at overall application level.

Benefits of using Geo Distributed+Route53 + LBR
  • ·         Better performance for users than running in single AWS Region
  • ·         More business conversions for online companies
  • ·         Less or No business lost because of latency ( cost of latency)
  • ·         Overall improved reliability compared to running in a single region
  • ·         Easier implementation and much lower prices than traditional DNS solutions
Negatives
  • ·         Complex and costlier to maintain compared to centralized architecture

References









Thursday, September 20, 2012

Cloud, Mobile and Big Data Stories: April-May 2012


Interesting Stories(tweets) on Cloud, BigData and Mobile which you may have missed on April - May 2012. Collection of my tweets , RT and thoughts from Industry leaders and thinkers. 


  1. How Mobile, Social Will Win the 2012 Olympics [INFOGRAPHIC] http://bit.ly/MjJ7fV
  2. Big data and the changing economics of privacy http://paidcontent.org/2012/07/11/big … ?#bigdata? #privacy #WorthReading
  3. We've been talking a lot about Big Data. Here's how Yahoo's using it to get you to click on ads. http://bit.ly/Mj22Um  http://bit.ly/MjLZt9
  4. Why SOA and Cloud Computing are Linked Concepts http://it.toolbox.com/trd/73/2/51782 …
  5. Cloud Outages Show CIOs Still at Vendors' Mercy - The CIO Report - WSJ http://on.wsj.com/M01wcj
  6. Part 8: Architecting High Availability in AWS Series :Multiple cloud providers http://bit.ly/LfhvbA  #aws #cloud #HA
  7. Part 7: Architecting High Availability in AWS Series :Multi Region Architecture http://bit.ly/LSkc2I  #aws #cloud #HA
  8. James Urquhart, Structure, DevOps, and Google Compute Engine http://p.odca.st/4662518
  9. Great slides on infrastructure as code and testing of infra code https://speakerdeck.com/u/garethr/p/in … #puppet #chef #cfengine
  10. On being CTO at Hortonworks: http://www.pcworld.com/businesscenter …
  11. RT @gigaom: The enterprise needs a better network to the cloud http://dlvr.it/1nbPn0
  12. RT @gigaom: The state of Hadoop: still a work in progress (by @derrickharris): http://ow.ly/bQUkg
  13. Part 6: Architecting High Availability in AWS Series :Using AWS Building blocks http://bit.ly/Njzbg9  #aws #cloud #HA #in
  14. Part 5: Architecting High Availability in AWS Series :Multiple Availability zones http://bit.ly/N2F5T1  #aws #cloud #HA #in
  15. Part 4: Architecting High Availability in AWS Series :Database Tier http://bit.ly/O6xLug  #aws #cloud #HA #in
  16. Overcoming AWS Outages : High Availability Architecture Patterns http://bit.ly/LLEGoC  #aws #cloud #outage
  17. #hadoop relationship infographic from @datameer : http://gigaom.com/cloud/whos-con … #in
  18. Part 3: Architecting High Availability in AWS Series :DNS/ Load Balancing Tier considerations http://bit.ly/NgqW4i  #aws #cloud #HA #in
  19. Part 2: Architecting High Availability in AWS Series :Web App Tier considerations http://bit.ly/LDHwLo  #aws #cloud #HA #in
  20. Great article on big data myths http://on.mash.to/M01GCa  #bigdata http://bit.ly/LSfNct
  21. IDC 19% APAC-retailers-are-evaluating-cloud-adoption, #in, #cloud, http://cw.com.hk/news/idc-19-ap …
  22. Learn now about a new #free monitoring service for cloud and enterprise servers. http://dlvr.it/1mx6qx
  23. Netflix open sources Asgard cloud deployment smarts http://zite.to/MlhvG3
  24. Overcoming Outages in AWS : High Availability Architectures http://bit.ly/LLEGoC  #aws #cloud #outage
  25. #MongoNYC video: Real Time Data Analytics; Pre-Aggregation with Counters http://buff.ly/KBKKnP
  26. Presenting “In-Memory #BigData Processing on the JVM”, Frontier ... http://www.sys-con.com/node/2301794
  27. Cloud Computing Simplified http://buff.ly/KYYSnv
  28. "Connecting Redis to ElasticSearch For Custom Scoring With Nativescripts" http://dzone.com/tyAe  #Custom #Redis #SolrLucene #NativeScripts
  29. "Welcome to OpenStack - An Introduction" http://dzone.com/dOS8  #OpenStack #OtherLanguages #OpenSource
  30. What's the optimal deployment model for big data A @jameskobielus quick hit: http://on.fb.me/NrCEgY  #bigdata
  31. Cloud Technology And Small Business http://blog.webhosting.uk.com/web-hosting/cl …
  32. Cloud: Cloud outage report of 13 providers reveals downtime costs http://cloudaware.net/cloud/7585
  33. Crowdsourced analytics to alert customers to system events before they happen #bigdata #hadoop http://ow.ly/bLv2S
  34. We build tools for IT professionals to manage #AWS http://bit.ly/txqbGE .
  35. "#Hadoop 2.0: More than MapReduce" (http://bit.ly/L05KB3 ) JK--Good overview of some key announcements at recent #HadoopSummit
  36. Why Tech-Savvy CMOs Will Be Powerful Figures By 2017 | Fast Company - http://dharme.sh/LyfQtL
  37. Sears Uses Big Data to Get a Handle on Pricing - The CIO Report http://mobile.blogs.wsj.com/cio/2012/06/14  #in
  38. #Equinix expanding to meet growing Asian #cloud demand http://ow.ly/bF7Ao
  39. Slides from my presentation at Hadoop Summit http://www.slideshare.net/abetaha/karmas …
  40. Read this headline: Zookeeper killed by #wolves in #Sweden. http://on.cnn.com/KUJsPi  My reaction: Wait, Apache Wolves is a new project
  41. Predictive Analytics: The Perfect Use Case for Cloud Computing - Forbes: Another survey of 1,364... http://onforb.es/LWgX7h  #cloud #BI #TCN
  42. #HBase Write Path http://www.cloudera.com/blog/2012/06/h …
  43. check out Marten Mickos' slides from his "Clouds are all about APIs" talk http://slidesha.re/M6WScG  #in #cloud
  44. How #RightScale architects its own databases for worldwide scale, HA and DR scenarios. Check out the deck: http://ow.ly/bEu4D
  45. Big Data Clouds the idea of Building Low Resiliency Data Centers http://www.switchscribe.com/p=155  #CIO #cloud #in
  46. How to stuff 4,300,000,000 networks into your datacenter: http://ops.vu/ME8Nxp  #in
  47. Ex-Facebookers launch MemSQL to make your database fly http://dlvr.it/1kdnl4  #in
  48. Learn how #HBase provides random access low-latency read & writes. @jxcn01 explains the #HBase write path: http://bit.ly/KHOy3h  #in
  49. AWS internal load balancing use case http://www.raghuramanb.com/2012/06/aws-ec … #aws #cloud
  50. New compaction strategy for the #Cassandra File System to improve analytic performance http://www.datastax.com/dev/blog/new-i … #hadoop
  51. 10 innovators changing the game for Internet infrastructure http://dlvr.it/1kcC0y  #in
  52. MongoDB presentation from @WindyCityDB http://buff.ly/L4jChY  #in #nosql #mongodb
  53. Interesting Infographic Mobile Cloud Computing http://bit.ly/KIHB1C  #mobile #cloud #in #infographic
  54. Big Data: Yahoo And Hadoop: In It For The Long Term http://dataaware.net/bigdata/3407
  55. Big Data: Managing Big Data for the Greater Good #info360 http://dataaware.net/bigdata/3409
  56. #RabbitMQ Gets a "Nice Little" Upgrade http://bit.ly/MXvbpK  #vCenter #vFabric #VMware #SpringSource
  57. #Cloud #Blogs 5 Ways Cloud Computing Is Like Open Source: A decade ago, most IT departments denounced open-... http://bit.ly/LLpB8u  #TCN
  58. Scaling in the Cloud – Part 1: Distributing the load http://goo.gl/fb/xCsti
  59. PayPal Sees Need for Both RDBMS, Hadoop http://bit.ly/MObLAa  #in #hadoop
  60. Is the resistance to cloud-based systems by the IT dept more about protecting the company or protecting their jobs http://rww.to/OC3K4c
  61. [NEW] Amazon EMR now supports HBase: http://bit.ly/LXdtlm  #emr #awsdocs #hbase #AWS
  62. Hadoop, the elephant in the enterprise http://cnet.co/KEZZXw  #in #hadoop
  63. Hadoop at eBay is available on slideshare - http://slidesha.re/MF9zuH  #in #hadoop
  64. #hadoopsummit Hadoop at eBay is available on slideshare - http://slidesha.re/MF9zuH
  65. BT Addresses Big Data and Security Challenges With New Visualization Service #BigData #bigdata http://bit.ly/LkKbvV
  66. Cloud: With NASA on Amazon Will OpenStack Get Liftoff | Cloudline | Wiredcom http://cloudaware.net/cloud/6787
  67. RT @techmilind: #hadoopsummit in 2008, 200 attendees. 25% of them were yahoos. Today there are 2200 attendees. 25% of them are ex-yahoos.
  68. How Facebook keeps 100 petabytes of Hadoop data online http://bit.ly/LDZVKU  #bigdata #in
  69. "71% of CMOs unprepared for big data" (oops) -- CMO Study Highlights IT and Data Concerns http://midsizeinsider.com/en-us/article/ … #bigdata #in
  70. Oracle may launch its own PaaS offering | Cloud Computing - InfoWorld: http://bit.ly/oLcrpF  #cloud #paas #in
  71. Big data meets big wind #bigdata http://bit.ly/Lh4CK8  #in
  72. How Google and Microsoft are embracing graphs for the next generation of search: http://www.neotechnology.com/2012/06/how-go … #nosql #in
  73. Amazon Web Services Blog: Lots of SAP News to Start the Week http://aws.typepad.com/aws/2012/06/sa … #in #aws
  74. Symantec to Deliver Disaster Recovery as a Service on Windows Azure - PRWire: Symantec to Del... http://bit.ly/LUzBZH  #azure #cloud #TCN
  75. Big Data: Datameer Brings Hadoop To The Desktop http://dataaware.net/bigdata/3285
  76. Announcing IAM roles for secure access to #AWS service APIs from EC2 instances: fully supported by #AWS http://bit.ly/MoEoqm  #in
  77. NASA Saves nearly $1M Per Year By Using AWS: Linda Cureton, the CIO of N... http://bit.ly/Mx30dy  #cloud #aws #in
  78. The Most Annoying, Pretentious And Useless Business Jargon http://onforb.es/N4dVBi
  79. Unlocking Big-Data & Reaping Data Equity http://bit.ly/KnUV06  #in #bigdata
  80. How to work with #VMware #vCloud to build your #cloud - helpful presentation by @ccolotti: http://ow.ly/bselr
  81. Just announced at WWDC: Over 650K apps in Apple app store. 30 billion downloads.
  82. New #IBM JK blogpost: "Next Best Action in Real Time: The True Test of Big Data" (http://bit.ly/LMtzy8 )
  83. If you are not wake up of Nagios minimum 2 time per week, your technology is not sufficient cutting-edge.
  84. 5% of devops are have infrastructure as code. Rest of 95% are have infrastructure as PowerPoint.
  85. How 'systems thinking' is making the cloud transparent http://lnkd.in/yuZC54
  86. Microsoft Moves to Level the Cloud Platform Playing Field #Forrester Blogs http://bit.ly/KxWsjS  #azure #cloud
  87. Internal Load Balancing in Amazon Virtual Private Cloud http://bit.ly/KuKIIC  #aws #cloud #in
  88. 9 Open Source Big Data Technologies to Watch http://bit.ly/Kn07RK  #in #Bigdata #oss
  89. Howto easily deploy and configure a #MySQL server http://bit.ly/LS5DYp  #puppetize #sysadmin
  90. Cloud is a state of the business, not just IT http://dlvr.it/1htDvj  #cloud #in
  91. In startup is make or break time when CEO is want of install Big Data on laptop.
  92. This the next wave of innovation -> How Google's OpenFlow backbone works http://zite.to/KmkiiJ
  93. Data Science: How to hire & keep a data scientist - Shady Acres http://dataaware.net/datascience/32 …
  94. CloudAve: Forecast 2012–Enterprise Cloud Best Practices Panel: http://bit.ly/MzgLMk  #cloud #blogs
  95. Why ‘The New Yorker’ Is Now Embracing the Web http://bit.ly/LerauQ
  96. Free Whitepaper! 7 Habits of Highly Effective Private #Cloud Architects http://bit.ly/Hk3wvr
  97. Kickstarter: How crowdsourcing went mainstream http://bit.ly/K4R86s  #crowdsourcing #in
  98. 10 ways companies are using #Hadoop (for more than ads) http://bit.ly/MYrEK6  #GoodReading #BigData
  99. Seven Cloud Computing Trends (Part 2) http://sns.mx/R9kXy3
  100. #bigdata alert: Teradata a big player in big data - Dayton Daily News http://bit.ly/Ka57Ig
  101. Microsoft Outlines Massive Azure Additons http://bit.ly/KrH3gE  #ITBlogs #Cloud
  102. Presentation: Thanks to HTML5, the Web is FUN Again! - http://dzone.com/wprf  - @DZone Big Link by egenesky
  103. Really BigData!! PetaByte of Data every second http://bit.ly/Lak6Rz  #in #bigdata
  104. HP  s converged cloud to burst to Amazon and Savvis. http://goo.gl/KLPiu
  105. Facebook flop won't stop cloud computing IPOs | FP Tech Desk | Financial Post http://natpo.st/MuHaqG
  106. Asking the right questions can ensure cloud computing data security http://bit.ly/Mvr4Ne
  107. The cloud will cost you, but you’ll be happy to pay http://dlvr.it/1hgHW2  #in #cloud
  108. Scalability is not a "feature" tacked on at the end development.
  109. Citrix Buys Bytemobile for Cloud-Optimized Mobile Networks http://bit.ly/KOvN1N  #cloud #cloudComputing
  110. Bangalore-Based Bank Chooses IBM Cloud for Core Banking Solutions - Press Trust: This solution... http://bit.ly/LL3nCi  #Cloud #Analytics
  111. @WindowsAzure #DevCamp #Chennai – 21 June 2012 #Cloud http://bit.ly/NT7ayX
  112. CloudAve: Microsoft Does It Right And Oracle Claims They Are Right: http://bit.ly/NWRkDJ  #cloud #blogs
  113. Amazon Web Services Blog » Amazon CloudFront - More PoPs and More Growth http://bit.ly/MpBeza  #ITBlogs #Cloud
  114. #Azure #Cloud Microsoft Azure Cloud Service Updated Today With All-SSD Storage ...: Leading up to a press confer... http://bit.ly/MqQCPD
  115. What is innovation http://bit.ly/Kl3aTV  - my guest blog at Technology Academy Finland
  116. Now scale automatically and reduce cost intelligently as well. #AutoScaling + Spot Instances: http://goo.gl/1xfx0  #aws #in
  117. Inside Facebook's Open Graph http://j.mp/LiIj70  @al3xandru #in
  118. Can anyone catch Amazon's cloud http://goo.gl/IIZA6  , margin & competitive analysis. #in
  119. Every thing is 10x in cloud. Especially I/O latency.
  120. 1 million monkey hit random key for 1 million year can able generate Hamlet but not internal Wiki documentation.
  121. @DEVOPS_BORAT : Oracle Cloud is combine best of both world: cheap of Oracle Enterprise DB and simple of J2EE.”
  122. Big data meets big fashion: @kheussner takes a look at @custora: http://ow.ly/bnZId  #in #bigdata
  123. Twitter open sources Zipkin for distributed system tracing: http://bit.ly/KADDww  #in
  124. "Disk is the new tape" an overview of SQLFire in-memory database http://rww.to/Ly8xze  #in
  125. How Facebook plans to deconstruct the data center :http://bit.ly/NOg4Ob  #in
  126. Is OpenStack the new Linux | Cloud Computing - InfoWorld http://bit.ly/MKsaeE  #in #cloud #openstack
  127. Learn more about graph databases…new book - Neo4j in Action, available via http://www.neotechnology.com/about/graph-da … #in
  128. BBC News - IPv6: Trillions of new net addresses now possible http://bit.ly/NIevkU  #in
  129. larryellison - 4 yrs back: cloud is non-sense. 2 yrs back: cloud-in-a-box. today: oracle's 100+ #cloud apps as the 1st tweet. #reality
  130. The brains behind Hive launch on-demand Hadoop service http://dlvr.it/1h17pw  #bigdata #hadoop #in
  131. Cloud-based Mobile Device Management (MDM) Getting Hot http://bit.ly/KjJuSf  #Cloud #in
  132. Chevron explores the use of open source #Hadoop to reduce costs. - The CIO Report - WSJ http://ow.ly/bpOTj  #in #bigdata
  133. Data Modeling: Sample E-Commerce System with NoSQL-MongoDB: http://bit.ly/Lv6c8i  #in
  134. My answer to: Why doesn't Amazon EC2 charge based on actual CPU usage rather than instance hours http://qr.ae/RQSrI  on @Quora
  135. Facebook Will Disappear by 2020, Says Analyst - http://on.mash.to/MuEsHH
  136. #DataScientist is very geeky and a pedantic term for #BigData. #DataArtisans is probably the right term!
  137. Crowdsourced Google Map Plots 'Mad Men' Hot Spots - http://on.mash.to/MtJMLy
  138. RT @jeffbarr: New: Oracle Enterprise Manager (OEM) for Oracle DB Instances - http://aws.typepad.com/aws/2012/05/or … #aws #oracle #li
  139. Short Intro to Graph Databases, Manipulating and Traversing With Gremlin http://j.mp/KPiZly  Good ref material
  140. How big data predicted Eurovision — and offended Malta http://dlvr.it/1dQgyQ
  141. [Infographic] via @RaulPra: 5 major ecommerce trends in US http://onlinebusiness.volusion.com/articles/infog …
  142. How big is the cloud http://bit.ly/JLMZV3  #cloud #cloudComputing
  143. Gartner CIO Proirities: The New CIO Manifesto http://gtnr.it/JjbtRi
  144. "Security and Privacy in the Cloud" - Stephen Schmidt, VP and Chief Security Officer, Amazon Web Services: http://www.youtube.com/watchv=IedaYa …
  145. Entrepreneurs: Great chance to get a FREE guide to reaching minimum viable product w/@hnshah via @mixergy - click here: http://bit.ly/rq47rL
  146. Microsoft's View of the Future Workplace is Brilliant, Here's Why - Forbes http://shar.es/q79HA  via @sharethis
  147. Looking for Puppet report processors http://bit.ly/KR60p9  #puppetize #sysadmin
  148. Hadoop is not, and never will be, real-time. @rqtaylor explains: http://bit.ly/MNHZQn  #BigData #Hadoop #BI #in
  149. MongoDB or MySQL Why not both http://bit.ly/JZvhhF  #in
  150. Node.js Connect session store for #DynamoDB: https://github.com/ca98am79/conne …
  151. Don't make #cloud management an afterthought http://shar.es/q7zRf  #cloudcomputing
  152. How Intuit uses big data to ‘delight’ you http://dlvr.it/1csB4h  #in
  153. How the rich pass $$ to their heirs: Grotesque http://goo.gl/1yIOZ  ; Inspiring (Chuck Feeney) http://goo.gl/QKftG  http://goo.gl/Lns6K
  154. 30 years ago the government had the best technology. 20 years ago, enterprises. 10 years ago, consumers. Now it's 4-year-olds.
  155. The Data-Driven Parent - The Atlantic http://bit.ly/IgrrQ3  <- scary #in
  156. #AWS Console updates for Elastic Load Balancer: http://goo.gl/xb4Dx  #in
  157. Web Data is Big Data http://zite.to/K1zWh0  #in
  158. Realtime Pig with HStreaming! http://hstreaming.com/docs/developer … #hadoop Anyone tried this #in
  159. Nearly 29% of consumers who research a product in a retail location through a smartphone purchase that product online. http://rww.to/KZbhsX
  160. Called a vote for merging automatic-failover HA to Hadoop: http://markmail.org/thread/nbct52k …
  161. RT @ForbesTech: How Hadoop and SAP HANA can Accelerate Big Data Startups http://bit.ly/IYGgTH
  162. 7 Key Drivers for the Big Data Market | Hortonworks http://monk.ly/K6JJ4H
  163. Free Webinar: Delivering World-Class Big Data Analytics with MongoDB and Pentaho http://j.mp/JR5K85
  164. #Nvidia Claims #Cloud #GPU http://apache.sys-con.com/node/2280543
  165. Analyst Commentary: Oracle clarifies its Cloud strategy - BusinessCloud9 http://bit.ly/KnYi27
  166. High Scalability - High Scalability - Big List of 20 Common Bottlenecks - http://goo.gl/2KIJx
  167. "Caching is an art best served by monitoring." http://highscalability.com/blog/2012/2/27 …
  168. Is My Public Cloud Too Public Part 3 http://goo.gl/2VlpO
  169. Pinterest is #6 on this list of the most sought after Silicon Valley startups for engineers. http://rww.to/JUhYLO
  170. Remember: just like flammable and inflammable mean the same thing, "duh" and "no duh" are semantically identical. Just FYI.
  171. The universe of initial public offerings is seemingly simple: about 2,400 tech companies since 1980 http://bit.ly/L3tple
  172. CIO's - should they be business-minded or tech-minded @bernardgolden 's take on @cioonline http://bit.ly/Ja33fp  #in
  173. The unsexy side of big data: 5 tools to manage your Hadoop cluster http://gigaom.com/cloud/the-unse … #bigdata
  174. Training courses at @Hadoop_Summit already sold out. Register ASAP to get access to rest of show while you can! http://hadoopsummit.org/register/  #Hadoop
  175. #puppetizing infrastructure at Citygrid - Julien's talk at #puppetcamp LAX http://ow.ly/i/DBq8
  176. New - RDS Read Replicas In the Virtual Private Cloud - http://bit.ly/J4nkTn  #aws #myqsl #in
  177. My   Facebook IP comparison chart : http://nyti.ms/J4nOZM  - How it compares to Google, Apple etc.
  178. Google, Microsoft both targeting Amazon with new clouds http://gigaom.com/cloud/scoop-go …
  179. Informatica 9.5 Platform Adds Extended Hadoop Support http://zite.to/MpTmOr
  180. Google Launches BigQuery, Cloud Business Intelligence Service for Big Data http://bit.ly/JUYJDj  #cloud #cloudComputing #Google #in
  181. Social Media Marketing Landscape : http://read.bi/MpXU7t  #in
  182. RT @BeDrivenbyData: Deploying MySQL on Amazon EC2 – 8 Best Practices | Cloud Zone http://bit.ly/KhIoWh  #AWS #cloud
  183. Voldemort on Solid State Drives | LinkedIn Engineering http://engineering.linkedin.com/voldemort/vold …
  184. Learn about ElasticSearch Caches, how to tame and monitor them! http://ow.ly/aYqnu  #elasticsearch
  185. .@brunoaziza lands in the Valley at an interesting company doing big data analytics: http://youtu.be/oZjvifjz98o
  186. "On Developing on the Cloud with Cloudbees" http://dzone.com/fzSY  #cloudbees #cloud
  187. 5 Things Amazon Taught me About Deployment Automation http://java.dzone.com/articles/5-thi … #DevOps
  188. Oracle Positioned to Succeed in the #cloud Computing Market - http://NetworkComputing.com  http://dlvr.it/1ZD6Pm
  189. #BigData: Latent Latency http://zite.to/J6EZNR
  190. Extracting Gold from the #BigData Ecosystem http://zite.to/J6F2sW  #in
  191. Five things CIOs should know about #bigdata http://zite.to/J6F983  #in
  192. Fighting Crime: Help From Crunching Data http://zite.to/J6FaZo
  193. From #MongoDB to #Riak http://zite.to/JGMNDO
  194. Gartner Blog Post: "Hey Robots, Go Crawl Somewhere Else" by Craig Roth http://gtnr.it/J6GKKS
  195. "What about Hive, and isn't it free" Explaining the limitations of Hive in question #3 http://bit.ly/JiPk57  #bigdata #hadoop
  196. A Heat Map Of London's Startups http://bit.ly/Kss0Ff  (As Covered On TechCrunch http://tcrn.ch/Kss6wO  )
  197. Interview with Yahoo's Supreeth Rao about using #Apache Pig Joins in Yahoo display advertising #Hadoop http://hadoopsummit.org/blog/meet-the- …
  198. Thank you! RT @Biz_Innovations: Top 50 #Cloud Twitter Influencers http://bit.ly/IVPTBk
  199. Cloud Computing a Game Changer for Your Company 5 Questions to Ponder - Forbes http://onforb.es/JQMF63
  200. See what Zuckerberg can afford after the Facebook IPO - http://on.mash.to/L6RKK2
  201. 3 problems AWS needs to address: http://goo.gl/YQVF9  #aws
  202. "On Domain Modeling with Spring Data Neo4j" http://dzone.com/D1ZX  #neo4j #nosql
  203. Charting the Adoption of Cloud at Cloud Expo New York http://bit.ly/L5RgUk  #cloud #cloudComputing
  204. "Getting Started with MongoDB and PHP" http://dzone.com/WP7I  #nosql #mongodb #php
  205. "Book Review: Machine Learning in Action by Peter Harrington" http://dzone.com/siJ6  #nosql #review #ML
  206. Emerging chip/hardware architectures for the cloud. Find out more at #structureconf: http://ow.ly/aPxS5
  207. An ok guy to share a birthday with. Why Nikola Tesla was the greatest geek who ever lived - The Oatmeal - http://theoatmeal.com/comics/tesla
  208. The Neo4j 1.8.M02 release is out, a reliable stepping stone in our ongoing efforts for a kick-ass #graphdb http://blog.neo4j.org/2012/05/neo4j- …
  209. The real limits of #cloud computing - http://ITworld.com  http://dlvr.it/1Yzsvp
  210. Does Yahoo even know how to be a modern media company http://dlvr.it/1YypWb
  211. Yahoo’s big data play Genome is smart, but … http://dlvr.it/1Yz2zq
  212. Cloudera Manager 4.0 Beta released http://prsm.tc/cvjtRC  via @prismatic #hadoop #hbase
  213. Great series for #bigdata #in “@CurtMonash: http://www.dbms2.com/2012/05/13/not … Analysis of large graphs.”
  214. What does big data analytics do that current business intelligence software doesn't http://bit.ly/JiPk57  #in
  215. 7 Key Drivers for the Big Data Market http://bit.ly/IUbJoO  #in #Hadoop #bigdata
  216. Another one.Why FB bought Instagram:http://goo.gl/2odJB  #facebook #instagram
  217. Hitting a home run in the cloud http://dlvr.it/1YwCWC
  218. Amazon CloudFront now supports Dynamic Content, variable TTL:http://goo.gl/E1EN0  #aws #cloudfront #in
  219. “@jeffbarr: Just saw this: Citrix #Netscaler 10 available on #AWS: http://bit.ly/IYCtKN ” #li
  220. RT @jelder: Update to my "3 Problems AWS Needs to Address" post: CloudFront's initial congestion window is now 10! http://bit.ly/cfcongest
  221. The White House is Spending Big Money on Big Data - Forbes: http://onforb.es/Ke3fdu
  222. Big data: The quick and the dead http://dlvr.it/1YllHX  #in #bigdata
  223. The salesman and the developer http://zite.to/KsEJY3  #in
  224. Some of my ideas since couple of years , that I was finally able to productize in #vFabric Application Director http://www.svforum.org/index.cfmfuse …
  225. Go Back In Time: How 10 Big Websites Looked 15 Years Ago http://soc.li/6VOvIfK
  226. This Week in Big Data: Growth for Hadoop, Hortonworks http://zite.to/JuAEBJ
  227. Big Analytics with R, Cassandra, and Hive http://zite.to/K37p5V  #in #bigdata
  228. Big Data and DevOps: 5 Projects to Watch http://zite.to/J4zNsP  #bigdata #in
  229. Building a #private #cloud Learn how #VMware and #Puppet Enterprise 2.5 can help. Quick video http://bit.ly/pe2_5cpv  #sysadmin
  230. Another flaw in the human character is that everybody wants to build and nobody wants to do maintenance.
  231. The importance of Amazon Web Services, by Steve Blank : http://gigaom.com/2012/05/11/ste … #aws #in #cloud
  232. Future of cloud computing. http://www.youtube.com/watchv=akUvru …
  233. How big data in the cloud can drive IT ops http://bit.ly/deM1Mz  #ITBlogs #Cloud #TCN
  234. Citrix’s Project Avalon Delivers Windows via the Cloud - Wired News http://bit.ly/K6D8Dm  #ITBlogs #Cloud #TCN
  235. Cloud computing in Franchise business - http://vertical-cloud.com/2012/05/10/clo … #cloud
  236. Lucid Imagination announced beta release of LucidWorks Big Data w Hadoop, Mahout, R and Lucene/Solr http://bit.ly/INggdZ  #in
  237. The Perfect Milk Machine: How Big Data Transformed the Dairy Industry; http://bit.ly/JuTlW7  #in
  238. "You go to production with the code you have, not the code you wish you had" - Devops Rumsfeld
  239. The title says it all. "Defining 'big data' depends on who's doing the defining" http://bit.ly/ITdzKk  by @BButlerNWW #Hadoop
  240. How we use our own app to make our web experience faster http://blog.newrelic.com/2012/05/10/how … #webperf
  241. Seven Practical Steps to Help You Run Your On-Premise Cloud Like a Business http://bit.ly/JunyDo
  242. RT @mjasay: Top 50 Open Source Companies: Where Are They Now http://bit.ly/IQmqfJ
  243. @HadoopNews named Top 50 #BigData Twitter Influencers http://zite.to/K0a81X
  244. Is There Big Money in #BigData - Technology Review http://zite.to/IWhoNV  #in
  245. Online resources for handling #bigdata and parallel computing in #R http://zite.to/Jpnyo1  #in
  246. The Art of Infrastructure Elasticity using AWS http://bit.ly/IqTmww  #aws #cloud #ec2 #autoscaling #redis #rabbitmq #in
  247. The VC industry is broken. So now what http://dlvr.it/1XXpTm
  248. Beam me up: Kinect powers 3-D human holograms! http://dlvr.it/1XXpSC
  249. Hadoop: Answering the Basic Questions: Why, What, How, Where http://j.mp/KIIOUG  #Hadoop #Vertica #HP #MapReduce #BigData
  250. Explaining Hadoop and Big Data to the C-Suite http://j.mp/KibNle  #Hadoop #BigData #MapReduce
  251. #HDFS: #Hadoop and Solid State Drives http://hadoopblog.blogspot.com/2012/05/hadoop …
  252. IDC: Hadoop-MR ecosystem software market was $77mil in 2011; expected to grow to $812.8mil in 2016 http://on.mktw.net/IF1gSY  #bigdata #in
  253. Gartner CIO Priorties: Which 'Internet of Things' Business Models Are Right for Your Customers http://gtnr.it/JjbtRi
  254. RT @rightscale: Cloud is a corporate strategy, not a tactical solution — Great article on #cloud mgmt by @mthiele10 http://bit.ly/IyvT8K
  255. Is Yahoo really threatening memcached and Open Compute http://dlvr.it/1WgKpJ
  256. Art of infrastructure elasticity http://bit.ly/IqTmww  #aws #cloud #ec2

Cloud, Mobile and Big Data Stories - June-Sep 2012

Interesting Stories(tweets) on Cloud, BigData and Mobile which you may have missed on June - Sep 2012. Collection of my tweets , RT and thoughts from Industry leaders and thinkers.



  1. Big Data in Real-Time at Twitter http://slidesha.re/Qp71Us 
  2. Database sharding http://slidesha.re/QFhgnP 
  3. Real world Scalability http://slidesha.re/PsSt7p 
  4. 20 MySQL Design Tips http://slidesha.re/Ulkspp  #mysql
  5. Pentaho, Cisco Partner on Open Source Big Data Solution #bigdata http://bit.ly/R1Xx3T 
  6. How To Win The #Cloud Wars - Forbes http://ow.ly/dPKqO 
  7. Preparing your ecommerce IT infrastructure for Holiday season using AWS http://bit.ly/MpMTA0  #aws #cloud
  8. Open source in 2012: Bigger and better than ever http://bit.ly/deM1Mz  #ITBlogs #CloudComputing #Cloud
  9. Vimeo creates new tools to support and pay video makers http://dlvr.it/2B8GKk 
  10. “@YvesMulkers @BigData_ If 'Big Data' Simply Meant Lots of Data, We Would Call It 'Lots of Data' #bigdata http://bit.ly/UoAqly 
  11. #Apache sweeps @InfoWorld Bossies 2012! Awards to #Hadoop #Cassandra #Cordova (neé PhoneGap) #Cloudstack & #OpenOffice http://s.apache.org/EBc 
  12. #Cloud computing leaves the hype behind http://ow.ly/dNX2u  <See through hype; true clouds are API-driven, offering on-demand resources
  13. 5 ideas to help everyone make the most of #bigdata | Data | GigaOM http://buff.ly/Qh88VX 
  14. Sharding Apache Solr on AWS http://bit.ly/wJzFns  #ec2 @aws #solr
  15. Big Data's Next Target: Brick-And-Mortar Retailers #bigdata http://bit.ly/OTGZZj 
  16. How to design high availability patterns in cloud - Harish Ganesan (@harish11g), CTO, 8K Miles http://interop.in/conferenceataglance.asp … @interop_india
  17. Converting Java to Objective-C with Google’s J2ObjC http://www.infoq.com/news/2012/09/J2ObjC#.UFcjlXepeCs.twitter … #mobile
  18. Spanner Google Globally distributed database http://bit.ly/PjTbUl 
  19. The 1,500-square-mile area of Silicon Valley has seen the greatest wealth creation in history. http://nyti.ms/PwE7Rv 
  20. So you’ve created an app; now why hasn’t anyone discovered it? http://ow.ly/1mtFST 
  21. Cloud: 7 tips for bootstrapping a (profitable) Internet company http://cloudaware.net/cloud/13879 
  22. How Disney built a big data platform on a startup budget http://ow.ly/1mtB7J  #bigdata
  23. Nice representation of the #BigData ecosystem @Forbes http://flpbd.it/90yQi  RT : http://bit.ly/PvrXsb 
  24. Google’s high-tech goggles used to shoot New York Fashion Week documentary http://www.digitaltrends.com/cool-tech/googles-high-tech-goggles-used-to-shoot-fashion-documentary/ … #undefined via @DigitalTrends
  25. @Newvem Helps AWS Customers to WIN on the AWS Reserved Instance Marketplace http://bit.ly/PfgcqY 
  26. What can your company do to better capture useful data, both #BigData and small? Find out on #DMRadio http://bit.ly/QCkPwW 
  27. Big Data: Experts to Follow on Twitter - http://tchpd.co/PkyUw3  - via @techopedia - #BigData #Twitter
  28. Go Mike! RT @voltdb: "Memory is the new disk" - VoltDB's Mike Stonebraker via the NYT http://ow.ly/dBl0I  (via @ISTC_BigData)
  29. Apache Solr Shards on Amazon EC2 http://bit.ly/wJzFns  #Solr #ec2 #cloud #shards
  30. MongoDB and the JVM with @rit at #JavaZone pic.twitter.com/7Y9HNmkP
  31. Who cares about Big Data • The Register #bigdata http://bit.ly/RTOHpD 
  32. Big data has the potential to revolutionize management. by @amcafee http://bit.ly/UHpqPb  @harvardbiz #cio #cmo #socbiz
  33. 30% of our workforce are "cloudies," or remote workers. We just added a new remote office in Edinburgh. http://ow.ly/dDyfM 
  34. Last night: #EC2 Reserved Instance Marketplace - http://bit.ly/PbhB25  - Buy and Sell Reserved Instances!
  35. How To Take Big Data to the Cloud | Hortonworks http://ow.ly/dEvtz 
  36. Data Science: What is a 'data scientist'? - FierceBigData http://dataaware.net/datascience/5527 …
  37. Figured. Your own screwups always cause biggest problems. RT GoDaddy: Wasn't A Hack, Was Internal Network Issues http://tcrn.ch/RD43zX 
  38. Cloud API and service designers, stop thinking small http://www.infoworld.com/d/cloud-computing/cloud-api-and-service-designers-stop-thinking-small-202003?source=rss_enterprise_architecture …
  39. New High IO EC2 Instance Types Needed ? http://bit.ly/S831ab  #ec2 #aws #cloud
  40. Mobile + Cloud computing case http://bit.ly/O8TRcm  #aws #cloud #mobile
  41. Microsoft Team Shrinks Big Data By Deleting It http://bit.ly/NWj6Ez  #CIO #BigData
  42. By 2016, IT cloud services will account for 16% of #IT revenue in 5 key tech categories. http://bit.ly/NXPB5o  @IDC #DF12 #CIO
  43. How Enterprises leveraging Mobile + Cloud computing http://bit.ly/O8TRcm  #aws #cloud #mobile
  44. #Big Data as the Digital Nervous System. http://www.forbes.com/sites/oreillymedia/2012/09/04/big-data-is-creating-a-digital-nervous-system/ …
  45. Startups rush to the cloud - PC Advisor http://dlvr.it/27cQNH 
  46. 40 Beautiful HTML5-Powered Websites For Your Inspiration http://zite.to/S3UhSs 
  47. Cloudera Manager makes it really easy to control your cluster with custom scripts. More details: http://www.cloudera.com/blog/2012/09/automating-your-cluster-with-cloudera-manager-api/ …
  48. Mobile cloud computing and Enterprises http://bit.ly/O8TRcm#aws #cloud #mobile
  49. @AWSreInvent - I want to be at reInvent because the cloud changes the IT world I have inhabited for the last 30 years.
  50. #FF Real AWS Experts @esh @garnaat @harish11g @mario_mh @achatzakis @dkoffler cc @jeffbarr #cloudacademy
  51. Big Bets On Big Data - #BigData and #datascience will become the new "hot" discipline for the next generation - http://dld.bz/b6tRG 
  52. Right Amazon EC2 Instance Sizing for #HAProxy http://bit.ly/T53nPU#aws #ec2 #cloud
  53. HAProxy and Web/App Tier High Availability patterns in AWS http://bit.ly/NOk6KQ#aws #ec2 #haproxy
  54. China's Baidu to invest $1.6bil to set up cloud computing centre http://buff.ly/N8d7ei 
  55. #BigData Takes Center Stage In The 2012 Presidential Election - Forbes http://www.forbes.com/sites/netapp/2012/08/29/big-data-takes-center-stage-in-the-2012-presidential-election/ …
  56. Why you should continue working on your bad idea http://joel.is/post/30648299967/why-you-should-continue-working-on-your-bad-idea …
  57. How Much Data is Created Every Minute? MUST SEE INFOGRAPHIC showing amount of data being generated every day. http://dld.bz/b65sd#bigdata
  58. Recent AWS updates -> Architects are happy http://bit.ly/OxMgGs#aws #cloud . Thanks @raghuramanb
  59. Right Amazon EC2 Instance Sizing for HAProxy http://bit.ly/T53nPU#aws #ec2 #cloud
  60. Good to see #bangalore based developer's app ranked No.1 in Education on iOS http://www.istorytree.com/web/index.html 
  61. delicious founder launches Human.io - (just a tiny post) http://gigaom.com/2012/08/30/delicious-founders-launches-human-io-launches/ … via @om
  62. New post on Newvem: Building Applications with DynamoDB: Overview and Best Practices http://ow.ly/1mdAge 
  63. Big data becoming a priority Digital Reasoning http://bit.ly/RrTs5w#BigData
  64. What users are saying about open clouds by me (data from IDC) http://news.cnet.com/8301-13556_3-57503919-61/what-users-are-saying-about-open-clouds/ …
  65. #BigData Exploration and Experimentation for Business Insight and #Innovation http://bit.ly/OY513m#Analytics
  66. HackerNews : Tim Cook memo to Apple employees after jury verdict on Samsung - http://www.jacquesmattheij.com/tim-cook-memo-line-by-line/ …
  67. We build products for #sysadmins to run #servers http://bit.ly/vXjxmv .
  68. Bigger than #BigData: Facebook processes 2.5 Billion content items, 2.7 B Likes, 300M photos, 500+ TB of data every day http://tcrn.ch/NnTKiw 
  69. The worst error in strategy is to compete with rivals on the same dimensions. - @michaeleporter
  70. Fidelity to invest $20M in Indian data analytics company @AbsolutData http://reut.rs/U1QEQu 
  71. Amazon #EC2 Instance type for #HAProxy http://bit.ly/T53nPU#cloud
  72. Symantec Makes Hadoop Enterprise Ready With Big Data Add-On : http://su.pr/1lSt6d#hadoop #bigdata #symantec
  73. The irony of life is that by the time you’re old enough to know your way around, you’re not going anywhere.
  74. Three Things Every Software Investor Should Know - Forbes http://ow.ly/dc9NI 
  75. Cloud Computing: Skytap Intros Cloud Foundry-Based Virtual Private PaaS: Skytap expects to put out bait next wee... http://bit.ly/T4WX37 
  76. A man is but the product of his thoughts. What he thinks, he becomes.
  77. Big data meets big boozers: @snooth launches a sommelier algorithm to help you pick the right wine for your meal: http://ow.ly/dagKZ 
  78. Fall’s Hottest Fashion Trend: Internet Memes http://bit.ly/RjjonL 
  79. Choosing the EC2 Instance Type and AMI Type for HAProxy http://bit.ly/T53nPU#EC2 #AWS #cloud #haproxy
  80. The Surprising Way eBay Used Big Data Analytics to Save Millions #bigdata http://bit.ly/P3BtXI 
  81. Is #AWS Glacier really 10x more expensive than tape? http://buff.ly/MOBv4xvia @ZDNet #cloud
  82. The Top 20 Most Secure Cloud Hosting Companies: Part 1 http://www.cloudtweaks.com/2012/08/the-top-20-most-secure-cloud-hosting-companies-part-1/ … #cloud via @cloudtweaks
  83. These #Facebook data statistics can make other #BigData look small http://gigaom.com/data/facebook-is-collecting-your-data-500-terabytes-a-day/ …
  84. Facebook is collecting your data — 500 terabytes a day http://dlvr.it/22YLHp 
  85. A good overview of #Google Compute Engine #IaaS #cloud service http://ow.ly/d989h 
  86. Know exactly how much your #cloud costs | http://ow.ly/d7T2C| By department, by account, by cloud, by any "tag" you want
  87. $100m vs. $600m: Open-Source Big Data vs. Proprietary Databases http://bit.ly/O1uU2H 
  88. #bigdata Google's Mind-Blowing Big Data Tool Grows Open Source Twin - Wired News http://bit.ly/PbrP0R 
  89. "The best possible time to make a mistake is when it's cheapest to fix it." @jjg at #UXweek, discussing tradeoffs between UX and Agile
  90. Interesting chat: #BigData & monetizing gaming industry (http://tinyurl.com/crpshbp ) by Kim @CoreAnalytics. Good speaker and writer.
  91. Amazon Announces Amazon Glacier archive storage at $0.01 /Gb http://tinyurl.com/c3fcox7#cloud #yam
  92. How #Agile helped a #father get his #kid to tidy the room http://agileandfamily.blogspot.com/2011/10/how-agile-helped-father-get-his-kid-to.html?spref=tw …
  93. Selecting a #private cloud is harder than you think - InfoWorld http://tinyurl.com/8zlgsfv#application #Cloud
  94. What Is a Data Scientist (And What Isn't)? http://wp.me/pM4Fw-h 
  95. @newvem: Great Collection of How-to Guides for AWS Cloud - Check them out ..: http://lnkd.in/RW54Ht 
  96. Thanks @jinman for AWS TCO whitepaper, @raghuramanb good extension http://bit.ly/PzwbRU 
  97. Oracle Makes More Moves To Kill Open Source MySQL http://techcrunch.com/2012/08/18/oracle-makes-more-moves-to-kill-open-source-mysql/ … via @techcrunch
  98. Why to #Patent and when not to patent http://yourstory.in/2011/11/why-to-patent-when-not-to-patent/ …
  99. Forget the #Cloud: DNA Could Become the New Home for Big Data Storage #bigdata http://bit.ly/OBI9Xg 
  100. big-data explosion is driving a shift away from gut-based decision making http://s.hbr.org/RnVFoO@HarvardBiz [it shouldn't]
  101. "Slow Websites Cost the US Ecommerce Market $504 Billion in 2011" http://dzone.com/oBr3#SlowWebsites #Ecommerce #WebDesign
  102. "MongoDB and NoSQL" http://dzone.com/mzj6#MongoDB #NoSQL #Database #Java
  103. "NoSql and a Life Without Schema" http://dzone.com/tTJr#NoSQL #Schema #Database #Java
  104. Big Data: Data Quality's Best Friend? Part 2 http://ibmdatamag.com/?p=5111#bigdata via @ibmdatamag
  105. Find it interesting that, according to this #cloudcomputing survey, 38% of enterprises already using PaaS: http://goo.gl/6WCLl 
  106. RT @CIChuck: How 128 robot arms can do the work of hundreds of Chinese electronics workers http://bit.ly/P6uAk3 
  107. A rare look inside Facebook’s Oregon data center [photos, video] http://bit.ly/Pu7dBE 
  108. #EC2 how-to: Sign Up for #AWS #Consolidated #Billing http://www.newvem.com/how-to-ec2-sign-up-for-aws-consolidated-billing/ …
  109. My short @Neo4j presentation from @JRubyConfEU is online: http://www.slideshare.net/jexp/neo4j-j-ruby-presentation-jrubyconfeu … Check out http://maxdemarzi.com/too Thanks for the great conf!
  110. 54 smart thinkers everyone should follow on Twitter http://read.bi/N2igRj#business #leadership #socialmedia
  111. How India’s favorite TV show uses data to change the world http://gigaom.com/cloud/how-indias-favorite-tv-show-uses-data-to-change-the-world/ … via @derrickharris #bigdata #analytics
  112. 15 business theories that will improve your life http://read.bi/OwDARx#leadership #management
  113. #Cloud computing changes all rules in banking http://www.koreatimes.co.kr/www/news/biz/2012/08/331_117690.html …
  114. "When you have exhausted all possibilities, remember this - you haven't." — Thomas Edison #quote
  115. IBM Beats Oracle, Microsoft With Big Data Leap http://twb.io/vozRPhvia @InformationWeek #bigdata #cognos mibile app on #iTunes #iod
  116. How mobile data is making us question everything http://ow.ly/1m1UG8 
  117. Cloud Service Providers Challenge Traditional IT Outsourcing http://bit.ly/N7BpGB#CIO
  118. Four things about PCI Compliance in the Cloud http://bit.ly/OH3KDx#Cloud #CloudComputing”
  119. Big Data, 3D printing, #cloud computing will control hype cycle of technologies ... - Times of India http://dlvr.it/21Wlv2 
  120. Your second-in-command can make you or break you as a leader http://s.hbr.org/RnV9HfHBR #leadership #management
  121. Europe: Lots of cloud opportunity to tap — Cloud Computing News http://bit.ly/P4wvWg 
  122. How banks are managing their data: http://www.infoq.com/presentations/Panel-Banks-Managing-Data …
  123. Very interesting #Google Prediction API https://developers.google.com/prediction/#cloud
  124. People And Patterns: Getting Cloud TCO Right - guest post by @jinman at @TechCrunch #AWS http://wv.ly/THUQV7 
  125. The Total Cost of (Non) Ownership in the #cloud - presentation: http://slidesha.re/NssZJGpaper: http://bit.ly/NkbBmo#cloudtco #tco
  126. Who Is Paying For Big Data Projects? http://tinyurl.com/caumdoq@InformationWeek #BigData
  127. More than 7 million tweets related to #Olympics games analyzed by @TIBCOSpotfire #Bigdata #analytics
  128. Internet Evolution - Stephen Lawton - Why Private Clouds Aren't Really Private http://ht.ly/1m038E 
  129. HBase Replication: Operational Overview http://bit.ly/Ss5sVS 
  130. ClickZ Talks Big Data with BBDO [Video] #bigdata http://bit.ly/R4MLdw 
  131. Infographic: Who’s using cloud today? - http://www.cloudtweaks.com/2012/01/infographic-whos-using-cloud-today/ … #infographic #cloud #technology
  132. The Seven Deadly Sins of Management http://s.hbr.org/OzFovd@HarvardBiz [good read] #leadership #management
  133. Forget Apple, Forget Facebook: Here's The One Company That Actually Terrifies Google Execs http://www.businessinsider.com/forget-apple-forget-facebook-heres-the-one-company-that-actually-terrifies-google-execs-2012-8?utm_source=twbutton&utm_medium=social&utm_campaign=sai … via @sai
  134. Big Data Projects: 6 Ways To Start Smart http://twb.io/TyjyHr#bigdata
  135. 50 must-read federal #technology blogs (including @CTOVision) via @FedTechMagazine: http://bit.ly/OUJN7O 
  136. Techmeme: How Big Data Became So Big #bigdata http://bit.ly/Mrbw2F 
  137. Interesting read: Riak CS comparison with #OpenStack Swift and their resp. design choices http://po.st/RwWAP4/H/T @koolhead17
  138. Cloud Storage Firm Targets Big Data Firms with StorageGRID 9.0 #bigdata http://bit.ly/Nqcl8j 
  139. What is marketing? http://onforb.es/P7ZIDD@Forbes #cmo
  140. 10 Totally Unique Ideas for Your Next Blog Post http://j.mp/MCTbBf 
  141. Big Data is a big deal for newspapers http://bit.ly/NeMu6m 
  142. Cloud: Fujitsu puts the cloud into a box http://cloudaware.net/cloud/11071 
  143. Has all the small data gone away? Obviously not, but let's face it: #BigData sure is a big deal http://bit.ly/MKGkY4#DMRadio
  144. #Apache #Hadoop #YARN – Background and an Overview - http://hortonworks.com/blog/apache-hadoop-yarn-background-and-an-overview/ … #bigdata
  145. PCI Compliance in the Cloud http://esj.com/articles/2012/08/06/pci-compliance-in-the-cloud.aspx …
  146. How are mHealth companies utilizing the data they collect? @jjacobs22 @zeoceo @halletecco at #mobilizeconf: http://ow.ly/cNtRe 
  147. Writing a followup article on scripting @Joyent Zeus/Stingray Appliance API on gathering stats @riverbed #cloud #api http://bit.ly/TbDdgn 
  148. #AWS and #NASA have published a very cool case study on the many ways that @MarsCuriosity is using the AWS cloud http://aws.amazon.com/nasa 
  149. Gartner predicts that “Big Data will deliver transformational benefits to enterprises within 2-5 yrs" http://wp.me/p1AMkl-c4#bigdata
  150. VMware acquires Big Data analytics tool Log Insight http://dlvr.it/1z5WHk 
  151. #cassandra12 @adrianco on Economics: 100,000 iops 1GB/sec on new SSD based network. $3.10/hour on AWS SSD. Game changing
  152. The IDC's quarterly numbers show Android leading in market share and shipments http://dlvr.it/1z5bWx#secondquarter
  153. #cassandra12 Netflix logging system is 72 nodes, 250K writes per second with Cassandra
  154. RT @lhazlewood: #Netlix's Priam project (on GitHub) will regularly auto backup an entire #Cassandra cluster to AWS S3! #Cassandra12
  155. #BigData leaders in online retail: 25% higher revenues than peers (10 yr CAGR). How are you growing? Slides: http://ow.ly/cPBlb 
  156. The true size of Africa (aka It's much bigger than you think) :: http://static02.mediaite.com/geekosystem/uploads/2010/10/true-size-of-africa.jpg …
  157. Nimbula, MapR want to give Hadoop a home on your private cloud http://dlvr.it/1yqtNR#bigdata
  158. The Future of #BigData: Good, Bad or Ugly? - #DataScience Central http://bit.ly/PAh32y 
  159. Good Read! Wozniak is wrong about cloud computing by @DavidLinthicum http://zite.to/P3gSSJvia @zite
  160. 6 Signs of a Maturing Cloud-Computing Industry http://goo.gl/mRTIFby @it_ToddNielsen #Cloud #CloudComputing
  161. Hello World in cloud is involve 1 load balancer, 3 web server and 2 database server.
  162. E-Commerce Style Big Data Analytics Meet Brick And Mortar Retailers #bigdata http://bit.ly/MDbtxm 
  163. AWS launches much awaited Provisioned IOPS and EBS-Optimized Instances http://bit.ly/MSpKLc#AWS #EBS #cloud #in
  164. I now convince #bigdata is bubble. I go fortune teller in Palo Alto, she scan palm into Hadoop cluster and email to me my future.
  165. RT @Xenos_Group 10 Big Predictions About Big Data http://ow.ly/czWcn#bigdata #ecm #ccm
  166. BSA Study: Strong Cloud Adoption in Emerging Markets - Cloud computing and cloud services are growing exponentially ... http://ow.ly/1lLrbn 
  167. In devops 80% of battle is know which is cause and which is effect.
  168. If you keep saying things are going to be bad, you have a chance of being a prophet.
  169. 5 Cloud Performance Monitoring Tools http://bit.ly/PHWNRa#cloud #cloudComputing
  170. ♻ Using Apache to Save Data in Redis http://j.mp/N7cdKK#Redis #Apache #key-valuestore
  171. Start monkeying around - Chaos Monkey released into the wild! http://techblog.netflix.com/2012/07/chaos-monkey-released-into-wild.html …
  172. Netflix open sources cloud-testing Chaos Monkey — Cloud Computing News http://gigaom.com/cloud/netflix-open-sources-cloud-testing-chaos-monkey/ …
  173. 3 Reasons Your Company Still Hasn’t Moved to the Cloud http://bit.ly/Ngd7Uh 
  174. A disruptor in the Android market: the Galaxy S III breaks away from the pack (by @KevinCTofel): http://ow.ly/cvjGa 
  175. Twitter blames outage on 'infrastructural double-whammy': http://ops.vu/LUr5v3 
  176. Albert Einstein didn't speak until age four and read until age seven http://read.bi/MBmxhe@SAI #leadership #business
  177. Trends In Venture Capital Over The Last 12 Years http://tcrn.ch/MU9lSQa tale of two markets
  178. Amazon looks to be on track to spend $3B on infrastructure this year. Rackspace market cap is $6B.
  179. #Bigdata big Dilbert it lives in the cloud; it knows what we do! http://dilbert.com/strips/comic/2012-07-29/ …
  180. Walmart and #Facebook meet to discuss Big Data that's worth big bucks. http://www.thehindu.com/sci-tech/technology/article3696951.ece … #bigdata
  181. What Your CEO Is Reading http://on.wsj.com/MUGyiR@WSJ #business
  182. Swimming in blue oceans requires more mental toughness than physical ability. The enemy is self-doubt. #innovation
  183. Preparing your ecommerce IT infrastructure for Holiday season using AWS http://bit.ly/MpMTA0#aws #cloud #thanksgiving
  184. Architecting High Availability across AWS Regions http://bit.ly/LLEGoC#aws #cloud
  185. Amazon ELB timeouts at 60 seconds (kept idle) http://bit.ly/NLUKu5#aws #elb #cloud
  186. Amazon ELB is not designed for sudden load spikes or Flash traffic http://bit.ly/NLUKu5#aws #elb #cloud
  187. Amazon ELB can be pre warmed on request basis . To know more about ELB -> http://bit.ly/NLUKu5#aws #elb #cloud
  188. Part 1: (AZ Series) What is AWS Availability Zone ? http://bit.ly/MPEh6A#aws #cloud
  189. Part 3: (AZ Series) How AWS Building blocks inherently leverage Availability Zones? http://bit.ly/SXDXph#aws #cloud
  190. Part 4: (AZ Series) How Amazon VPC uses Availability zones http://bit.ly/NyE5fs#aws #cloud
  191. Why we build our platform on HDFS: http://bit.ly/Oby88b#Hadoop
  192. Mobile data growth rate to decrease by 2015? Doubtful. http://dlvr.it/1vgXhD 
  193. #Entrepreneur The Next 25 Big Enterprise Startups: If there's one crowd of people who know about hot star... http://bit.ly/PJ8pn5#money
  194. Exploring Amazon Availability Zones http://bit.ly/SSl5aY#AWS #AZ #availability #cloud
  195. Visit 8KMiles booth @ Building and Securing Applications in the Cloud 2012 | Washington , DC http://bit.ly/Ml0fgV#awsevent
  196. Interesting: Cassandra on SSD is faster+cheaper than Cassandra with memcached (on AWS), according to Netflix http://techblog.netflix.com/2012/07/benchmarking-high-performance-io-with.html …
  197. Exploring Amazon Availability Zones http://bit.ly/SSl5aY#AWS #AZ #availability #cloud
  198. @cloud_comp_news Overcoming Outages in AWS : High Availability Architecture Patterns http://bit.ly/LLEGoC#aws #cloud
  199. Understanding HBase and Big Table | Architects Zone | @scoopit http://bit.ly/MVeTtI 
  200. Configuring HBase Memstore: What You Should Know | @scoopit via @sematext http://bit.ly/MVfv2r 
  201. ‘Lucky’ to Launch Pinterest-Like Aggregator for Style Content http://bit.ly/OadiV6 
  202. #cloud computing expected to grow rapidly in health care - American Medical News http://dlvr.it/1tz1FB 
  203. Dissecting Amazon ELB : 18 things you should know http://bit.ly/NLUKu5#AWS #ELB #cloud
  204. “Relational Mapping with MongoDB, Ming, and Python” http://bit.ly/P8dbu3 
  205. Study: almost 60% shoppers said they expect the retail experience to extend across physical & digital channels by 2014: http://ow.ly/c88Ko 
  206. Hyper-V vs. VMware vSphere – Storage http://zite.to/OzRYoZvia @zite
  207. OpenStack faces the terrible twos - GigaOM http://tinyurl.com/c5oflum#Cloud
  208. Big Data explained in 10 movies" via #BigData #bigdata http://bit.ly/MrHNYt 
  209. Data centers aren’t the answer to Reno’s woes http://dlvr.it/1s9stB 
  210. $82 bn will be the worth of indian #smartphones market by 2014#:Cybermedia research http://wp.me/p2x5Lu-jUvia @telecoupdates
  211. How Mobile, Social Will Win the 2012 Olympics [INFOGRAPHIC] http://bit.ly/MjJ7fV 
  212. Big data and the changing economics of privacy http://paidcontent.org/2012/07/11/big-data-and-the-changing-economics-of-privacy/ … #bigdata #privacy #WorthReading
  213. We've been talking a lot about Big Data. Here's how Yahoo's using it to get you to click on ads. http://bit.ly/Mj22Umhttp://bit.ly/MjLZt9 
  214. Why SOA and Cloud Computing are Linked Concepts http://it.toolbox.com/trd/73/2/51782/3/twitter …
  215. Cloud Outages Show CIOs Still at Vendors' Mercy - The CIO Report - WSJ http://on.wsj.com/M01wcj 
  216. Part 8: Architecting High Availability in AWS Series :Multiple cloud providers http://bit.ly/LfhvbA#aws #cloud #HA
  217. Part 7: Architecting High Availability in AWS Series :Multi Region Architecture http://bit.ly/LSkc2I#aws #cloud #HA
  218. James Urquhart, Structure, DevOps, and Google Compute Engine http://p.odca.st/4662518 
  219. Thanks @stuclark , i hope my blog was useful.
  220. Great slides on infrastructure as code and testing of infra code https://speakerdeck.com/u/garethr/p/infrastructure-as-code … #puppet #chef #cfengine
  221. On being CTO at Hortonworks: http://www.pcworld.com/businesscenter/article/258528/10_questions_for_hortonworks_cto_eric_baldeschwieler.html …
  222. RT @gigaom: The enterprise needs a better network to the cloud http://dlvr.it/1nbPn0 
  223. RT @gigaom: The state of Hadoop: still a work in progress (by @derrickharris): http://ow.ly/bQUkg 
  224. Part 6: Architecting High Availability in AWS Series :Using AWS Building blocks http://bit.ly/Njzbg9#aws #cloud #HA #in
  225. Part 5: Architecting High Availability in AWS Series :Multiple Availability zones http://bit.ly/N2F5T1#aws #cloud #HA #in
  226. Part 4: Architecting High Availability in AWS Series :Database Tier http://bit.ly/O6xLug#aws #cloud #HA #in
  227. Overcoming AWS Outages : High Availability Architecture Patterns http://bit.ly/LLEGoC#aws #cloud #outage
  228. hadoop relationship infographic from @datameer : http://gigaom.com/cloud/whos-connected-to-whom-in-hadoop-world-infographic/ … #in
  229. Part 3: Architecting High Availability in AWS Series :DNS/ Load Balancing Tier considerations http://bit.ly/NgqW4i#aws #cloud #HA #in
  230. Part 2: Architecting High Availability in AWS Series :Web App Tier considerations http://bit.ly/LDHwLo#aws #cloud #HA #in
  231. Great article on big data myths http://on.mash.to/M01GCa#bigdata http://bit.ly/LSfNct 
  232. IDC 19% APAC-retailers-are-evaluating-cloud-adoption, #in, #cloud, http://cw.com.hk/news/idc-19-apac-retailers-are-evaluating-cloud-adoption …
  233. Learn now about a new #free monitoring service for cloud and enterprise servers. http://dlvr.it/1mx6qx 
  234. High Availability Architecture Patterns for Overcoming AWS Outages http://bit.ly/LLEGoC#aws #cloud #HA #architecture
  235. High Availability Architecture Patterns for Overcoming AWS Outages http://bit.ly/LLEGoC#aws #cloud #HA #architecture
  236. Netflix open sources Asgard cloud deployment smarts http://zite.to/MlhvG3 
  237. Overcoming Outages in AWS : High Availability Architectures http://bit.ly/LLEGoC#aws #cloud #outage
  238. #MongoNYC video: Real Time Data Analytics; Pre-Aggregation with Counters http://buff.ly/KBKKnP 
  239. Presenting “In-Memory #BigData Processing on the JVM”, Frontier ... http://www.sys-con.com/node/2301794 
  240. Cloud Computing Simplified http://buff.ly/KYYSnv 
  241. "Connecting Redis to ElasticSearch For Custom Scoring With Nativescripts" http://dzone.com/tyAe#Custom #Redis #SolrLucene #NativeScripts
  242. "Welcome to OpenStack - An Introduction" http://dzone.com/dOS8#OpenStack #OtherLanguages #OpenSource
  243. What's the optimal deployment model for big data? A @jameskobielus quick hit: http://on.fb.me/NrCEgY#bigdata
  244. Cloud Technology And Small Business http://blog.webhosting.uk.com/web-hosting/cloud-technology-and-small-business/ …
  245. Cloud: Cloud outage report of 13 providers reveals downtime costs http://cloudaware.net/cloud/7585 
  246. Crowdsourced analytics to alert customers to system events before they happen #bigdata #hadoop http://ow.ly/bLv2S 
  247. We build tools for IT professionals to manage #AWS http://bit.ly/txqbGE .
  248. "#Hadoop 2.0: More than MapReduce" (http://bit.ly/L05KB3 ) JK--Good overview of some key announcements at recent #HadoopSummit
  249. Why Tech-Savvy CMOs Will Be Powerful Figures By 2017 | Fast Company - http://dharme.sh/LyfQtL 
  250. Sears Uses Big Data to Get a Handle on Pricing - The CIO Report http://mobile.blogs.wsj.com/cio/2012/06/14#in
  251. #Equinixing to meet growing Asian #cloud demand http://ow.ly/bF7Ao 
  252. Slides from my presentation at Hadoop Summit http://www.slideshare.net/abetaha/karmasphere-bdabi-blueprint-final …
  253. Read this headline: Zookeeper killed by #wolves in #Sweden. http://on.cnn.com/KUJsPiMy reaction: Wait, Apache Wolves is a new project?
  254. Predictive Analytics: The Perfect Use Case for Cloud Computing - Forbes: Another survey of 1,364... http://onforb.es/LWgX7h#cloud #BI #TCN
  255. #HBase Write Path http://www.cloudera.com/blog/2012/06/hbase-write-path/ …
  256. check out Marten Mickos' slides from his "Clouds are all about APIs" talk http://slidesha.re/M6WScG#in #cloud
  257. how #RightScale architects its own databases for worldwide scale, HA and DR scenarios. Check out the deck: http://ow.ly/bEu4D 
  258. Big Data Clouds the idea of Building Low Resiliency Data Centers http://www.switchscribe.com/?p=155#CIO #cloud #in
  259. How to stuff 4,300,000,000 networks into your datacenter: http://ops.vu/ME8Nxp#in
  260. Ex-Facebookers launch MemSQL to make your database fly http://dlvr.it/1kdnl4#in
  261. Learn how #HBase provides random access low-latency read & writes. @jxcn01 explains the #HBase write path: http://bit.ly/KHOy3h#in
  262. AWS internal load balancing use case http://www.raghuramanb.com/2012/06/aws-ec2-internal-load-balancer.html … #aws #cloud
  263. new compaction strategy for the #Cassandra File System to improve analytic performance http://www.datastax.com/dev/blog/new-in-datastax-enterprise-2-1-improved-compaction-strategy-to-boost-analytical-processing-performance … #hadoop
  264. 10 innovators changing the game for Internet infrastructure http://dlvr.it/1kcC0y#in
  265. MongoDB presentation from @WindyCityDB http://buff.ly/L4jChY#in #nosql #mongodb
  266. Interesting Infographic Mobile Cloud Computing http://bit.ly/KIHB1C#mobile #cloud #in #infographic
  267. Big Data: Yahoo And Hadoop: In It For The Long Term http://dataaware.net/bigdata/3407 
  268. Big Data: Managing Big Data for the Greater Good #info360 http://dataaware.net/bigdata/3409 
  269. #RabbitMQ Gets a "Nice Little" Upgrade http://bit.ly/MXvbpK#vCenter #vFabric #VMware #SpringSource
  270. #Cloud #Blogs 5 Ways Cloud Computing Is Like Open Source: A decade ago, most IT departments denounced open-... http://bit.ly/LLpB8u#TCN
  271. ​Scaling in the Cloud – Part 1: Distributing the load http://goo.gl/fb/xCsti 
  272. PayPal Sees Need for Both RDBMS, Hadoop http://bit.ly/MObLAa#in #hadoop
  273. Is the resistance to cloud-based systems by the IT dept more about protecting the company or protecting their jobs? http://rww.to/OC3K4c 
  274. [NEW] Amazon EMR now supports HBase: http://bit.ly/LXdtlm#emr #awsdocs #hbase #AWS
  275. Hadoop, the elephant in the enterprise http://cnet.co/KEZZXw#in #hadoop
  276. Hadoop at eBay is available on slideshare - http://slidesha.re/MF9zuH#in #hadoop
  277. #hadoopsummit Hadoop at eBay is available on slideshare - http://slidesha.re/MF9zuH 
  278. BT Addresses Big Data and Security Challenges With New Visualization Service #BigData #bigdata http://bit.ly/LkKbvV 
  279. Cloud: With NASA on Amazon Will OpenStack Get Liftoff | Cloudline | Wiredcom http://cloudaware.net/cloud/6787 
  280. RT @techmilind: #hadoopsummit in 2008, 200 attendees. 25% of them were yahoos. Today there are 2200 attendees. 25% of them are ex-yahoos.
  281. How Facebook keeps 100 petabytes of Hadoop data online http://bit.ly/LDZVKU#bigdata #in
  282. "71% of CMOs unprepared for big data" (oops) -- CMO Study Highlights IT and Data Concerns http://midsizeinsider.com/en-us/article/ibm-cmo-study-highlights-it-and-data-con … #bigdata #in
  283. Oracle may launch its own PaaS offering | Cloud Computing - InfoWorld: http://bit.ly/oLcrpF#cloud #paas #in
  284. Big data meets big wind #bigdata http://bit.ly/Lh4CK8#in
  285. How Google and Microsoft are embracing graphs for the next generation of search: http://www.neotechnology.com/2012/06/how-google-and-microsoft-taught-search-to-understand-the-web/ … #nosql #in
  286. Amazon Web Services Blog: Lots of SAP News to Start the Week http://aws.typepad.com/aws/2012/06/sap-start-the-week.html … #in #aws
  287. Symantec to Deliver Disaster Recovery as a Service on Windows Azure - PRWire: Symantec to Del... http://bit.ly/LUzBZH#azure #cloud #TCN
  288. Big Data: Datameer Brings Hadoop To The Desktop http://dataaware.net/bigdata/3285 
  289. Announcing IAM roles for secure access to #AWS service APIs from EC2 instances: fully supported by #AWS http://bit.ly/MoEoqm#in
  290. NASA Saves nearly $1M Per Year By Using AWS: Linda Cureton, the CIO of N... http://bit.ly/Mx30dy#cloud #aws #in
  291. The Most Annoying, Pretentious And Useless Business Jargon http://onforb.es/N4dVBi 
  292. Unlocking Big-Data & Reaping Data Equity http://bit.ly/KnUV06#in #bigdata
  293. How to work with #VMware #vCloud to build your #cloud - helpful presentation by @ccolotti: http://ow.ly/bselr 
  294. Just announced at WWDC: Over 650K apps in Apple app store. 30 billion downloads.
  295. New #IBM JK blogpost: "Next Best Action in Real Time: The True Test of Big Data" (http://bit.ly/LMtzy8 )
  296. If you are not wake up of Nagios minimum 2 time per week, your technology is not sufficient cutting-edge.
  297. 5% of devops are have infrastructure as code. Rest of 95% are have infrastructure as PowerPoint.
  298. How 'systems thinking' is making the cloud transparent http://lnkd.in/yuZC54 
  299. Microsoft Moves to Level the Cloud Platform Playing Field #Forrester Blogs http://bit.ly/KxWsjS#azure #cloud
  300. Internal Load Balancing in Amazon Virtual Private Cloud http://bit.ly/KuKIIC#aws #cloud #in
  301. 9 Open Source Big Data Technologies to Watch http://bit.ly/Kn07RK#in #Bigdata #oss
  302. Howto easily deploy and configure a #MySQL server http://bit.ly/LS5DYp#puppetize #sysadmin
  303. cloud is a state of the business, not just IT http://dlvr.it/1htDvj#cloud #in
  304. In startup is make or break time when CEO is want of install Big Data on laptop.
  305. This the next wave of innovation -> How Google's OpenFlow backbone works http://zite.to/KmkiiJ 
  306. Data Science: How to hire & keep a data scientist - Shady Acres http://dataaware.net/datascience/3273 …
  307. CloudAve: Forecast 2012–Enterprise Cloud Best Practices Panel: http://bit.ly/MzgLMk#cloud #blogs
  308. Why ‘The New Yorker’ Is Now Embracing the Web http://bit.ly/LerauQ 
  309. Free Whitepaper! 7 Habits of Highly Effective Private #Cloud Architects http://bit.ly/Hk3wvr 
  310. Kickstarter: How crowdsourcing went mainstream http://bit.ly/K4R86s#crowdsourcing #in
  311. 10 ways companies are using #Hadoop (for more than ads) http://bit.ly/MYrEK6#GoodReading #BigData
  312. Seven Cloud Computing Trends (Part 2) http://sns.mx/R9kXy3 
  313. #bigdata alert: Teradata a big player in big data - Dayton Daily News http://bit.ly/Ka57Ig 
  314. Microsoft Outlines Massive Azure Additons http://bit.ly/KrH3gE#ITBlogs #Cloud
  315. Presentation: Thanks to HTML5, the Web is FUN Again! - http://dzone.com/wprf- @DZone Big Link by egenesky
  316. Really BigData!! PetaByte of Data every second http://bit.ly/Lak6Rz#in #bigdata
  317. HPs converged cloud to burst to Amazon and Savvis. http://goo.gl/KLPiu 
  318. Facebook flop won't stop cloud computing IPOs | FP Tech Desk | Financial Post http://natpo.st/MuHaqG 
  319. Asking the right questions can ensure cloud computing data security http://bit.ly/Mvr4Ne 
  320. The cloud will cost you, but you’ll be happy to pay http://dlvr.it/1hgHW2#in #cloud
  321. Scalability is not a "feature" tacked on at the end development.
  322. Citrix Buys Bytemobile for Cloud-Optimized Mobile Networks http://bit.ly/KOvN1N#cloud #cloudComputing
  323. Bangalore-Based Bank Chooses IBM Cloud for Core Banking Solutions - Press Trust: This solution... http://bit.ly/LL3nCi#Cloud #Analytics
  324. @WindowsAzure #DevCamp #Chennai – 21 June 2012 #Cloud http://bit.ly/NT7ayX 
  325. CloudAve: Microsoft Does It Right And Oracle Claims They Are Right: http://bit.ly/NWRkDJ#cloud #blogs
  326. Amazon Web Services Blog » Amazon CloudFront - More PoPs and More Growth http://bit.ly/MpBeza#ITBlogs #Cloud
  327. #Azure #Cloud Microsoft Azure Cloud Service Updated Today With All-SSD Storage ...: Leading up to a press confer... http://bit.ly/MqQCPD 
  328. What is innovation? http://bit.ly/Kl3aTV- my guest blog at Technology Academy Finland
  329. Now scale automatically and reduce cost intelligently as well. #AutoScaling + Spot Instances: http://goo.gl/1xfx0#aws #in
  330. Inside Facebook's Open Graph http://j.mp/LiIj70@al3xandru #in
  331. Can anyone catch Amazon's cloud http://goo.gl/IIZA6, margin & competitive analysis. #in
  332. Every thing is 10x in cloud. Especially I/O latency.
  333. 1 million monkey hit random key for 1 million year can able generate Hamlet but not internal Wiki documentation.
  334. @DEVOPS_BORAT : Oracle Cloud is combine best of both world: cheap of Oracle Enterprise DB and simple of J2EE.”
  335. Big data meets big fashion: @kheussner takes a look at @custora: http://ow.ly/bnZId#in #bigdata
  336. Twitter open sources Zipkin for distributed system tracing: http://bit.ly/KADDww#in
  337. "Disk is the new tape" an overview of SQLFire in-memory database http://rww.to/Ly8xze#in
  338. How Facebook plans to deconstruct the data center :http://bit.ly/NOg4Ob#in
  339. Is OpenStack the new Linux? | Cloud Computing - InfoWorld http://bit.ly/MKsaeE#in #cloud #openstack
  340. Learn more about graph databases…new book - Neo4j in Action, available via http://www.neotechnology.com/about/graph-database-store/ … #in
  341. BBC News - IPv6: Trillions of new net addresses now possible http://bit.ly/NIevkU#in
  342. . @larryellison - 4 yrs back: cloud is non-sense. 2 yrs back: cloud-in-a-box. today: oracle's 100+ #cloud apps as the 1st tweet. #reality
  343. The brains behind Hive launch on-demand Hadoop service http://dlvr.it/1h17pw#bigdata #hadoop #in
  344. Cloud-based Mobile Device Management (MDM) Getting Hot http://bit.ly/KjJuSf#Cloud #in
  345. Chevron explores the use of open source #Hadoop to reduce costs. - The CIO Report - WSJ http://ow.ly/bpOTj#in #bigdata
  346. Data Modeling: Sample E-Commerce System with NoSQL-MongoDB: http://bit.ly/Lv6c8i#in
  347. My answer to: Why doesn't Amazon EC2 charge based on actual CPU usage rather than instance hours? http://qr.ae/RQSrIon @Quora
  348. Facebook Will Disappear by 2020, Says Analyst - http://on.mash.to/MuEsHH 
  349. #DataScientist is very geeky and a pedantic term for #BigData. #DataArtisans is probably the right term!
  350. crowdsourced Google Map Plots 'Mad Men' Hot Spots - http://on.mash.to/MtJMLy 

Need Consulting help ?

Name

Email *

Message *

DISCLAIMER
All posts, comments, views expressed in this blog are my own and does not represent the positions or views of my past, present or future employers. The intention of this blog is to share my experience and views. Content is subject to change without any notice. While I would do my best to quote the original author or copyright owners wherever I reference them, if you find any of the content / images violating copyright, please let me know and I will act upon it immediately. Lastly, I encourage you to share the content of this blog in general with other online communities for non-commercial and educational purposes.

Followers