SquareCog

7,437
reputation
498 views

Registered User

name SquareCog
member for 1 year
seen 23 mins ago
website
location Pittsburgh, PA
age
I am a CS graduate student at CMU. My interests are mainly in the areas of distributed systems and parallel computation (where I am a complete n00b), and databases (where I am a little less of a n00b). If you want to get in touch, ping me on twitter (@squarecog)
2d
answered Which Hadoop product is more appropriate for a quick query on a large data set?
Dec
10
awarded  Nice Answer
Dec
6
awarded  Mortarboard
Dec
4
answered What do you call the extra third table involved in a many-to-many relationship?
Dec
3
awarded  Nice Answer
Dec
2
answered Multiple databases in Rails
Nov
30
awarded  Good Answer
Nov
28
answered MySQL Beach Ball from NOT IN query
Nov
26
accepted How to check if mootools.js is actually being used within a web site?
Nov
26
answered How to check if mootools.js is actually being used within a web site?
Nov
25
comment how to change this sql query
If I am reading the question right, his question isn't "how do I match 15 or 19 or 12 or 1" but "how do I match 19 to a topicId comma-delimited string, given that I have a table function to separate the string". So your solution doesn't work. Plus not needing a desiredIds table is precisely what the IN clause was invented for.
Nov
25
comment how to change this sql query
upvoted. I didn't know about cross apply. This is a sqlserver specific thing, right?
Nov
25
answered how to change this sql query
Nov
25
comment Hadoop examples?
As the author of said article, I want to point out that it was written more from a "getting familiar with Pig" perspective than a "doing log parsing in Hadoop" 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.
Nov
10
accepted How would you implement sequences in Microsoft SQL Server?
Nov
9
comment Caching of Map applications in Hadoop MapReduce?
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.
Nov
9
answered Caching of Map applications in Hadoop MapReduce?
Nov
4
accepted Can Hadoop be restricted to spare CPU cycles?
Nov
2
answered List of large projects built using Perl
Nov
2
comment What language could I use for fast execution of this database summarization task?
you can actually apt-get Pig, just need to get it from archive.cloudera.com -- 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.
Nov
2
comment How to search for text fragments in a database
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.
Oct
28
answered Best open source database for large web based application
Oct
27
revised How to search for text fragments in a database
added 394 characters in body
Oct
27
comment In Perl, how do you access a value from a reference in an array of hashrefs?
I personally find ${$foo} less readable than $$foo :-). Agreed that $foo->[$i] is about the cleanest you are going to get though. Thanks for the tip, SO!
Oct
26
answered In Perl, how do you access a value from a reference in an array of hashrefs?
Oct
26
answered How to search for text fragments in a database
Oct
24
comment What does Sharding means from Database Design Perspective ?
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.
Oct
24
comment What does Sharding means from Database Design Perspective ?
It's roughly equivalent to "pain, pain, pain". But if you must, there is a ton of info on percona.com . In particular, I recommend percona.tv/performance/…
Oct
24
answered How to compare two column values which are comma separated values?
Oct
24
comment How to compare two column values which are comma separated values?
Heh. I think it's good you posted this -- serves as a nice illustration of why one shouldn't design things this way.
Oct
22
answered Can Hadoop be restricted to spare CPU cycles?
Oct
21
accepted How to utilise indexes in SQL
Oct
20
answered Is Hadoop right for running my simulations?
Oct
18
answered Is it good practice to set all database columns as NOT NULL ?
Oct
16
accepted How do I data mine text?
Oct
15
answered How do I data mine text?
Oct
14
comment Source control system for small database dev team
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.
Oct
12
comment What is Hadoop ?
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.
Oct
9
accepted Sorting the values before they are send to the reducer.
Oct
8
accepted DB2: accessing the column by column number
Oct
7
accepted Writing data to Hadoop
Oct
7
answered Writing data to Hadoop
Oct
6
revised Sorting the values before they are send to the reducer.
added 510 characters in body
Oct
6
comment How can I write a cumulative user defined function in Pig (Hadoop)?
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.
Oct
6
revised How can I write a cumulative user defined function in Pig (Hadoop)?
formatting, take 2
Oct
6
awarded  
Oct
4
comment How to use MySQL index columns?
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.
Oct
2
comment Sorting the values before they are send to the reducer.
Oh, I didn't realize the score was cumulative. Slammed right now, back with ideas in a day or two.
Oct
1
comment Sorting the values before they are send to the reducer.
Could you explain why this can result in a different output? I am thinking that the top 10 items globally are definitely contained in the set of top 10 items from each partition (possibly as top 3 from one, top 2 from another, and top 5 from a third -- but they are in there).
Oct
1
revised Sorting the values before they are send to the reducer.
added 595 characters in body; added 8 characters in body; added 14 characters in body