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
1answer
19 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
19 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
39 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
18 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
59 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
32 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
41 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
103 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
81 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
60 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
100 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
27 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
55 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
17 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
72 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
88 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
40 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
63 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
107 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
37 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
47 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
32 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
15 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
24 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
221 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
69 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
112 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
81 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
52 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
43 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
113 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
218 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
81 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
73 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
91 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 ...
0
votes
2answers
130 views

Load testing from a user point of view

I have been asked to load test a web page here at the company I am currently working for. So far, so good. But..... The project manager would like to have tests running as real users generating ...
0
votes
2answers
44 views

How to test the real-world performance of a social application without owning thousands of computers?

I'm managing a prototypal design for an open-world social game which is supposed to replace a server which is having scaling issues. How can I test it's behavior in real-world situations - that is, ...
1
vote
1answer
31 views

How to monitor different metrics for scaling an application on Amazon

Is that possible to decide about scalability based upon multiple metrics. For example, I wanna check both the "CPU Utilization" and "number of requests" together and then decide whether I need to ...
0
votes
1answer
128 views

MySQL vs Redis for storing follower/following users

I'm trying to find the best candidate for storing the follower/following user data, I was thinking initially to store it in Redis in a set where user -> set of user ids but then I thought about ...
0
votes
1answer
70 views

what are +/- for socket.io vs ajax for uploading files?

I heared that the websockets (e.g. socket.io) are very fast, but they require direct connection for each client. Is it so sutable for uploading files for video hostings with many clients/ frequently ...
0
votes
0answers
108 views

How many simultaneous users can a Meteor server handle? [closed]

I know for 1.0 Meteor should be able to handle an arbitrarily large number of simultaneous users: https://trello.com/board/meteor-roadmap/508721606e02bb9d570016ae. Right now though, in its current ...
0
votes
0answers
2k views

Node.Js vs (Scala and Akka) [closed]

For scalability, asynchronous, parallel processing and event driven capabilities for web apps. Someone knows a serious study or benchmark comparing this two technologies related a items like memory ...

1 2 3 4 5 26