User SquareCog - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T12:36:12Z http://stackoverflow.com/feeds/user/15962 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1849274/what-do-you-call-the-extra-third-table-involved-in-a-many-to-many-relationship/1849283#1849283 4 Answer by SquareCog for What do you call the extra third table involved in a many-to-many relationship? SquareCog 2009-12-04T19:55:52Z 2009-12-04T19:55:52Z <p>I call them "bridge" tables, but that's not an official name either. Descriptive, though.</p> http://stackoverflow.com/questions/1825844/multiple-databases-in-rails/1832529#1832529 0 Answer by SquareCog for Multiple databases in Rails SquareCog 2009-12-02T12:08:51Z 2009-12-02T12:08:51Z <p>You should also check out this project called DB Charmer: <a href="http://kovyrin.net/2009/11/03/db-charmer-activerecord-connection-magic-plugin/" rel="nofollow">http://kovyrin.net/2009/11/03/db-charmer-activerecord-connection-magic-plugin/</a></p> <blockquote> <p>DbCharmer is a simple yet powerful plugin for ActiveRecord that does a few things:</p> <ol> <li>Allows you to easily manage AR models’ connections (<code>switch_connection_to</code> method) </li> <li>Allows you to switch AR models’ default connections to a separate servers/databases</li> <li>Allows you to easily choose where your query should go (<code>on_*</code> methods family)</li> <li>Allows you to automatically send read queries to your slaves while masters would handle all the updates.</li> <li>Adds multiple databases migrations to ActiveRecord </li> </ol> </blockquote> http://stackoverflow.com/questions/1814132/mysql-beach-ball-from-not-in-query/1814174#1814174 1 Answer by SquareCog for MySQL Beach Ball from NOT IN query SquareCog 2009-11-28T23:51:33Z 2009-11-28T23:51:33Z <p>MySQL might be doing rather silly stuff with correlated subqueries (look at the query plan). If you just want things from the first query that are not in the second, you might get significantly better performance from a LEFT OUTER JOIN of the two, with a filter condition that filters out rows that have nulls for the second set of results.</p> http://stackoverflow.com/questions/1800844/how-to-check-if-mootools-js-is-actually-being-used-within-a-web-site/1800880#1800880 4 Answer by SquareCog for How to check if mootools.js is actually being used within a web site? SquareCog 2009-11-26T00:19:04Z 2009-11-26T00:19:04Z <p>Mootools grafts itself onto some of the native js stuff, so it might be hard to do just by code inspection unless you are very familiar with what MooTools gives you.</p> <p>Remove it, run your automated tests.</p> <p>Cause you have those, right?...</p> http://stackoverflow.com/questions/1798888/how-to-change-this-sql-query/1798948#1798948 0 Answer by SquareCog for how to change this sql query SquareCog 2009-11-25T18:19:31Z 2009-11-25T18:19:31Z <p>If I understand your question correctly, you want something like this:</p> <pre><code>SELECT * FROM dbo.tbh_table WHERE 19 IN ( SELECT value FROM dbo.fn_split(TopicId,',') ) </code></pre> http://stackoverflow.com/questions/1693165/caching-of-map-applications-in-hadoop-mapreduce/1698614#1698614 1 Answer by SquareCog for Caching of Map applications in Hadoop MapReduce? SquareCog 2009-11-09T01:07:39Z 2009-11-09T01:07:39Z <p>Why not apply your SQL workflow in a different environment? Meaning, add a "processed" column to your input table. When time comes to run a summary, run a pipeline that goes something like:</p> <p>map (map_function) on (input table filtered by !processed); store into map_outputs either in hbase or simply hdfs.</p> <p>map (reduce function) on (map_outputs); store into hbase.</p> <p>You can make life a little easier, assuming you are storing your data in Hbase sorted by insertion date, if you record somewhere timestamps of successful summary runs, and open the filter on inputs that are dated later than last successful summary -- you'll save some significant scanning time.</p> <p>Here's an interesting presentation that shows how one company architected their workflow (although they do not use Hbase): <a href="http://www.scribd.com/doc/20971412/Hadoop-World-Production-Deep-Dive-with-High-Availability" rel="nofollow">http://www.scribd.com/doc/20971412/Hadoop-World-Production-Deep-Dive-with-High-Availability</a></p> http://stackoverflow.com/questions/1633000/list-of-large-projects-built-using-perl/1663083#1663083 3 Answer by SquareCog for List of large projects built using Perl SquareCog 2009-11-02T19:14:13Z 2009-11-02T19:14:13Z <p>It had to be done.. </p> <p><img src="http://imgs.xkcd.com/comics/lisp.jpg"></p> http://stackoverflow.com/questions/1634650/best-open-source-database-for-large-web-based-application/1634671#1634671 5 Answer by SquareCog for Best open source database for large web based application SquareCog 2009-10-28T01:19:55Z 2009-10-28T01:19:55Z <p>Opion 1: MySQL Option 2: PostgreSQL</p> <p>MySQL has the larger user base, but fewer features. If you are used to the fancy things you can do with commercial systems, you might have a hard time adjusting.</p> <p>The replication story is more coherent for MySQL than Postgres.</p> <p>PostgreSQL is significantly more full-featured, has a better optimizer, but isn't as widely deployed. </p> <p>Both are fine choices.</p> http://stackoverflow.com/questions/1627689/how-to-search-for-text-fragments-in-a-database/1627704#1627704 3 Answer by SquareCog for How to search for text fragments in a database SquareCog 2009-10-26T22:30:57Z 2009-10-27T03:52:22Z <p>If your table is MyISAM, you can use MySQL's full text search capabilites: <a href="http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/fulltext-search.html</a></p> <p>If not, the "industry standard" is <a href="http://www.sphinxsearch.com/" rel="nofollow">http://www.sphinxsearch.com/</a></p> <p>Some ideas on what to do if you are using InnoDB: <a href="http://www.mysqlperformanceblog.com/2009/09/10/what-to-do-with-mysql-full-text-search-while-migrating-to-innodb/" rel="nofollow">http://www.mysqlperformanceblog.com/2009/09/10/what-to-do-with-mysql-full-text-search-while-migrating-to-innodb/</a></p> <p>Also, a good presentation that introduces Sphinx and explains architecture+usage <a href="http://www.scribd.com/doc/2670976/Sphinx-High-Performance-Full-Text-Search-for-MySQL-Presentation" rel="nofollow">http://www.scribd.com/doc/2670976/Sphinx-High-Performance-Full-Text-Search-for-MySQL-Presentation</a></p> <p><em>Update</em><br /> Having read your clarification to the question -- Sphinx can do substring matches. You need to set "enable-star" and create an infix index with the appropriate min_infix_length (1 will give you all possible substrings, but obviously the higher the set it, the smaller your index will be, and the faster your searches). See <a href="http://sphinxsearch.com/docs/current.html" rel="nofollow">http://sphinxsearch.com/docs/current.html</a> for details.</p> http://stackoverflow.com/questions/1627945/in-perl-how-do-you-access-a-value-from-a-reference-in-an-array-of-hashrefs/1627957#1627957 0 Answer by SquareCog for In Perl, how do you access a value from a reference in an array of hashrefs? SquareCog 2009-10-26T23:49:11Z 2009-10-26T23:49:11Z <pre><code>$$allDirArray[$i]-&gt;{'dir'} </code></pre> http://stackoverflow.com/questions/1618387/how-to-compare-two-column-values-which-are-comma-separated-values/1619479#1619479 0 Answer by SquareCog for How to compare two column values which are comma separated values? SquareCog 2009-10-24T23:25:27Z 2009-10-24T23:25:27Z <p>Like the others have already said -- what you have there is a bad design. Consider using proper relations to represent these things.</p> <p>That being said, here's a detailed article about how to do this using SQL Server: <a href="http://www.sommarskog.se/arrays-in-sql-2005.html" rel="nofollow">http://www.sommarskog.se/arrays-in-sql-2005.html</a></p> <p>One thing no one has covered so far, because it's often a very bad idea -- but then, you are already working with a bad idea, and sometimes two wrongs make a right -- is to extract all rows that match ANY of your strings (using LIKE or some such) and doing the intersection yourself, client-side. If your strings are fairly rare and highly correlated, this may work pretty well; it will be god-awful in most other cases.</p> http://stackoverflow.com/questions/1607361/can-hadoop-be-restricted-to-spare-cpu-cycles/1609338#1609338 4 Answer by SquareCog for Can Hadoop be restricted to spare CPU cycles? SquareCog 2009-10-22T19:07:01Z 2009-10-22T19:07:01Z <p>This is very much outside the intended usage for Hadoop. Hadoop expects all of its nodes to be fully available and networked for optimal throughput -- not something you get with workstations. Furthermore, it doesn't even really run in Windows (you can use it with cygwin, but I don't know anyone using that for "production" -- except as client machines issuing jobs). </p> <p>Hadoop does things like store data chunks on a few of the nodes, and try to schedule all computation on that data on those nodes; in a work-sharing environment, that means a task that needs this data will want to run on those three workstations -- regardless of what their users are doing at the moment. In contrast, "cycle scavenging" projects keep all the data elsewhere, and ship it and a task to any node that's available at a given moment; this enables them to be nicer to the machines, but it incurs obvious data transfer costs.</p> http://stackoverflow.com/questions/1589821/is-hadoop-right-for-running-my-simulations/1594531#1594531 1 Answer by SquareCog for Is Hadoop right for running my simulations? SquareCog 2009-10-20T13:15:24Z 2009-10-20T13:15:24Z <p>Hadoop can be made to perform your simulation if you already have a Hadoop cluster, but it's not the best tool for the kind of application you are describing. Hadoop is built to make working on big data possible, and you don't have big data -- you have big computation.</p> <p>I like Gearman (<a href="http://gearman.org/" rel="nofollow">http://gearman.org/</a>) for this sort of thing.</p> http://stackoverflow.com/questions/1583677/is-it-good-practice-to-set-all-database-columns-as-not-null/1583705#1583705 0 Answer by SquareCog for Is it good practice to set all database columns as NOT NULL ? SquareCog 2009-10-18T01:24:18Z 2009-10-18T01:24:18Z <p>Only for columns where not having a value doesn't make any sense.</p> <p>Nulls can be very handy; for one thing, they compress beautifully. They can be a nasty surprise when you don't expect them, though, so if you can't have a Student without a First Name -- make that column NOT NULL. (Middle names, on the other hand... maybe you want to have a default empty string, maybe not -- decent arguments both ways)</p> http://stackoverflow.com/questions/1575066/how-do-i-data-mine-text/1575430#1575430 2 Answer by SquareCog for How do I data mine text? SquareCog 2009-10-15T22:14:08Z 2009-10-15T22:14:08Z <p>Hi Jeremy, Your question is a tiny bit open-ended :) Chances are, you will find modules for whatever analysis you want to do in the <a href="http://incubator.apache.org/uima/" rel="nofollow">UIMA framework</a>: </p> <blockquote> <p>Unstructured Information Management applications are software systems that analyze large volumes of unstructured information in order to discover knowledge that is relevant to an end user. An example UIM application might ingest plain text and identify entities, such as persons, places, organizations; or relations, such as works-for or located-at. UIMA is made of many things</p> <p>UIMA enables applications to be decomposed into components, for example "language identification" => "language specific segmentation" => "sentence boundary detection" => "entity detection (person/place names etc.)". Each component implements interfaces defined by the framework and provides self-describing metadata via XML descriptor files. The framework manages these components and the data flow between them. Components are written in Java or C++; the data that flows between components is designed for efficient mapping between these languages. </p> </blockquote> <p>You may also find <a href="http://www.opencalais.com/" rel="nofollow">Open Calais</a> a useful API for text analysis; depending on how big your heap of documents is, it may be more or less appropriate.</p> <p>If you want it quick and dirty -- create an inverted index that stores all locations of words (basically a big map of words to all file ids in which they occur, paragraphs in those files, lines in the paragraphs, etc). Also index tuples so that given a fileid and paragraph you can look up all the neighbors. This will do what you describe, but it takes quite a bit of tweaking to get it to pull up meaningful correlations (some keywords to start you off on your search: information retrieval, TF-IDF, Pearson correlation coefficient).</p> http://stackoverflow.com/questions/1533330/writing-data-to-hadoop/1533354#1533354 1 Answer by SquareCog for Writing data to Hadoop SquareCog 2009-10-07T18:27:57Z 2009-10-07T18:27:57Z <p>Install Cygwin, install Hadoop locally (you just need the binary and configs that point at your NN -- no need to actually run the services), run <code>hadoop fs -copyFromLocal /path/to/localfile /hdfs/path/</code></p> <p>You can also use the new Cloudera desktop to upload a file via the web UI, though that might not be a good option for giant files.</p> <p>There's also a WebDAV overlay for HDFS but I don't know how stable/reliable that is.</p> http://stackoverflow.com/questions/1498898/sorting-the-values-before-they-are-send-to-the-reducer/1499177#1499177 1 Answer by SquareCog for Sorting the values before they are send to the reducer. SquareCog 2009-09-30T16:14:50Z 2009-10-06T19:32:56Z <p>It sounds like you want to use a Combiner, which defines what to do with the values your create on the Map side before they are sent to the Reducer, but after they are grouped by key. The combiner is often set to just be the reducer class (so you reduce on the map side, and then again on the reduce side).</p> <p>Take a look at how the wordCount example uses the combiner to pre-compute partial counts:</p> <p><a href="http://wiki.apache.org/hadoop/WordCount" rel="nofollow">http://wiki.apache.org/hadoop/WordCount</a></p> <p><hr /></p> <p><em>Update</em> Here's what I have in mind for your problem; it's possible I misunderstood what you are trying to do, though.</p> <p>Every mapper emits <code>&lt;key, {score, data}&gt;</code> pairs.</p> <p>The combiner gets a partial set of these pairs: <code>&lt;key, [set of {score, data}&gt;</code> and does a local sort (still on the mapper nodes), and outputs <code>&lt;key, [sorted set of top 10 local {score, data}]&gt;</code> pairs.</p> <p>The reducer will get <code>&lt;key, [set of top-10-sets]&gt;</code> -- all it has to do is perform the merge step of sort-merge (no sorting needed) for each of the members of the value sets, and stop merging when the first 10 values are pulled.</p> <p><hr /></p> <p><strong>update 2</strong></p> <p>So, now that we know that the rank as cumilative and as a result, you can't filter the data early by using combiners, the only thing is to do what you suggested -- get a secondary sort going. You've found the right tickets; there is an example of how to do this in Hadoop 20 in src/examples/org/apache/hadoop/examples/SecondarySort.java (or, if you don't want to download the whole source tree, you can look at the example patch in <a href="https://issues.apache.org/jira/browse/HADOOP-4545" rel="nofollow">https://issues.apache.org/jira/browse/HADOOP-4545</a> )</p> http://stackoverflow.com/questions/1499416/clarification-on-dbms-locking/1499549#1499549 1 Answer by SquareCog for Clarification on DBMS Locking SquareCog 2009-09-30T17:26:45Z 2009-09-30T17:26:45Z <p>The answer is, as usual, "it depends" :-)</p> <p>Generally speaking, you don't need to take out all your locks before you begin; however, you need to take out all your locks <em>before you release</em> any locks. So you can do the following:</p> <pre><code>lock resource A update A lock resource B update B unlock A unlock B </code></pre> <p>This allows you to be a bit friendlier to other transactions that may want to read B, and don't care about A, for example. It does introduce more risk -- you may be unable to acquire a lock on B, and decide to roll back your transaction. Them's the breaks.</p> <p>You also want to always acquire all locks in the same order, so that you don't wind up in a deadlock (transaction 1 has A and wants B; trans 2 has B and wants A; standoff at high noon, no one wins. If you enforce consistent order, trans 2 will try to get A before B and either wait, letting trans 2 proceed, or fail, if trans 1 already started -- either way, no deadlock).</p> <p>Things get more interesting when you have intent-to-exclude locks -- locks that are taken as shared with an "option" to make them exclusive. This might be covered somewhere in the back of your book :-)</p> http://stackoverflow.com/questions/1479442/real-world-use-of-zookeeper/1479901#1479901 2 Answer by SquareCog for Real World Use of Zookeeper SquareCog 2009-09-25T23:00:43Z 2009-09-25T23:00:43Z <p>HBase uses Zookeeper for coordinating activities it's "head node" was responsible for prior to the current version. The move to using Zookeeper means the central control is no longer a single point of failure.</p> <p>Zookeeper is very versatile; here is an example of using it to build a distributed concurrent queue:</p> <p><a href="http://www.cloudera.com/blog/2009/05/28/building-a-distributed-concurrent-queue-with-apache-zookeeper/" rel="nofollow">http://www.cloudera.com/blog/2009/05/28/building-a-distributed-concurrent-queue-with-apache-zookeeper/</a></p> <p>You can of course also use it to create resource locks, etc, in a distributed system.</p> http://stackoverflow.com/questions/1473014/keeping-distributed-databases-synchronized-in-a-unstable-network/1473164#1473164 3 Answer by SquareCog for Keeping distributed databases synchronized in a unstable network SquareCog 2009-09-24T17:45:15Z 2009-09-24T17:45:15Z <p>I am not aware of any databases that will give you this functionality out of the box; there is a lot of complexity here due to the need for eventual consistency and conflict resolution (eg, what happens if the network gets split into 2 halves, and you update something to the value 123 while I update it on the other half to 321, and then the networks reconnect?)</p> <p>You may have to roll your own.</p> <p>For some ideas on how to do this, check out the design of Yahoo's PNUTS system: <a href="http://research.yahoo.com/node/2304" rel="nofollow">http://research.yahoo.com/node/2304</a> and Amazon's Dynamo: <a href="http://www.allthingsdistributed.com/2007/10/amazons%5Fdynamo.html" rel="nofollow">http://www.allthingsdistributed.com/2007/10/amazons%5Fdynamo.html</a></p> http://stackoverflow.com/questions/791986/background-thread-for-a-tomcat-servlet-app 5 Background Thread for a Tomcat servlet app SquareCog 2009-04-27T01:32:58Z 2009-09-24T09:33:27Z <p>I am not very familiar with Tomcat, in my head it is basically abstracted as a cgi server that saves the JVM between calls -- I know it can do a lot more than that, though. </p> <p>I am looking for a way to launch a <em>background</em> thread when a Tomcat server starts, which would periodically update the Server Context (in my particular case this is a thread that listens to heartbeats from some other services and updates availability information, but one can imagine a variety of uses for this). </p> <p>Is there a standard way to do this? Both the launching, and the updating/querying of the Context?</p> <p>Any pointers to the relevant documentation and/or code samples would be much appreciated.</p> http://stackoverflow.com/questions/1467898/what-language-could-i-use-for-fast-execution-of-this-database-summarization-task/1469955#1469955 0 Answer by SquareCog for What language could I use for fast execution of this database summarization task? SquareCog 2009-09-24T05:50:46Z 2009-09-24T05:50:46Z <p>The Pig version would go something like this (untested):</p> <pre><code> Data = LOAD '/my/data' using PigStorage() as (aa:int, bb:float, cc:chararray); grp = GROUP Data by aa; topK = FOREACH grp ( sorted = ORDER Data by bb DESC; lim = LIMIT sorted 5; GENERATE group as aa, lim; ) STORE topK INTO '/my/output' using PigStorage(); </code></pre> <p>Pig isn't optimized for performance; it's goal is to enable processing of multi-terabyte datasets using parallel execution frameworks. It does have a local mode, so you can try it, but I doubt it will beat your script.</p> http://stackoverflow.com/questions/1464014/db2-accessing-the-column-by-column-number/1464045#1464045 0 Answer by SquareCog for DB2: accessing the column by column number SquareCog 2009-09-23T04:59:01Z 2009-09-23T04:59:01Z <p>Not quite what you are asking for, but if you are willing to pay for a round trip you may be able to use this query to find the column name to column number mapping:</p> <pre><code>SELECT COLNAME, COLNO, TYPENAME, NULLS FROM SYSCAT.COLUMNS WHERE TABSCHEMA = ? and TABNAME = ? order by colno </code></pre> <p>(from Perl's DBI::DB2)</p> http://stackoverflow.com/questions/1451562/how-to-utilise-indexes-in-sql/1451604#1451604 4 Answer by SquareCog for How to utilise indexes in SQL SquareCog 2009-09-20T18:02:47Z 2009-09-20T18:02:47Z <p>You do not need to explicitly specify the indexes you want the database to use. The database optimizer will look at what it knows about available indexes and algorithms for answering your query, and (hopefully) select the best plan for the task at hand.</p> <p>So you just need to select from your table as before; the database will "do the right thing" automatically.</p> <p>Because the optimizer is a bit opaque to even the most experienced developers, it is important when developing queries to look at the "execution plan" generated for them. You can see the plan using your database's flavor of the EXPLAIN command.</p> <p>There is art to setting up the right indexes. Here is a recent example that goes through what algorithms and index combinations are best for certain kinds of selects on the MySQL database: <a href="http://www.mysqlperformanceblog.com/2009/09/19/multi-column-indexes-vs-index-merge/" rel="nofollow">http://www.mysqlperformanceblog.com/2009/09/19/multi-column-indexes-vs-index-merge/</a> This is probably a bit too advanced to be useful to you right now, but read through it to get a feeling for the kinds of things the optimizer is trying to figure out for you.</p> http://stackoverflow.com/questions/1431890/firebird-sql-100x-constraints-in-where-clause-makes-query-extremely-slow/1433527#1433527 0 Answer by SquareCog for (Firebird) SQL: 100x constraints in WHERE clause makes query extremely slow SquareCog 2009-09-16T14:55:35Z 2009-09-16T14:55:35Z <p>Create a range search friendly index (a B-tree index) on events.lat and/or events.long (but not a single index on both!) That will at least get you in the ballpark. </p> <p>What you really want is an R-Tree or similar, which allows indexing multi-dimensional data and gives you good range search performance. PostgreSQL has GiST for that; I don't know what kind of support Firebird has for this sort of problem.</p> <p>Wiki links for more info: <a href="http://en.wikipedia.org/wiki/R-tree" rel="nofollow">http://en.wikipedia.org/wiki/R-tree</a> <a href="http://en.wikipedia.org/wiki/GiST" rel="nofollow">http://en.wikipedia.org/wiki/GiST</a></p> http://stackoverflow.com/questions/1428426/look-up-values-in-a-bdb-for-several-files-in-parallel/1430119#1430119 0 Answer by SquareCog for Look up values in a BDB for several files in parallel SquareCog 2009-09-15T23:15:18Z 2009-09-15T23:15:18Z <p>Hadoop is totally irrelevant to this case. Hadoop is a system for parallelizing large computational tasks on computer clusters, not for parallelizing short-lived lookups on a single node.</p> <p>If I understand correctly, you want Perl to look up a value in several BDB files in parallel. This is best done by giving your bdb calls a callback handle that will get executed when the request finishes. The threading will be done at the C layer, much more efficient than doing it manually in Perl.</p> <p>Building blocks:</p> <p>BDB: <a href="http://search.cpan.org/~mlehmann/BDB-1.84/BDB.pm" rel="nofollow">http://search.cpan.org/~mlehmann/BDB-1.84/BDB.pm</a></p> <p>Coro::BDB: <a href="http://search.cpan.org/~mlehmann/Coro-5.17/Coro/BDB.pm" rel="nofollow">http://search.cpan.org/~mlehmann/Coro-5.17/Coro/BDB.pm</a></p> <p>AnyEvent: <a href="http://search.cpan.org/~mlehmann/AnyEvent-5.2/lib/AnyEvent.pm" rel="nofollow">http://search.cpan.org/~mlehmann/AnyEvent-5.2/lib/AnyEvent.pm</a></p> http://stackoverflow.com/questions/1428402/ifcondition-then-else-in-oracle/1428414#1428414 0 Answer by SquareCog for if(condition, then, else) in Oracle SquareCog 2009-09-15T17:01:58Z 2009-09-15T17:01:58Z <p>You want the nvl function: nvl(foo.bar, 0)</p> <p>Oracle does support various ifs and cases as well.</p> http://stackoverflow.com/questions/1424132/can-olap-be-done-in-bigtable/1428361#1428361 2 Answer by SquareCog for Can OLAP be done in BigTable? SquareCog 2009-09-15T16:53:51Z 2009-09-15T16:53:51Z <p>It's even kind of been done (kind of).</p> <p>LastFm's aggregation/summary engine: <a href="http://github.com/zohmg/zohmg" rel="nofollow">http://github.com/zohmg/zohmg</a></p> <p>A google search turned up a google code project "mroll" but it doesn't have anything except contact info (no code, nothing). Still, might want to reach out to that guy and see what's up. <a href="http://code.google.com/p/mroll/" rel="nofollow">http://code.google.com/p/mroll/</a></p> http://stackoverflow.com/questions/1417968/deep-dark-secrets-of-emacs/1418185#1418185 2 Answer by SquareCog for Deep dark secrets of Emacs? SquareCog 2009-09-13T16:45:54Z 2009-09-13T16:45:54Z <p>I started typing out some tips and then realized that I've already read what I just wrote -- I give you, <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">Steve Yegge's Emacs Tips</a></p> <p>To that I would also like to add -- use <a href="http://www.emacswiki.org/emacs-en/IswitchBuffers" rel="nofollow">iswitchb</a> for awesome buffer switching.</p> <p>Also use bookmarks -- C-x r m to set a bookmark in any buffer, give it a name, and C-x r b to jump to a named bookmark. Handy for navigating in a large codebase.</p> http://stackoverflow.com/questions/1412590/hadoop-distribution-differences/1417144#1417144 4 Answer by SquareCog for Hadoop Distribution Differences SquareCog 2009-09-13T07:53:20Z 2009-09-13T07:53:20Z <p>Disclaimer: I interned at Cloudera this summer (but some of my best friends are at Yahoo! :-))</p> <p>The Yahoo distribution is a version of Hadoop 20 that they run (ran?) on some subset of their clusters. It includes a set of patches for stability, bug fixes, etc. It is a source release; it does not have admin-friendly features like rpm or debian packages, etc.</p> <p>The Cloudera distribution is packages as rpms and debs (the source is also available). This means you can get updates via standard methods, etc. It also includes stability and bug fix patches. It is constantly maintained (not to say Yahoo's isn't -- I suppose one could just go on github and check when they last updated it). It also packages Pig and Hive.</p> <p>Cloudera's distribution of Hadoop 20 is in beta, and 18 is considered stable (more on this on the <a href="http://www.cloudera.com/blog/2009/09/10/cdh2-clouderas-distribution-for-hadoop-2/" rel="nofollow">Cloudera blog</a>). The 18 version also includes packages for Hive and Pig; for 20, you have to build them yourself (there aren't official releases of Pig or Hive that support 20 yet, although patches exist). There may well be significant overlap between the Cloudera and Yahoo versions of 20; both provide manifests, so you can check. The latest documentation of Cloudera's distros is at <a href="http://archive.cloudera.com" rel="nofollow">http://archive.cloudera.com</a></p> <p>Yahoo does not provide support for their distribution; they provide their patched version as a service to the community, so the folks who are interested can build what Yahoo runs internally. Given the size of Yahoo clusters, that's a significant contribution, especially if you aren't a Hadoop developer who follows the JIRAs all the time. Cloudera supports their distribution commercially, as well as providing some community support via the Hadoop mailing lists and, for distro-specific issues, on their GetSatisfaction page.</p> <p>Both are pretty different from the vanilla Apache distro since they patch it in between releases (the cloudera version of 20 has 60+ patches!).</p> http://stackoverflow.com/questions/1798888/how-to-change-this-sql-query/1798928#1798928 Comment by SquareCog on how to change this sql query SquareCog 2009-11-25T18:27:56Z 2009-11-25T18:27:56Z If I am reading the question right, his question isn't &quot;how do I match 15 or 19 or 12 or 1&quot; but &quot;how do I match 19 to a topicId comma-delimited string, given that I have a table function to separate the string&quot;. So your solution doesn't work. Plus not needing a desiredIds table is precisely what the IN clause was invented for. http://stackoverflow.com/questions/1798888/how-to-change-this-sql-query/1798935#1798935 Comment by SquareCog on how to change this sql query SquareCog 2009-11-25T18:23:21Z 2009-11-25T18:23:21Z upvoted. I didn't know about cross apply. This is a sqlserver specific thing, right? http://stackoverflow.com/questions/735791/hadoop-examples/1100837#1100837 Comment by SquareCog on Hadoop examples? SquareCog 2009-11-25T01:04:32Z 2009-11-25T01:04:32Z As the author of said article, I want to point out that it was written more from a &quot;getting familiar with Pig&quot; perspective than a &quot;doing log parsing in Hadoop&quot; perspective. There are more efficient and less verbose ways to do those things. But yeah, Pig is nice for this sort of stuff at large scale. http://stackoverflow.com/questions/1693165/caching-of-map-applications-in-hadoop-mapreduce/1698614#1698614 Comment by SquareCog on Caching of Map applications in Hadoop MapReduce? SquareCog 2009-11-09T18:25:47Z 2009-11-09T18:25:47Z HBase supports rows and columns; the difference from RDBMS (briefly) is that transactions are not available across rows (but you can have acid guarantees on updates to different columns in the same row), and that columns are sparse -- you can have many columns, and different rows can have different columns. In regular MR, appends are impossible (HDFS issue), but with HBase you can simply insert more rows into a table, so I think it should work. http://stackoverflow.com/questions/1467898/what-language-could-i-use-for-fast-execution-of-this-database-summarization-task/1469525#1469525 Comment by SquareCog on What language could I use for fast execution of this database summarization task? SquareCog 2009-11-02T13:39:35Z 2009-11-02T13:39:35Z you can actually apt-get Pig, just need to get it from <a href="http://archive.cloudera.com" rel="nofollow">archive.cloudera.com</a> -- but don't bother, I ran it and it takes 20 minutes. Pig is built for problems that don't fit in memory, it's grossly inefficient in this case. http://stackoverflow.com/questions/1627689/how-to-search-for-text-fragments-in-a-database/1627704#1627704 Comment by SquareCog on How to search for text fragments in a database SquareCog 2009-11-02T13:10:50Z 2009-11-02T13:10:50Z I am not sure on the internal details, but I imagine they are doing some multi-tier thing to deal with the explosion -- substrings pointing to words containing substrings (or longer substrings, rinse, repeat), pointing to documents containing words. At first glance that's how I'd do it, anyway. http://stackoverflow.com/questions/1627945/in-perl-how-do-you-access-a-value-from-a-reference-in-an-array-of-hashrefs/1627957#1627957 Comment by SquareCog on In Perl, how do you access a value from a reference in an array of hashrefs? SquareCog 2009-10-27T01:29:48Z 2009-10-27T01:29:48Z I personally find <code>${$foo}</code> less readable than <code>$$foo</code> :-). Agreed that <code>$foo-&gt;[$i]</code> is about the cleanest you are going to get though. Thanks for the tip, SO! http://stackoverflow.com/questions/1619474/what-does-sharding-means-from-database-design-perspective/1619485#1619485 Comment by SquareCog on What does Sharding means from Database Design Perspective ? SquareCog 2009-10-24T23:44:17Z 2009-10-24T23:44:17Z This seems to equate sharding with horizontal partitioning, which is misleading. Sharding is breaking up the db into multiple instances; it involves issues with replicating shared state, migrating shards to load-balance, etc. Partitioning is on a per-table basis, and often does not involve multiple instances. http://stackoverflow.com/questions/1619474/what-does-sharding-means-from-database-design-perspective Comment by SquareCog on What does Sharding means from Database Design Perspective ? SquareCog 2009-10-24T23:39:25Z 2009-10-24T23:39:25Z It's roughly equivalent to &quot;pain, pain, pain&quot;. But if you must, there is a ton of info on percona.com . In particular, I recommend <a href="http://www.percona.tv/performance/baron-schwartz-high-performance-mysql-from-a-boring-architecture-ppc-2009" rel="nofollow">percona.tv/performance/&hellip;</a> http://stackoverflow.com/questions/1618387/how-to-compare-two-column-values-which-are-comma-separated-values/1618451#1618451 Comment by SquareCog on How to compare two column values which are comma separated values? SquareCog 2009-10-24T23:14:53Z 2009-10-24T23:14:53Z Heh. I think it's good you posted this -- serves as a nice illustration of why one shouldn't design things this way. http://stackoverflow.com/questions/216834/source-control-system-for-small-database-dev-team/216848#216848 Comment by SquareCog on Source control system for small database dev team SquareCog 2009-10-14T17:30:21Z 2009-10-14T17:30:21Z It's been a year since I posted this answer.. Update: I much prefer Mercurial now, even for small teams (currently, I am using it for 3 people). Ability to easily merge/branch, perform local commits for rollback without affecting others, and friendly svn-like commands (unlike git, which I've now also used). Plus it easily syncs with SVN and Git if you are working in parallel with a larger project. http://stackoverflow.com/questions/1552421/what-is-hadoop/1552723#1552723 Comment by SquareCog on What is Hadoop ? SquareCog 2009-10-12T19:45:05Z 2009-10-12T19:45:05Z That's not how Hadoop distributes processing. What you describe would mean that a central processor reads the whole 10TB and sends it over the wire to worker nodes. If you lookup disk read speeds, you will see that this is not feasible. Instead, and I am simplifying here, Hadoop assigns map tasks to nodes based on file offsets (node 1 gets 0-1TB, node 2 gets 1TB-2TB, etc). It uses a distributed file system, HDFS, to store your 10TB so that it's broken up in chunks, and tries to place computation of tasks on the same nodes as those that store the chunks. http://stackoverflow.com/questions/1502836/how-can-i-write-a-cumulative-user-defined-function-in-pig-hadoop Comment by SquareCog on How can I write a cumulative user defined function in Pig (Hadoop)? SquareCog 2009-10-06T19:24:40Z 2009-10-06T19:24:40Z Could you describe what the function does, exactly? I don't understand where [1, 2, (a)] and [1,4,(a,b)] came from -- and if it was generated as part of a sequence, why not [2,3,(x)]? If you are indeed generating records based on some state that requires total order, this isn't very hadoop friendly and you might want to reconsider your method, technology, or both. http://stackoverflow.com/questions/1517303/how-to-use-mysql-index-columns/1517322#1517322 Comment by SquareCog on How to use MySQL index columns? SquareCog 2009-10-04T21:02:04Z 2009-10-04T21:02:04Z Indexes get updated on any modifications to the data, so yes, adding more indexes can lead to degradation in INSERT/UPDATE performance. If indexes didn't get updated, you would get different information depending on whether the optimizer decided to run your query on an index or the raw table -- a highly undesirable situation. http://stackoverflow.com/questions/1498898/sorting-the-values-before-they-are-send-to-the-reducer/1499177#1499177 Comment by SquareCog on Sorting the values before they are send to the reducer. SquareCog 2009-10-02T13:03:35Z 2009-10-02T13:03:35Z Oh, I didn't realize the score was cumulative. Slammed right now, back with ideas in a day or two.