Scalability is the ability of a system, network, or process, to handle growing amount of work in a capable manner or its ability to be enlarged to accommodate that growth.

learn more… | top users | synonyms

0
votes
0answers
13 views

JMeter: better performance with Java impl of HTTP Sampler than with HTTPClient impl

I have been using JMeter for a few years now and have been using the Apache HTTPClient sampler implementation as it seems to be the recommended implementation, and the Apache HTTPClient is a mature ...
0
votes
0answers
7 views

Weak vs Strong Scaling Speedup and Efficiency

I have a theoretical question. As you know, for the analysis of scaling, the speedup is defined as S(N) = T(1) / T(N) where T(i) is the runtime with i processors. The efficiency is then defined as ...
0
votes
0answers
20 views

time series logging/statistics - scalable solution

It`s quite usual to query database or log files for uptime information or for number of requests per given time interval. As you gather more and more data SQL queries or log crawling becomes slower ...
0
votes
0answers
12 views

Resolving concurrent updates in Innodb

Problem: I am trying to track clicks on images in my website with a table `click_counts(image_id int(10) NOT NULL, image_clicks int(10) NOT NULL DEFAULT 0, PRIMARY KEY (image_id))Engine=InnoDB; ...
0
votes
0answers
7 views

SQL DB Redesign for Retail POS - High volume transactions & Batch Processing

We are in the midst of getting out POS backend DB redesigned to support growth. Currently, our POS transactions are passed through to DB via a Web Service. I understand that hardware scaling up is ...
0
votes
0answers
31 views

Is there any public benchmark of web frameworks by scalability?

For example, one could test how many simultaneous users a "Hello World" application from different frameworks can stand. This is the only benchmark I found and it does not test for scalability. Is ...
1
vote
3answers
35 views

How is PHP so high on this benchmark if it's said not to be as scalable as other frameworks?

http://www.techempower.com/benchmarks/#section=data-r5 This benchmark shows PHP consistently on the top 5 of several measurements. This contradicts the consensus that it does not scale as well as ...
0
votes
2answers
31 views

Single EAR? Or multiple EARs?

We are in the process of developing a JavaEE 6-based application to be deployed on JBoss EAP 6.1. The app has 2 primary presentation mechanisms: A web admin console, and a RESTful service API. On ...
0
votes
1answer
21 views

Counts over a large set of records in DB

I have a table [ID,ITEM_NAME,ITEM_PRICE,ITEM_STATUS,ITEM_TYPE,ITEM_OWNER,ITEM_DATE] The application can query the table with any number of search conditions like with item date and/or item owner etc. ...
-2
votes
1answer
54 views

Is it reasonable to develop large-scale projects in ASP.NET MVC 4?

Is it reasonable to develop large-scale projects (social networks) that in perspective will process millions of visits per day in ASP.NET MVC. I guess in that case performance of the site will be ...
1
vote
1answer
19 views

Rails application separated in 2 layers (data reception / data reading)

I have an application with 2 different layers: first layer: ruby tcp server receiving a lot of data This one is a very light application running EvenMachine, it only receives the data, make some ...
3
votes
1answer
66 views

What specifially makes node.js more scalable than apache?

To be honest I've not understood it completely yet - and I even do understand how node.js works, as a single thread using the event model. I just don't get how this is better than Apache, and how it ...
-1
votes
0answers
10 views

API/web server for managing users and sessions [closed]

I hope what I'm about to say makes sense to you as it does to me. I am in the process of developing an app that needs to communicate with an online server. The server should be able to handle ...
0
votes
1answer
40 views

Scaling GCM Push. How often can you perform GCM Push?

Everybody tells me that polling server for new data is stupid if the server is yours and you should implement push with GCM instead. Well, I agree and have done so but, I was wondering, how often can ...
1
vote
1answer
44 views

Ideas for scaling chat in AWS?

I'm trying to come up with the best solution for scaling a chat service in AWS. I've come up with a couple potential solutions: Redis Pub/Sub - When a user establishes a connection to a server that ...
2
votes
1answer
108 views

How to troubleshoot slow performance on URL with Rails + Mongo

We could use advice on a scaling/ops issue. We have a simple mobile app that runs on Rails 3.2.12 and uses MongoMapper instead of ActiveRecord. There is one database call that sporadically performs ...
0
votes
0answers
7 views

Reading facebook feed for different users at same time

I am working on a android application in which i need to read a user feed from facebook filter it depending on user specified parameters and show it to user.. filters are like (only photo updates, ...
0
votes
0answers
88 views

akka actor model vs java usage in following scenario

I want to know the applicability of the Akka Actor model. I know it is useful in the case a huge number of Actor instances are created and destroyed. e.g. a call server, where every incoming call ...
3
votes
2answers
61 views

What is the best way to manage threads/memory usage

I'm working on application scalability, and I'm wondering how to monitor memory management (in particular "leaks"), and ensuring that threads are created and destroyed properly. Are there tools within ...
0
votes
0answers
110 views

monetdb in the cloud, scalability, amazon s3

i have recently discovered MonetDB and i am evaluating it for an internal project, so probably my questions are from a really newbie point of view. Maybe someone could point me to a site and/or ...
1
vote
1answer
27 views

Suggestions for extremely aggressive HTTP caching for REST resources

I have a setup where I would like to have extremely aggressive HTTP caching on my internal proxy. Basically, what I want to achieve is a simplistic caching strategy like this: any GET request that ...
1
vote
2answers
30 views

Search a many to many relationship with a wild card, performance issues

I am building a database for an app and I am testing performance issues on a larger data set. I generated about 250,000 location records. Each location can be assigned to many categories and a ...
0
votes
1answer
29 views

Load and Stress Test for a MongoDB instance deployed on Amazon EC2 [closed]

I have a mongoDB instance uploaded on amazon EC2. I want to argue about the scalability of the instance. Can you suggest me some tools to automate the testing? Moreover, can you suggest some test ...
0
votes
1answer
56 views

Building scalable applications VS just Cloud ready applications

Recently, I got into a discussion with an Architect who is known to be a seasoned Architect. The discussion was around an ideal Architecture and design for a multi-tenant Web Based Application that ...
0
votes
1answer
20 views

Reporting/visualizing scalability results from MPI code… which would be the best way?

As part of my research, I have computed the parallel solution to different banded systems using ScaLAPACK. I am interested in reporting the achieved speedup as a function of both the rank for the ...
1
vote
2answers
75 views

Profiling and output caching in ASP.NET MVC

So I was recently hired by a big department of a Fortune 50 company, straight out of college. I'll be supporting a brand new ASP.NET MVC app - over a million lines of code written by contractors over ...
0
votes
1answer
92 views

Scalability of Solr and ElasticSearch: fields of 5000 values

I need to send records to a search engine (Solr or ElasticSearch) to index. In my design, a field can have up to 5000 values and for some records, ALL these 5000 values (OR or AND relationship) of ...
1
vote
2answers
42 views

Scaling Puppet - when is too much for WEBrick?

I've found the following at Docs: Scaling Puppet: Are you using the default webserver? WEBrick, the default web server used to enable Puppet’s web services connectivity, is essentially a ...
1
vote
1answer
66 views

Building an scalable Spring MVC application [closed]

I'm trying to build a web application using Spring MVC. I would be using it to server GUI as well as JSON content. Has anybody deployed such a solution and can vouch for it that it works? Any ...
2
votes
2answers
114 views

High frequency insert in MySQL

I have a problem with high frequency insert in MySQL. I've searched a lot on Internet but haven't found a good answer to my problem. I need to log a lot of event at a very high frequency (~3000 ...
1
vote
0answers
38 views

How does elastic cloud hosts such as Amazon work, technically?

What should a programmer do when designing an application in order for it to be scalable in elastic cloud environments such as Amazon? Specifically, if a program scales by spawning more processes, is ...
1
vote
1answer
49 views

How exactly scalability differs from load or performance testing?

I hope this question will fit here. I have been doing a research regarding the aforementioned topic and cannot see the difference. Many sources simply put it that "scalability testing makes sure the ...
0
votes
0answers
34 views

Large Number of Open Connections on Client / Client Side Long Polling

There is plenty of information on building server side HTTP applications with large number of open connections to support long polls. But how do I build a client that scalably long polls a really ...
0
votes
0answers
18 views

Selecting a correct data layer for an asynchronous online game

I need some help with choosing the correct data layer for my game which is an asynchronous game where the player's moves are stored on the server and later loaded for other players to see. The game ...
0
votes
0answers
25 views

Where should computations take place for complex algorithms

Background: I'm a software engineering student and I was checking out several algorithms for recommendation systems. One of these algorithms, a collaborative filtering has a lot of loops int it, it ...
1
vote
2answers
51 views

Is it good idea to store operational data in memcached?

I write data processor on cpp, which should process a lot of requests and do a lot of calculations, requests are connected with each other. Now I think about easy horizontal scalability. Is it a good ...
-6
votes
2answers
62 views

Beginner Scalability [closed]

In terms of scalability would be wiser to make an object from the concrete class or the interface? For example instead of: LinkedStack<Integer> list = new LinkedStack<Integer>(); ...
0
votes
1answer
226 views

Threads , [WebSocket & nodejs] vs [asp.net & signalR] clarification?

In a situation where a --- Client connects to an asp.net (which uses the signalR FW) and upgrades the connection to a webSocket connection(tcp) or Client connects to a Node.js server (and also ...
1
vote
2answers
73 views

IIS does not scale, but cpu does not max out either, why is it slowing down

I have an application where clients connect to IIS with websockets. IIS then create a local proxy for IPC to connect to executable. So IIS is sort of a middle man. As more connection come in the ...
-1
votes
2answers
113 views

why are noSQL databases more scalable than SQL? [closed]

Recently I read a lot about noSQL DBMSs. I understand CAP theorem, ACID rules, BASE rules and the basic theory. But didn't find any resources on why is noSQL scalable more easily than RDBMS (e.g. in ...
0
votes
0answers
86 views

Multi Master Node.JS Scalability

I've been doing some Google for quite a lot of time and did not find a method of implementing this need: A stateless socket.io stack (it will load balanced by a real load balancer which will not ...
2
votes
1answer
54 views

Solutions for transition from small scale to mid-scale MySQL database

I'm studying up on the future of the database I maintain. Right now we have one database server running MySQL using InnoDB and MyISAM tables. I'm watching the metrics closely and I can see that this ...
1
vote
2answers
49 views

Doctrine 2 How to set an entity table name at run time (Zend 2)

I'm building a product with Zend 2 and Doctrine 2 and it requires that I have a separate table for each user to contain data unique to them. I've made an entity that defines what that table looks like ...
0
votes
2answers
120 views

AWS architecture when multi-regions

I've been introduced recently to AWS and I really loved it. However, I'm asking myself some questions (that may be stupid) about architecturing for multi-regions. Let's say an application is used by ...
0
votes
0answers
42 views

asynchronous web service request in same web application

I am building a site using web service in c# I need a sharable cache so one of the solutions I have found to this problem is to simple build the web services in one application. I am curious if I were ...
0
votes
1answer
232 views

Akka scalability and performance benchmark testcases

I have been looking for a testcase which can showcase the "SCALABILITY" of Scala/Akka. i referred to the akka-actor-test/akka.performance.trading test case, but it seems like a Unit Test case rather ...
2
votes
1answer
27 views

scalability on global data types

Does anyone know how scalable the global data types are? I'm trying to make registered user list and wonder if it can support a large number of users (e.g. 100k). The Composite admin UI certainly does ...
0
votes
1answer
85 views

Video Chat: Scalability Issue

We use Red5 media server as a back-end for our Flash video chat application. Recently we had a significant increase in user traffic, which brought the video chat down. While it is fairly ...
0
votes
1answer
79 views

Ad network infrastructure opinion? MySQL? Memcached? MongoDB?

We are planning to create an advertisement network. As any normal online advertisement network, we would provide ad serving, reporting (stats) and a little browsing site for publishers/advertisers. ...
2
votes
1answer
92 views

How Does NoSQL Scale Out Exactly?

I use SQL Server 2012. I have a database sharded across physical tiers by User ID. In my app User is an aggregate root (i.e., nothing about Users comes from or goes into my repository without the ...

1 2 3 4 5 27