active questions tagged scalability - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T13:55:35Z http://stackoverflow.com/feeds/tag/scalability http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1921710/file-share-system-architecture-asking-for-advice 0 file share system architecture asking for advice [closed] George2 2009-12-17T13:12:26Z 2009-12-17T16:15:40Z <p>Hello everyone,</p> <p>I am using Windows platform to setup a web based file share system. In more details, individual users could upload and share documents from web interface (content may be big document, like video files), similar scenario to Google Docs.</p> <p>My current issue is how to make storage scalable? In more details, I have 4-5 front end web servers (to make a web server farm) and I want to know how to setup storage system to store uploaded files.</p> <p>I want the storage to be automatically grow -- i.e. each web server seems to use unlimited disk space (no need to handle disk full issue); another issue is I do not know how to store files efficiently and reliably (e.g. if each web server has its individual separate storage, suppose abc.wmv is stored in web server A's storage, then if web server A downs, no one can access abc.wmv). Another trouble I can think of is, if I increase the # of front end web server, for the new web server, how to decide which uploaded files should be stored (shall I migrate some files from other web servers to the new web server)?</p> <p>I am consider to use SAN, but I am not sure whether SAN could resolve all of the issues. I want to learn some best practices to handle this issue.</p> <p>thanks in advance, George</p> http://stackoverflow.com/questions/1912604/loading-large-xml-in-flash 0 Loading large xml in flash Amitd 2009-12-16T05:58:04Z 2009-12-16T14:35:11Z <p>hi guys, i have a flash based client which loads xml(s) periodically from a server (IIS).<br> The xml is generated by an ASP.net application and webservices. All goes well until the size of xml is small but over period of time as number of clients increase and their activity increases,the size of the xml increases rapidly and it goes well beyond 5-6 MB or more . This consumes bandwidth and also slows down flash client and causes abnormal behaviour.Also the xml is saved in SQL2005 server table. It is per user- group based xml.so if number of users in one group increases , the xml starts increasing in size.hence each flash client is downloading about 3-4mb of xml data per update which is slowing the client side even more.</p> <p>(Also currently the xml file is first handled by javascript and then passed to flash using external interface.)</p> <p>Also we face issues while scaling the application.</p> <p>just wanted to ask how to streamline access to these xml(s) [since xmls are group based] so that optimum network bandwidth and performance are obtained and the application can be stably scaled. </p> <p>thx amit</p> http://stackoverflow.com/questions/1909307/what-does-on-mean 6 what does O(N) mean [closed] Fire Crow 2009-12-15T18:12:29Z 2009-12-16T04:53:43Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/133008/what-is-big-o-notation-do-you-use-it">What is Big O notation? Do you use it?</a> </p> </blockquote> <p>Hi all,</p> <p>fairly basic scalability notation question.</p> <p>I recently recieved a comment on a post that my python ordered-list implimentation "but beware that your 'ordered set' implementation is O(N) for insertions"</p> <p>Which is great to know, but I'm not sure what this means.</p> <p>I've seen notation such as n(o) o(N), N(o-1) or N(o*o)</p> <p>what does the above notation refer to?</p> http://stackoverflow.com/questions/1909298/which-php-framework-to-choose-for-a-big-project-help-me-to-choose 0 Which PHP framework to choose for a big project? Help me to choose. [closed] Andersson83 2009-12-15T18:11:43Z 2009-12-15T18:53:27Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/2648/what-php-framework-would-you-choose-for-a-new-application-and-why">What PHP framework would you choose for a new application and why?</a> </p> </blockquote> <p>Hello!</p> <p>I'm going to create a serious web project. Until this time, I've been developing projects with Drupal, but I want to switch to a PHP framework. Which framework can you suggest and why? Scalability and performance are must. I was playing with: CodeIgniter, CakePHP, Kohana, Zend, Yii, but before I decide in which framework to invest my efforts I want to ask you. Please help.</p> http://stackoverflow.com/questions/1905688/how-would-a-nosql-database-be-designed-for-consumer-apps-e-g-social-bookmarki 1 How would a "NOSQL" database be designed for consumer apps (e.g. social bookmarking) 828 2009-12-15T07:11:30Z 2009-12-15T07:11:30Z <p>I've been reading up on a lot of posts about non-relational databases, the whole NOSQL movement, and there's a lot of fresh new activity around it. It seems like a very interesting approach to building highly scalable web applications but unfortunately (but also a good thing at this nascent stage) there isn't quite a clear leader/standard at the moment.</p> <p>My background is in the LAMP stack (with MySQL as the dB) and I wanted to understand what differences and limitations there would be - but with using the example of real life web applications out there. There's a ton of good articles about the theory of pros/cons of RDBMS vs non-RDBMS, but I haven't found anything that walks through an example of how an existing web app (for example social bookmarking) would be built different to take advantage of the new dB structure and what features one would have to leave out if any - where the NOSQL dB could be key-value or document-centric or graphs.</p> <p><strong>Would anyone be willing to take a stab at a high-level comparison of a NOSQL vs RDBMS model/architecture of a real-world web app (such as social bookmarking or any other example that might explain the concepts well)?</strong></p> <p><em>For reference to others, here are a few of the articles I have come across:</em></p> <ul> <li><a href="http://stackoverflow.com/questions/1189911/non-relational-database-design">http://stackoverflow.com/questions/1189911/non-relational-database-design</a></li> <li><a href="http://nosql-databases.org/" rel="nofollow">http://nosql-databases.org/</a></li> <li><a href="http://linux-mag.com/cache/7579/1.html" rel="nofollow">http://linux-mag.com/cache/7579/1.html</a></li> <li><a href="http://blog.boxedice.com/2009/07/25/choosing-a-non-relational-database-why-we-migrated-from-mysql-to-mongodb/" rel="nofollow">http://blog.boxedice.com/2009/07/25/choosing-a-non-relational-database-why-we-migrated-from-mysql-to-mongodb/</a></li> <li><a href="http://bret.appspot.com/entry/how-friendfeed-uses-mysql" rel="nofollow">http://bret.appspot.com/entry/how-friendfeed-uses-mysql</a></li> <li><a href="http://metabrew.com/article/anti-rdbms-a-list-of-distributed-key-value-stores/" rel="nofollow">http://metabrew.com/article/anti-rdbms-a-list-of-distributed-key-value-stores/</a></li> <li><a href="http://rackspacecloud.com/blog/2009/11/09/nosql-ecosystem/" rel="nofollow">http://rackspacecloud.com/blog/2009/11/09/nosql-ecosystem/</a></li> <li><a href="http://horicky.blogspot.com/2009/11/nosql-patterns.html" rel="nofollow">http://horicky.blogspot.com/2009/11/nosql-patterns.html</a></li> </ul> http://stackoverflow.com/questions/1886650/are-there-any-stable-and-production-quality-nosql-datastores 1 Are there any stable and production quality nosql datastores ? Ritesh M Nayak 2009-12-11T08:38:13Z 2009-12-12T13:47:39Z <p>Are there are production quality nosql stores that I can use on a production system. I have looked at cassandra, tokyodb, couchdb etc but none of them seem to be ready for deployments on production like environments. I am talking thousands of requests per minute and lots of reads/writes/updates. My only concern is speed and service times. Does anybody know of production systems that use nosql stores effectively ? Does anybody know of a nosql store that is backed by a big enterprise like Google/Yahoo/ IBM ?</p> http://stackoverflow.com/questions/1892224/distributing-tree-structures 1 Distributing tree structures dotsid 2009-12-12T04:00:17Z 2009-12-12T05:27:47Z <p>For example, I have a large set of bulletins which are organized in a tree (category tree). All categories inclusive. So if I watching items in category A, I'm also see all items in subcategories of this category A. And if I'm watching at root I'm see all the bulletins.</p> <p>I want to achieve horizontal scalability here, because of large size of set.</p> <p>The only way I know is so called scatter-gather. Scatter-gather means that I'm sending query on all nodes (or subset of all nodes if know where data lays exactly) and after response of data nodes I'm gathering result. The problem with this method is that I can not do paging on data nodes. And this leads to large traffic on network, because of sorting and paging must be done on coordinator node (node which initiates scatter-gather).</p> <p>Is there any other possible ways exists for distributing tree structures over set of servers for achieving horizontal scalability?</p> http://stackoverflow.com/questions/1398434/java-or-mono-for-a-new-project 0 Java or mono for a new project sirmak 2009-09-09T08:59:14Z 2009-12-11T23:39:51Z <p>Hi,</p> <p>I need your advice about framework selection (Java vs Mono) for a new large scale web project which will be developed for linux hardware. </p> <p>Which platform do you prefer and why ?</p> <p>Best Regards, Sirmak</p> http://stackoverflow.com/questions/1616280/what-is-the-best-clustering-or-distributed-system-solution-for-java-applications 7 What is the best Clustering or Distributed System solution for Java applications Dougnukem 2009-10-23T22:37:23Z 2009-12-11T19:39:17Z <p>What are the best approaches to clustering/distributing a Java server application ? I'm looking for an approach that allows you to scale horizontally by adding more application servers, and more database servers.</p> <ul> <li>What technologies (software engineering techniques or specific technologies) would you suggest to approach this type of problem?</li> <li>What techniques do you use to design a persistence layer to scale to many readers/writers Scale application transactions and scale access to shared data (best approach is to eliminate shared data; what techniques can you apply to eliminate shared data).</li> <li>Different approaches seem to be needed depending on whether your transactions are read or write heavy, but I feel like if you can optimize a "write" heavy application that would also be efficient for "read"</li> </ul> <p>The "best" solution would allow you to write a Java application for a single node and hopefully "hide" most of the details of accessing/locking shared data. </p> <p>In a distributed environment the most difficult issue always comes down to having multiple transactions accessing shared data. There seems like there's 2 common approaches to concurrent transactions.</p> <ol> <li><a href="http://en.wikipedia.org/wiki/Lock%5F%28computer%5Fscience%29" rel="nofollow">Explicit locks</a> (which is extremely error prone and slow to coordinate across multiple nodes in a distributed system)</li> <li><a href="http://en.wikipedia.org/wiki/Software%5Ftransactional%5Fmemory" rel="nofollow">Software transactional memory</a> (STM) AKA optimistic concurrency where a transaction is rolled back during a commit if it discovers that shared state has changed (and the transaction can later be retried). Which approach scales better and what are the trade-offs in a distributed system?</li> </ol> <p>I've been researching scaling solutions (and in general applications that provide an example of how to scale) such as:</p> <ol> <li><a href="http://terracotta.org/" rel="nofollow">Terracotta</a> - provides "transparent" scaling by extending the Java memory model to include distributed shared memory using Java's concurrency locking mechanism (synchronized, ReentrantReadWriteLocks).</li> <li><a href="http://googleappengine.blogspot.com/2009/04/seriously-this-time-new-language-on-app.html" rel="nofollow">Google App Engine Java</a> - Allows you to write Java (or python) applications that will be distributed amongst "cloud" servers where you distribute what server handles a transaction and you use BigTable to store your persistent data (not sure how you transactions that access shared data or handle lock contentions to be able to scale effectively)</li> <li><a href="http://projectdarkstar.com/" rel="nofollow">Darkstar MMO Server</a> - Darkstar is Sun's open source MMO (massively multiplayer online) game server they scale transactions in a thread transactional manner allowing a given transaction to only run for a certain amount and committing and if it takes to long it will rollback (kinda like software transactional memory). They've been doing research into <a href="http://projectdarkstar.com/technology-roadmap-may-09.html" rel="nofollow">supporting a multi-node server setup</a> for scaling.</li> <li><a href="http://docs.huihoo.com/hibernate/hibernate-reference-2.1.7/transactions.html" rel="nofollow">Hibernate's optimistic locking</a> - if you are using Hibernate you can use their optimistic concurrency support to support <a href="http://en.wikipedia.org/wiki/Software%5Ftransactional%5Fmemory" rel="nofollow">software transactional memory</a> type behavior</li> <li><a href="http://couchdb.apache.org/" rel="nofollow">Apache CouchDB</a> is supposed to "scale" to many reader/writer DB's in a mesh configuration naturally. (is there a good example of how you manage locking data or ensuring transaction isolation?):</li> <li><a href="http://code.google.com/appengine/docs/java/memcache/usingjcache.html" rel="nofollow">JCache</a> - Scaling "read" heavy apps by caching results to common queries you can use in Google appengine to access memcached and to cache other frequently read data.</li> </ol> <p>Terracotta seems to be the most complete solution in that you can "easily" modify an existing server application to support scaling (after defining @Root objects and @AutoLockRead/Write methods). The trouble is to really get the most performance out of a distributed application, optimization for distributed systems isn't really an after thought you kinda have to design it with the knowledge that object access could potentially be blocked by network I/O. </p> <p>To scale properly it seems like it always comes down to partitioning data and load balancing transactions such that a given "execution unit" (cpu core -> thread -> distributed application node -> DB master node) </p> <p>It seems like though to make any app scale properly by clustering you need to be able to partition your transactions in terms of their data access reads/writes. What solutions have people come up with to distribute their applications data (Oracle, Google BigTable, MySQL, Data warehousing), and generally how do you manage partitioning data (many write masters, with many more read DBs etc).</p> <p>In terms of scaling your data persistence layer what type of configuration scales out the best in terms of partitioning your data to many readers/many writers (generally I'd partition my data based on a given user (or whatever core entity that generally is your "root" object entity) being owned by a single master DB)</p> http://stackoverflow.com/questions/1588617/php-vs-python-scalability 0 php vs python. scalability Quamis 2009-10-19T13:15:32Z 2009-12-11T14:42:26Z <p>Why is PHP considered more scalable than python?</p> <p>I've heard may times that one of the reasons PHP is "better" than python is that PHP is more easily scalable, and that Yahoo proves that(assumig Yahoo still uses PHP).</p> <p>Whats the difference between PHP and Python when it comes to scalability?</p> <p>-- edit --</p> <p>well, i have no evidence, the question arose after a discussion with a friend.</p> <p>-- edit2 -- here: <a href="http://www.oreillynet.com/ruby/blog/2007/09/7%5Freasons%5Fi%5Fswitched%5Fback%5Fto%5Fp%5F1.html" rel="nofollow">http://www.oreillynet.com/ruby/blog/2007/09/7%5Freasons%5Fi%5Fswitched%5Fback%5Fto%5Fp%5F1.html</a> , even if this dosent say anything about scaling..</p> http://stackoverflow.com/questions/1711835/create-a-database-for-scalability 2 Create a database for scalability acidzombie24 2009-11-10T22:55:41Z 2009-12-10T15:27:54Z <p>How do i create a database for scalability? I am in the middle of <a href="http://www.slideshare.net/vishnu/livejournals-backend-a-history-of-scaling" rel="nofollow">http://www.slideshare.net/vishnu/livejournals-backend-a-history-of-scaling</a> which i cant read ATM and need to leave. But i would like to know more about creating a database that scales well. Somethings that it mentioned and occur in my mind are</p> <ul> <li>Separate handles for reads and writes?</li> <li>What happens when one server is busy (IO or CPU bound) and i need two servers to write to?</li> <li>Do i create multiple database? have a clusterId on users?</li> <li>Will it be a problem when moving users to one cluster to another?</li> <li>Might i code this so user ABC in DB A on cluster A and DEF in DB B in cluster B have the same PRIMARY KEY?</li> <li>When i move the above to cluster C? Does this mean i need to write much code to move them to another cluster/database? </li> <li>To make the above not an issue would i NOT use PRIMARY KEY and set the ID by hand by reading the other DBs on other clusters?</li> </ul> <p>etc</p> http://stackoverflow.com/questions/1831520/relation-between-language-and-scalability 2 Relation between language and scalability idazuwaika 2009-12-02T08:45:14Z 2009-12-10T14:17:57Z <p>I came across the following statement in Trapexit, an Erlang community website:</p> <blockquote> <p>Erlang is a programming language used to build massively scalable soft real-time systems with requirements on high availability.</p> </blockquote> <p>Also I recall reading somewhere that Twitter switched from Ruby to Scala to address scalability problem.</p> <p><strong>Hence, I wonder what is the relation between a programming language and scalability?</strong></p> <p>I would think that scalability depends only on the system design, exception handling etc. Is it because of the way a language is implemented, the libraries, or some other reasons?</p> <p>Hope for enlightenment. Thanks.</p> http://stackoverflow.com/questions/717250/best-way-to-offload-heavy-processing-like-image-resizing-out-of-php-request 5 Best way to offload heavy processing (like image resizing) out of PHP request deadbeef 2009-04-04T15:21:29Z 2009-12-10T09:16:27Z <p>I'm working on a PHP web interface that will receive huge traffic. Some insert/update requests will contain images that will have to be resized to some common sizes to speed up their further retrieval.</p> <p>One way to do it is probably to set up some asynchronous queue on the server. Eg. set up a table in a db with a tasks queue that would be populated by PHP requests and let some other process on the server watch the table and process any waiting tasks. How would you do that? What would be the proper environment for that long running process? Java, or maybe something lighter would do?</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites 0 Logging requests on high traffic websites Waleed Eissa 2009-01-26T22:02:06Z 2009-12-09T17:33:52Z <p>I wonder how high traffic websites handle traffic logging, for example a website like myspace.com receives a lot of hits, I can imagine it would take a lot of space to log all those requests, so, do they log every single request or how do they handle this?</p> http://stackoverflow.com/questions/1867162/scalability-of-oracle-forms 2 Scalability of Oracle Forms deissenb 2009-12-08T14:02:33Z 2009-12-09T09:11:32Z <p>What is your experience regarding the scalability of Oracle Forms? What's the maximum number of application users you would use Oracle Forms for: 100, 1000, 10000, 50000?</p> <p>I know that this question lacks many detail information for a well-founded answer. However, I am interested in the gut feeling of seasoned Forms developers.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1868427/scaling-rails-with-cache-on-write 1 Scaling Rails with Cache-on-write jcnnghm 2009-12-08T17:11:56Z 2009-12-08T17:18:39Z <p>I currently have a rails app that uses the traditional caching. <code>cache do</code> blocks are used to cache slow-rendering partials. This works great for the most part, except for a few pages which take too long to render on the first read.</p> <p>I'd like to move the rendering of these partials to the write-side from the read-side, by rendering in either the model or in sweepers when the underlying data changes. Preferably, this would be in the sweepers that already invalidate the cache keys. Is this a good approach? Is there a "right" way to do this?</p> http://stackoverflow.com/questions/1835470/one-id-for-every-database-column-how-to-do 2 One ID for every database column, how to do? Vittorio Vittori 2009-12-02T20:10:52Z 2009-12-03T19:35:15Z <p>I working on a food database, every food has a list of properties (fats, energy, vitamins, etc.)</p> <p>These props are composed by 50 different columns of proteins, fat, carbohydrates, vitamins, elements, etc.. (they are a lot)<br/> <b>the number of columns could increase in the future, but not too much, 80 for extreme case</b><br/> Each column needs an individual reference to one bibliography of a whole list from another table (needed to check if the value is reliable or not).</p> <p>Consider the ids, should contain a number, a NULL val, or 0 for one specific exception reference (will point to another table)</p> <p>I've though some solution, but they are very different eachothers, and I'm a rookie with db, so I have no idea about the best solution.</p> <p>consider value_1 as proteins, value_2 as carbohydrates, etc..</p> <p>The best (I hope) 2 alternatives I thought are:</p> <p><b>(1)</b> create one varchar(255?) column, with all 50 ids, so something like this:<br/></p> <pre><code>column energy (7.00) column carbohydrates (89.95) column fats (63.12) column value_bil_ids (165862,14861,816486) ## as a varchar etc... </code></pre> <p>In this case, I can split it with "," to an array and check the ids, but I'm still worried about coding praticity... this could save too many columns, but I don't know how much could be pratical in order to scalability too. Principally, I thought this option usual for query optimization (I hope!)</p> <p><b>(2)</b> Simply using an additional id column for every value, so:</p> <pre><code>column energy (7.00) column energy_bibl_id (165862) column carbohydrates (89.95) column carbohydrates_bibl_id (14861) column fats (63.12) column fats_bibl_id (816486) etc... </code></pre> <p>It seems to be a weightful number of columns, but much clear then first, especially for the relation of any value column and his ID.</p> <p><b>(3)</b> Create a relational table behind values and bibliographies, so</p> <pre><code>table values energy carbohydrates fats value_id --&gt; point to table values_and_bibliographies val_bib_id table values_and_bibliographies val_bib_id energy_id --&gt; point to table bibliographies biblio_id carbohydrates_id --&gt; point to table bibliographies biblio_id fats_id --&gt; point to table bibliographies biblio_id table bibliographies biblio_id biblio_name biblio_year </code></pre> <p>I don't know if these are the best solutions, and I shall be grateful if someone will help me to bring light on it!</p> http://stackoverflow.com/questions/1819446/how-is-twitters-mysql-database-architecture-designed-try-your-best 1 How is Twitter's MYSQL database architecture designed? Try your best. alex 2009-11-30T12:11:37Z 2009-11-30T12:13:07Z <p>No one knows. And even if you work at Twitter, you probably won't let us know the secret.</p> <p>So, let us all post our theories on how this communication tool database is designed!</p> <p>It definitely can't follow the standard replication architecture, right? It's got to do some sharding, partitioning, etc etc.</p> <p>Let me know what you think!</p> http://stackoverflow.com/questions/1819055/network-load-balancing-nlb-is-it-suitable-for-stateful-asp-net-applications 0 Network Load Balancing (NLB): is it suitable for "stateful" ASP.NET applications? micha12 2009-11-30T10:41:05Z 2009-11-30T10:48:12Z <p>Hi everybody,</p> <p>I have posted the following question concerning ASP.NET web farms.</p> <p><a href="http://stackoverflow.com/questions/1816756/how-to-create-an-asp-net-web-farm/">http://stackoverflow.com/questions/1816756/how-to-create-an-asp-net-web-farm/</a></p> <p>Guys recommended using Network Load Balancing (NLB) as a primary way of creating a web farm.</p> <p>However, <a href="http://en.wikipedia.org/wiki/Network%5FLoad%5FBalancing%5FServices" rel="nofollow">Wikipedia</a> says that "NLBS is intended for ... stateless applications". Our web application, however, is absolutely <strong>"stateful"</strong>: it is a closed site to which users will have access by login and password, and information for every user will be different: people will see their own trades and operations.</p> <p><strong>Should we</strong> still <strong>use NLB</strong> in this scenario?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1816756/how-to-create-an-asp-net-web-farm 0 How to create an ASP.NET web farm? micha12 2009-11-29T21:00:26Z 2009-11-30T00:05:02Z <p>Hi everybody,</p> <p>I am looking for information on how to create an <strong>ASP.NET web farm</strong> - that is, how to make an ASP.NET application (initially designed to work on a single web server) work on 2, 3, 10, etc. servers?</p> <p>We created a web application which works fine when, say, there are 500 users at the same time. But now we need to make it work for 10 000 users (working with the web app at the same time).</p> <p>So we need to set up <strong>20 web servers</strong> and make something so that 10 000 users could work with the web app by typing "www.MyWebApp.ru" in their web browsers, though their requests would be handled by 20 web-servers, without their knowing that.</p> <p><strong>1)</strong> Is there special <strong>standard software</strong> to create an <strong>ASP.NET web farm</strong>?</p> <p><strong>2)</strong> Or should we <strong>create a web farm ourselves</strong>, by transferring requests between different web servers <strong>manually</strong> (using ASP.NET / C#)?</p> <p>I found very little information on ASP.NET web farms and scalability on the web: in most cases, articles on scalability tell how to optimize and ASP.NET app and make it run faster. But I found no example of a <strong>"Hello world"-like ASP.NET web app</strong> running on <strong>2 web servers</strong>.</p> <p>Would be great if someone could post a link to an article or, better, tell about one's own <strong>experience</strong> in ASP.NET "web farming" and addressing scalability issues.</p> <p>Thank you, Mikhail.</p> http://stackoverflow.com/questions/1733976/is-this-way-of-using-excel-2007-pivot-table-for-bi-scalable 0 Is this way of using Excel 2007 Pivot table for BI scalable ? Sim 2009-11-14T11:18:46Z 2009-11-27T08:11:25Z <p>Hi all,</p> <p>Background: </p> <ul> <li><p>We need to consolidate sales data across the country to do analysis</p></li> <li><p>Our Internet connection/IT expertise/IT investment is not quite strong, therefore full BI solution is out of question</p></li> <li><p>I tried several SaaS BI solution (GoodData, ZohoReports) and while they're good, they seem not to fully support what we need</p></li> <li><p>We're looking at 'bout 2 millions record for every 2 months</p></li> </ul> <p>My current approach</p> <ul> <li><p>Our (10) sites currently gathers data from all their branches and consolidate them into 1 Excel file with Pivot table and embed source data</p></li> <li><p>In HQ, I will request 10 sites to send back those Excel files periodically</p></li> <li><p>We will import those Excel to our MSSQL server</p></li> <li><p>There will be a master Excel file, that will also have the same pivot table (as those came from site Excel file), and datasource is the MSSQL server</p></li> </ul> <p>More details</p> <ul> <li><p>For testing, I currently use MSSQL 2008 Express on my laptop</p></li> <li><p>So far, I imported our transactions for the past 2 months and there are 2 millions+ row in 1 table in MSSQL (we just use 1 table, corresponding to our common pivot table structure). DB size is ~ 600 MB</p></li> <li><p>In the master Excel file, if not including the source data, it's just &lt; 10MB. Including the source data will increase the size to 60 MB (so I supposed Office 2007 automatically zip the data ?)</p></li> <li><p>I try using the Pivot (drag-and-drop fields) and the performance so far is OK (my laptop specs: C2D T7200, 3GB RAM, Windows XP)</p></li> </ul> <p>So my question is :</p> <ul> <li><p>If we're looking at full year transaction (roughly 15 millions rows in MSSQL 2008 Express, 3.6 GB in size), is there any issue with that 15 million rows in 1 table in SQL Express ?</p></li> <li><p>Is there any performance issue with the pivot table at that time ? Can it still embed the source data ? (I google-ed but didn't find the maximum size of source data Excel 2007 can embed)</p></li> <li><p>Any other suggestions on how we can better do this ? Given that we can't afford the full BI solution, any light-weight/budget/SaaS BI that you can recommend ?</p></li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/1176726/connecting-thousands-of-clients-to-a-jabber-server-through-a-single-connection 3 Connecting thousands of clients to a Jabber server through a single connection Trap 2009-07-24T09:56:46Z 2009-11-23T16:47:19Z <p>We are using Openfire (Jabber) to enable chat and presence capabilities to our MMORPG. In our server architecture clients only open a single connection with the game server, and upon login, the game server creates a new connection to Jabber for this new client.</p> <p>The problem is, we don't want to open a new connection to Jabber for every client that logs in, we like it better if our game server acted as a connection manager and talked to the Jabber server through a single connection, yet being able to manage hundreds of thousands of 'logical' clients.</p> <p>Is this possible?</p> <p>Any links or info on this matter would be very much appreciated. Thanks.</p> http://stackoverflow.com/questions/1764426/persistence-strategy-for-low-latency-reads-and-writes 2 Persistence strategy for low latency reads and writes bajafresh4life 2009-11-19T16:06:37Z 2009-11-19T22:29:48Z <p>I am building an application that includes a feature to bulk tag millions of records, more or less interactively. The user interaction is very similar to Gmail where users can tag individual emails, or bulk tag large amounts of emails. I also need quick read access to these tag memberships as well, and where the read pattern is more or less random.</p> <p>Right now we're using Mysql and inserting one row for every tag-document pair. Writing millions of rows to Mysql takes a while (high I/O), even with bulk insertions and heavy optimization. We need this to be an interactive process, not a batch process.</p> <p>For the data that we're storing and reading, consistency and availability of the data are not as important as performance and scalability. So in the event of system failure while the writes are occurring, I can deal with some data loss. However, the data definitely needs to be persisted to secondary storage at some point.</p> <p>So, to sum up, here are the requirements:</p> <ul> <li>Low latency bulk writes of potentially tens of millions of records</li> <li>Data needs to be persisted in some way</li> <li>Low latency random reads</li> <li>Durable writes not required</li> <li>Eventual consistency is okay</li> </ul> <p>Here are some solutions I've looked at:</p> <ul> <li>Write behind caches (Terracotta, Gigaspaces, Coherence) where records are written to memory and drained to the database asynchronously. These scare me a little because they appear to add a certain amount of complexity to the app that I'd want to avoid.</li> <li>Highly scalable key-value stores, like MongoDB, HBase, Tokyo Tyrant</li> </ul> http://stackoverflow.com/questions/1749234/nix-cloud-cluster-solutions-for-bulding-fast-scalable-web-services 1 (*nix) Cloud/Cluster solutions for bulding fast & scalable web-services o_O Tync 2009-11-17T14:24:40Z 2009-11-19T14:31:07Z <p>I'm going to build a high-performance web service. It should use a database (or any other storage system), some processing language (either scripting or not), and a web-server daemon. The system should be distributed to a large amount of servers so the service runs fast and reliable.</p> <p>It should replicate data to achieve reliability and at the same time it must provide distributed computing features in order to process large amounts of data (primarily, queries on large databases that won't survive being executed on a single server with a suitable level of responsiveness). Caching techniques are out of the subject.</p> <p>Which cluster/cloud solutions I should take for the consideration?</p> <p>There are plenty of Single-System-Image (SSI), clustering file systems (can be a part of the design), projects like Hadoop, BigTable clones, and many others. Each has its pros and cons, and "about" page always says the solution is great :) If you've tried to deploy something that addresses the subject - share your experience!</p> <p><b>UPD:</b> It's not a file hosting and not a game, but something rather interactive. You can take StackOverflow as an example of a web-service: small pieces of data, semi-static content, intensive database operations.</p> <p><hr></p> <p><a href="http://serverfault.com/posts/84715/nix-cloud-cluster-solutions-for-scalable-web-services">Cross-Post on ServerFault</a></p> http://stackoverflow.com/questions/1758476/what-should-be-the-maximum-number-of-opened-socket-on-a-server 0 What should be the maximum number of opened socket on a server? Jeff Cyr 2009-11-18T19:33:07Z 2009-11-18T19:57:52Z <p>For a web server, the socket connection are kept alive to save overhead. At which point the server should start to drop connection that doesn't have pending request and based on what premises?</p> http://stackoverflow.com/questions/1744747/achievements-badges-system 5 Achievements / Badges system bluedaniel 2009-11-16T20:45:06Z 2009-11-17T21:14:50Z <p>I have been browsing this site for the answer but I'm still a little unsure how to plan a similar system in its datbase structure and implementation.</p> <p>In PHP and MySQL it would be clear that some achievements are earned immediatley (when a specialzed action is taken, in SO case: Filled out all profile fields), although I know SO updates and assigns badges after a certain amount of time. With so many users &amp; badges wouldnt this create performance problems (in terms of scale: high number of both users &amp; badges).</p> <p>So the database structure I assume would something as simple as:</p> <pre><code>Badges | Badges_User | User ---------------------------------------------- bd_id | bd_id | user_id bd_name | user_id | etc bd_desc | assigned(bool) | | assigned_at | </code></pre> <p>But as some people have said it would be better to have an incremental style approach so a user who has 1,000,000 forum posts wont slow any function down.</p> <p>Would it then be another table for badges that could be incremental or just a 'progress' field in the badges_user table above?</p> <p>Thanks for reading and please focus on the scaleability of the desired system (like SO thousands of users and 20 to 40 badges).</p> <p>EDIT: to some iron out some confusion I had assigned_at as a Date/Time, the criteria for awarding the badge would be best placed inside prepared queries/functions for each badge wouldnt it? (better flexibility)</p> http://stackoverflow.com/questions/639275/scalability-of-j2ee-application-how-would-you-approach-it 0 Scalability of J2EE Application. How would you approach it? Pregzt 2009-03-12T15:56:18Z 2009-11-17T12:00:20Z <p>I've been working on the solution for financial industry. The main functionality of the application is the ability to load massive input files, digest them, update state in persistent store and generate extracts from persistent store on request. Pretty straightforward.</p> <p>The input files are industry standard formatted XML large (more that hundreds of megabytes) messages containing many repeated entries. The persistent storage is relational database. The engine has been implemented as POJO-based (Spring Framework as back-bone) Java application deployable on J2EE application server.</p> <p>The question is about the scalability and performance of the solution. If the application processes entries from XML in sequence the scalability of the solution is rather poor. there is no way to engage more than one instance of the application into the processing of the single file. This is why I've introduced parallel processing for entries form input XML file. Basically the idea is to dispatch processing of individual entries for workers from the pool. I decided to use JMS for dispatching. The component that loads the file reads the stream and simply extracts single entries and feeds the dispatching queue. There is a number of concurrent consumers on the other end of the queue. Each picks one message of the queue and processes the entry and it's immediately available to process other entry. This is pretty similar to servlets within the web container. What I found particularly powerful about this approach is that the workers can reside within separate instances of the application deployed on remote servers as long as the queue is shared. Unfortunately all workers connect to the same database that maintains persistence storage and this might be a bottleneck if database server is not powerful enough to handle load from concurrent workers.</p> <p>What is your opinion on this architecture? Did you have similar application to design? What was your design choice then?</p> http://stackoverflow.com/questions/886221/does-django-scale 39 Does Django Scale? Rax Olgud 2009-05-20T05:07:55Z 2009-11-16T18:51:51Z <p>Hello,</p> <p>I'm building a web application with Django. The reasons I chose Django were:</p> <ul> <li>I wanted to work with free/open-source tools</li> <li>I like Python and feel it's a "long term" language, whereas regarding Ruby I wasn't sure, and PHP seemed like a huge hassle to learn.</li> <li>I'm building a prototype for an idea and wasn't thinking too much about the future. Speed was the main factor, and I already knew Python. [Edit: To clarify - I mean development speed rather than optimized speed of execution]</li> <li>I knew the migration to Google App Engine would be easier should I choose to do so in the future.</li> <li>I heard Django was "nice"</li> </ul> <p>Now that I'm getting closer to thinking about publishing my work, I start being concerned about scale. The only information I found about the scaling capabilities of Django is provided by the Django team (I'm not saying anything to disregard them, but this is clearly not objective information...).</p> <p>My questions to you:</p> <ul> <li>What's the "largest" site that's built on Django today? (I measure size mostly by user traffic)</li> <li>Can Django deal with 100k users daily, each visiting the site for a couple of hours?</li> <li>Could a site like StackOverflow run on Django?</li> </ul> <p>Thanks</p> http://stackoverflow.com/questions/736532/which-billing-provider-can-i-use-for-my-saas-applications 1 Which billing provider can I use for my SAAS applications? uuɐɯǝʃǝs 2009-04-10T02:25:58Z 2009-11-16T16:53:44Z <p>Hi</p> <p>I'm working on a Software-as-a-service (SAAS) application that allows companies to manage supplier information. </p> <p>What are the providers / vendors that can offer Billing services, including managing invoices, subscription, renewal and reminder for payment dues?</p> <p>I find that building this from scratch will take a lot of time.</p> <p>In addition to the billing, what other major components / considerations that I should look into in order to publish this application succesfully?</p> <p>I have the following notes and welcome any suggestions:</p> <p>1) Infrastructure : for scalability and maintenance, I use cloud computing so that I'm free from managing infra, especially for scaling up should the demand increase.</p> <p>2) Security : I find that if I use dedicated server, I have to pay a lot more for security, such as Firewall. So using cloud computing will enable my application to 'ride' on the secure platform. </p> <p>regards</p> http://stackoverflow.com/questions/1316901/scalable-ruby-application 1 Scalable ruby application Silent Warrior 2009-08-22T19:59:23Z 2009-11-16T08:42:33Z <p>I am java developer and heard a lot about ruby. My real question is can we develop large scale enterprise (web) application in ruby ? Because I heard that ruby is good for small application, but like java we can't develop large scale scalable (web) application in ruby.</p>