vote up 0 vote down star

Following is the scenario and some proposed solutions. Are there any better solutions?

There is a system A which has to "analyse" lots of URLs. Another system B generates these URLs - currently there are about 10 million of them in a database. Sample schema:

id URL has_extracted
1 abc.com 0
2 bit.ly  1

My solutions are as follows:

Naive solution: Have a perl script/process which feeds the URL (from the database) to system B and updates the has_extracted column The problem with this approach is that it does not scale well.

Solution 2:Split up the database into five(or n) tables . (I am planning to remove the has_extracted column because it seems such a scalability bottle-neck in this scenario.)

Solution 3: Remove the has_extracted column Create another table which maintains/tracks the last URL tracked by each process.

Critiques/Proposed solutions requested. Thanks in advance.

flag

33% accept rate
10 million is peanuts. Fits into RAM easily. – MSalters Nov 3 at 13:19
1  
What evidence are you using to decide that the database is a bottleneck? – APC Nov 3 at 13:23
MSalters - I never said it wouldn't fit into a RAM. Are you suggesting that I read all of those URLs into memory. If yes, how do I maintain the state of a given URL - that it has been analysed. – Bart J Nov 3 at 13:58
APC - If I launch let us say 20 processes, there is no way, I can guarantee that each of the URLs picked by the process will be unique - unless I have read-level locks on the database!? – Bart J Nov 3 at 14:07
@Bart, read my updated answer re process affinity. – Shachar Nov 3 at 14:31

3 Answers

vote up 0 vote down

why doesn't your naive solution scale well? if you're using bulk updates and commit infrequently, you can update 1 million rows per second on any database, without any tuning.

If you want to run multiple instances of system A, you can use a hash function to divide the input data into groups, where each instnace of system A consumes exactly one group.

If you have a constant number of instances of system A, e.g. 17, you can use the function id%17 as the hash function.

link|flag
Then, we are running only one instance of the system A - whereas the resources allow for much more! – Bart J Nov 3 at 12:50
Thanks, Shachar. The trouble with using modulo operator "%" to divide the tasks among processes is that some of the URLs will have to be run again on System A. For eg: I initially run with 10 processes and then add more hardware and decide to run with 20... then, won't system A analyse some of the same URLs again? – Bart J Nov 3 at 15:47
Not if you noted that those URLs were already processed, using the has_extracted column (or another, dedicated column) – Shachar Nov 3 at 16:42
My current implementation is close to what Shachar has suggested. But, I still think there is room for improvement - Perhaps, using messaging (inspired by this - s-expressions.com/2009/04/…) – Bart J Nov 9 at 7:18
vote up 0 vote down

I think this can be as follows:

  1. URL generator (1pcs or many PCS)
  2. URL stack (1pcs)
  3. URL processor (many pcs)

URL generator(s) generates URLs and pushes all of them to stack, say, in database. Or in memory or where you want.

URL processors consult URL stack to give them one next URL to process. URL Stack gives them URL and marks it as a given or deletes it. When URL processor is finished processing an URL, it consults URL stack again and says, that it finished processing URL1 and wants to process URL2. URL Stack can then mark/delete URL1 from it's list and give URL2.

If URL stack becomes a narrow thing, you can just clusterize database.

link|flag
Thanks FractalizeR. Assuming that there are two URL processors X and Y. If the URL stack gives a URL100 to X which does not goes into weird state/takes a long time to complete, etc. then wouldn't the same URL100 be given to Y because URL processor X has not marked that URL as completed. – Bart J Nov 3 at 16:09
this is no different than using the database in the first place, with the has_extracted column (could add another was_picked_up_for_analysis column, though). – Shachar Nov 3 at 16:41
2Bart J: It depends on what you want. Mark URLs as given and only give them again after some time and if they are not marked as completed. – FractalizeR Nov 3 at 22:09
vote up 0 vote down

I somehow feel my problem is similar to the one posted on this link (an extract provided below). The solution in the afore mentioned link and this link - "Databases suck for messaging" have given me a better direction at implementing a better solution.

Extract: So you want to build a system that does jobs. You want the jobs to be able to be run in parallel for speed, but also for redundancy. This system needs to be coordinated so, for example, the same jobs aren't being done twice, the status of every job is easy to see, and multiple servers can run jobs by simply querying the central source.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.