User MarkR - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T22:46:04Zhttp://stackoverflow.com/feeds/user/13724http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1906075/why-do-i-get-n-when-executing-into-outfile-query/1907183#19071830Answer by MarkR for Why do I get \N when executing INTO OUTFILE query?MarkR2009-12-15T12:43:31Z2009-12-15T12:43:31Z<p>The string \N is used to represent a null value. So it's the right answer.</p>
<p>\n is completely different, that is a newline.</p>
http://stackoverflow.com/questions/1906166/inter-process-communication-recommendation/1906429#19064290Answer by MarkR for Inter-Process Communication RecommendationMarkR2009-12-15T10:15:20Z2009-12-15T10:15:20Z<p>I'd use unix sockets, or some library which wraps them. Unix sockets are pretty easy to use.</p>
<p>On the other hand if you have fixed-size status information to report back, you could just have the child processes write it into a file (presumably it's small and you won't fsync it, so it won't generate significant IO workload).</p>
http://stackoverflow.com/questions/1898852/linux-distro-version-to-support-when-releasing-a-software-on-linux/1903618#19036180Answer by MarkR for Linux distro/version to support when releasing a software on Linux.MarkR2009-12-14T21:25:28Z2009-12-14T21:25:28Z<p>This is an issue for your product management team. Once they have determined that producing a Linux version is a desirable idea (i.e. on a cost-benefit basis), then you will need to find out what distros your customers use or want supported.</p>
<p>In principle you can support any but the more you support the more of a headache it will be, so you want as FEW as possible.</p>
<ul>
<li>Support as few OS / architecture combinations as your PM thinks you can get away with</li>
<li>Deprecate OSs / architectures as soon as you can</li>
<li>Only take on new ones if premium support customers demand it, or to get big deals, as per your PM's decision.</li>
</ul>
<p>How hard it is to support them is largely dependent on how complex your product is (esp. dependencies) and how complete its auto-test suite is. Adding more supported OSs ties your hands with respect to library usage, kernel feature usage etc as well as testing, so it's not something you want to be lumbered with long-term.</p>
<p>So in short, it's not a software engineering issue, but a product management one.</p>
http://stackoverflow.com/questions/1902690/how-to-build-a-server-that-accepts-many-thousands-of-persistent-network-connectio/1903554#19035540Answer by MarkR for How to build a server that accepts many thousands of persistent network connections?MarkR2009-12-14T21:15:54Z2009-12-14T21:15:54Z<p>You should be able to do this easily with any framework which is decent. We use Twisted which is good (Assuming you understand python and asynchronous programming), if a little weird to understand.</p>
<p>Asynchronous programming is pretty much a given, because you will probably NOT want to start 600k threads.</p>
http://stackoverflow.com/questions/1888160/distinguish-java-threads-and-os-threads/1896279#18962790Answer by MarkR for Distinguish Java threads and OS threads?MarkR2009-12-13T11:51:41Z2009-12-13T11:51:41Z<p>I think it's extremely tricky.</p>
<p>You can of course, trivially distinguish threads within a Java process and those within a non-Java process, but telling apart Java and non-Java ones WITHIN a Java process is much harder.</p>
<p>Why do you want to do this?</p>
http://stackoverflow.com/questions/1893066/create-stored-procedure-in-mysqladmin/1894523#18945230Answer by MarkR for Create stored procedure in mysqladmin?MarkR2009-12-12T20:00:16Z2009-12-12T20:00:16Z<p>Ignore PHPMyAdmin, it is as useless as a motorcycle-ashtray. Log in to your shell and use the mysql command line interface, this is the only supportable, correct way of scripting mysql.</p>
<p>The DELIMITER command is not a mysql server command, it is a mysql command-line client command. To use it you must use the proper mysql command line client.</p>
<p>It is difficult (although not impossible) to create stored procs otherwise.</p>
http://stackoverflow.com/questions/1888113/is-there-always-room-to-improve-optimize-the-code/1888159#18881590Answer by MarkR for Is there always room to improve/optimize the code?MarkR2009-12-11T13:44:04Z2009-12-11T13:44:04Z<p>What will happen is, you'll get diminishing returns on code optimisation.</p>
<p>You'll start off making easy, maintainable optimisations which make a big difference for little risk / effort.</p>
<p>Then you'll start making harder, but still maintainable optimisations which make a medium-sized difference with some effort / risk.</p>
<p>Then you'll be making really difficult optimisations (for example, rewrite bits of the app in a different language, use complicated error-prone libraries to get more out of the hardware, or refactor the application to be more concurrent) which significantly decrease maintainability, but make hardly any improvement.</p>
<p>You'll need to decide, based on the kind of optimisations that you can make, whether your money is better spent getting better hardware (hardware naturally tends to increase in performance for a given price / power consumption over time).</p>
<p>Also if you have reached a point where performance is sufficient, then you should be able to just STOP unless you anticipate your workload getting much harder in the not-too-distant future.</p>
http://stackoverflow.com/questions/1879770/a-visual-patch-tool-for-linux/1887647#18876470Answer by MarkR for A visual patch tool for LinuxMarkR2009-12-11T12:06:14Z2009-12-11T12:06:14Z<p>I'd use meld.</p>
<p>Create two copies of the files, one without and another with the patch. Use meld to compare them, and you can see exactly what the patch is changing and make changes as necessary.</p>
<p>Seriously, why is this so hard?</p>
http://stackoverflow.com/questions/1868102/order-by-rand-alternative/1880508#18805081Answer by MarkR for ORDER BY RAND() alternativeMarkR2009-12-10T11:59:02Z2009-12-10T11:59:02Z<p>This is going to be a significantly nasty query if it needs to sort a large data set into a random order (which really does require a sort), then discard all but the first 40 records.</p>
<p>A better solution would be to just pick 40 random records. There are lots of ways of doing this and it usually depends on having keys which are evenly distributed. </p>
<p>Another option is to pick the 40 random records in a batch job which is only run once per hour (or whatever) and then remember which ones they are.</p>
http://stackoverflow.com/questions/1880461/is-there-a-better-way-to-assign-permissions-to-temporary-tables-in-mysql/1880469#18804690Answer by MarkR for Is there a better way to assign permissions to temporary tables in MySQL?MarkR2009-12-10T11:51:28Z2009-12-10T11:51:28Z<p>MySQL grants are independent of the object actually <em>existing</em> - you can grant on tables which don't (yet) exist and those permissions would be assigned to a table if it were to be created. This means that you can grant a user permission to create a specific table.</p>
<p>I'd be tempted to create a database just for temp tables, (called, say, temp) and grant the users access to that database. Database-based permissions are much easier to manage than per-object ones.</p>
http://stackoverflow.com/questions/1880215/socket-send-error/1880430#18804300Answer by MarkR for Socket Send errorMarkR2009-12-10T11:42:52Z2009-12-10T11:42:52Z<p>To detect an error you SHOULD be checking that send returns -1. I don't know what SOCKET_ERROR is, but if it's -1, then the above code won't work right anyway.</p>
<p>Assuming you do get -1 from send(), then an error code will be in errno. It is not necessary to do a getsockopt to retrieve it.</p>
<p>There is no error code 196, so I'd be deeply suspicious about your error handling.</p>
<p>Also, if send() fails, you should probably not close the socket. You haven't specified either the address family or socket type, but I'm assuming AF_INET and SOCK_DGRAM respectively (i.e. UDP)</p>
http://stackoverflow.com/questions/1855226/mysql-count-rows-performance/1867926#18679260Answer by MarkR for MySQL count rows performanceMarkR2009-12-08T16:03:26Z2009-12-08T16:03:26Z<p>If "pk" is the primary key, there can only be one record, so the answer is going to be either 0 or 1, so you don't really need to count them anyway.</p>
<p>But yes, the latter.</p>
<p>InnoDB does not JUST need to check the index, it also needs to check that the row(s) are visible to the current transaction, because of MVCC. But this is a detail. It'll use a covering index anyway (which is irrelevant if pk is the primary key, as that is always clustered)</p>
http://stackoverflow.com/questions/1865501/c-program-on-linux-to-exhaust-memory/1866833#18668330Answer by MarkR for C Program on Linux to exhaust memoryMarkR2009-12-08T13:02:34Z2009-12-08T13:02:34Z<p>On a 32-bit Linux system, the maximum that a single process can allocate in its address space is approximately 3Gb.</p>
<p>This means that it is unlikely that you'll exhaust the memory with a single process.</p>
<p>On the other hand, on 64-bit machine you can allocate as much as you like.</p>
<p>As others have noted, it is also necessary to initialise the memory otherwise it does not actually consume pages. </p>
<p>malloc will start giving an error if EITHER the OS has no virtual memory left OR the process is out of address space (or has insufficient to satisfy the requested allocation).</p>
<p>Linux's VM overcommit also affects exactly when this is and what happens, as others have noted.</p>
http://stackoverflow.com/questions/1848035/on-the-design-of-zero-copy-memory-allocators-used-in-high-volume-fast-path-code/1849936#18499362Answer by MarkR for On the Design of zero-copy Memory allocators used in high volume fast-path code.MarkR2009-12-04T22:01:15Z2009-12-04T22:01:15Z<p>After reading others' comments, it sounds like using a fixed pool of objects and allocating ownership of them may be a better idea than trying to mess with allocators.</p>
<p>Presumably you have a large number of threads, so any allocator would need to be doing quite a bit of locking; a large number of small allocs/ frees sounds undesirable.</p>
<p>If you think you've got enough memory to keep reasonable sized pools per thread, you can just allocate a fixed pool per thread which contains enough IPC objects to handle all the requests that thread will have outstanding at one time, and allocate them per-thread from this pool with no locking whatsoever, marking them for reuse once those requests are complete.</p>
<p>Once you move the other processes off-box, the problem becomes completely different as zero-copy is no longer an option (the data clearly need to be copied at least once to reach another machine) so I think you'll have other issues.</p>
http://stackoverflow.com/questions/1837491/retrieve-sd-card-serial-number-and-manufacturer-under-linux/1839393#18393930Answer by MarkR for Retrieve SD Card Serial Number and Manufacturer under LinuxMarkR2009-12-03T11:36:44Z2009-12-03T11:36:44Z<p>You may be able to get some info out of "hdparm"</p>
<pre><code>hdparm -i /dev/sda
</code></pre>
<p>Gives a bunch of info about /dev/sda which includes its serial number. In my test case, this was a hard drive, but presumably the same may work for a SD card (which looks a lot like a disk to the OS)</p>
http://stackoverflow.com/questions/1837934/login-logout-and-duration-time-in-php-and-mysql/1838317#18383170Answer by MarkR for Login, logout and duration time in php and mysql?MarkR2009-12-03T07:47:33Z2009-12-03T07:47:33Z<p>You can't rely on receiving an event for the user logging out, if they simply close their browser, or disappear from the internet.</p>
<p>In this case you'll have to have a session timeout of some kind, and record the logout when your app realises their session is too old.</p>
<p>If this is a real requirement, then I'd say you need a "cron" job monitoring the sessions for timeout. When a session has timed out, if the were logged on, it then records a "logout" event for that user.</p>
<p>Note that you can't use (for example) ASPNET's Session_End event, because that won't be reliably called either (for example if the server process restarts).</p>
<p>Another option is to add the logout time next time that user logs on - when they log on, you check for old sessions and assume that any which weren't closed lasted for a fixed amount of time since the last page hit.</p>
<p>That's really all you can do.</p>
http://stackoverflow.com/questions/1830830/advantages-disadvantages-of-pconnect-option-in-codeigniter/1831310#18313102Answer by MarkR for Advantages / Disadvantages of pconnect option in CodeIgniterMarkR2009-12-02T07:59:26Z2009-12-02T07:59:26Z<p>Just look up general best practices for persistent connections. My suggestions.</p>
<ul>
<li>By default, DO NOT</li>
<li>If you have:
<ul>
<li>Dedicated web server and database hardware in production</li>
<li>and have tuned the web server and database correctly</li>
<li>and have an accurate production-like test environment</li>
<li>And still think your performance problems are caused by database connection time,</li>
</ul></li>
</ul>
<p>CONSIDER turning it on </p>
<p>Persistent connections can cause</p>
<ul>
<li>Bugs because some connection state persisted unintentionally (this is a biggie!)</li>
<li>Database connection limits to be exceeded</li>
<li>Database performance to drop because of lots of ram used by the many (mostly idle) connections</li>
<li>Bugs because connections have gone "stale" and the app didn't notice</li>
</ul>
<p>But CAN</p>
<ul>
<li>Reduce latency on initial connection</li>
</ul>
<p>If you think that connection latency is causing a problem, consider turning it on in your performance test system and <em>measuring</em> the impact.</p>
http://stackoverflow.com/questions/1828535/fastest-socket-method-for-a-lot-of-data-between-a-lot-of-files/1829503#18295030Answer by MarkR for Fastest socket method for a lot of data between a lot of filesMarkR2009-12-01T22:51:21Z2009-12-01T22:51:21Z<p>Don't optimise your program prematurely.</p>
<p>Assuming it isn't a premature optimisation, the easiest thing to do is just keep all the data in memory. You can mmap() them if you like, or just load them in at startup time. Sending stuff that's already in memory is a no-brainer.</p>
<p>Having said that, trying to multiplex lots of things with (e.g.) epoll can be a bit of a headache, can you not use something someone's already written?</p>
http://stackoverflow.com/questions/1829383/spam-filter-logic/1829483#18294830Answer by MarkR for spam filter logicMarkR2009-12-01T22:47:32Z2009-12-01T22:47:32Z<p>Provided you aren't Google, or Hotmail, you're not going to have any problems.</p>
<p>If your site is not likely to be targetted by spammers who actually engineer some custom code, it should be easy to avoid them.</p>
<p>I'd either have some Javascript-filled field - which is fine, unless you want people to be able to fill the form legitimately without Javascript, or, my favourite, a field which needs to be left blank.</p>
<p>Spammers rarely seem to leave fields blank, especially if they're called "email" or "state" or "country" or such like. A spambot can't resist putting some junk in there.</p>
<p>Putting a few of those in (ideally in a div with display:none on) will catch most of them.</p>
<p>Then you can usually find out what's a spammer because he adds a zillion links in the comments field :)</p>
http://stackoverflow.com/questions/1815061/database-sharding-strategy/1816604#18166041Answer by MarkR for database sharding strategyMarkR2009-11-29T20:03:07Z2009-11-29T20:03:07Z<p>I think there is a 99.9% chance that you do not need sharding.</p>
<p>You need sharding if:</p>
<ul>
<li>Your database insert /update rate is close to, or is exceeding, the capacity of the highest spec server you can cost-effectively buy AND</li>
<li>You are already farming out most of your read queries, reporting, backups etc on to read-only replicated slaves</li>
<li>You have done functional partitioning to move any nonessential or unrelated update-heavy workloads off your master server</li>
</ul>
<p>If you cannot definitely say "yes" to all three of the above, you do not need to shard. </p>
<p>Read</p>
<p><a href="http://www.mysqlperformanceblog.com/2009/08/06/why-you-dont-want-to-shard/" rel="nofollow">http://www.mysqlperformanceblog.com/2009/08/06/why-you-dont-want-to-shard/</a></p>
http://stackoverflow.com/questions/1816441/sql-design-big-table-thread-access-serialization/1816525#18165253Answer by MarkR for SQL Design: Big table, thread access serialization.MarkR2009-11-29T19:39:20Z2009-11-29T19:39:20Z<p>This table is tiny. It's doesn't even qualify as a "medium sized" table. It's trivial.</p>
<p>You can be full table scanning it 30 times per second, you can be copying the whole thing in ram, no server is going to be the slightest bit bothered.</p>
<p>If your data fits in ram, databases are fast. If you don't find this, you're doing something REALLY WRONG. Therefore I also think the problems are all on the client side.</p>
http://stackoverflow.com/questions/1816402/how-can-i-do-an-http-redirect-in-c/1816455#18164551Answer by MarkR for How can I do an HTTP redirect in C++MarkR2009-11-29T19:10:04Z2009-11-29T19:10:04Z<p>Seriously, this should not be a problem. Suggestions for how to proceed:</p>
<ul>
<li>Get the source code for Apache and look at what it does</li>
<li>Build a debug build of Apache and step through the code in a debugger in such a case; examine which pieces of code get run.</li>
<li>Install Wireshark (network analysis tool), Live HTTP Headers (Firefox extension) etc, and look at what's happening on the network</li>
<li>Read the relevant RFCs for HTTP - which presumably you should be keeping under your pillow anyway if you're writing a server.</li>
</ul>
<p>Once you've done those things, it should be obvious how to do it. If you can't do those things, you should not be trying to develop a web server in C++.</p>
http://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1815710#18157106Answer by MarkR for I am new to threads, What does this compile error mean?MarkR2009-11-29T14:47:05Z2009-11-29T14:47:05Z<p>It's nothing to do with threads, it's a normal C++ error, you're just passing an incompatible type of function pointer.</p>
<p>A function pointer is not the same as a member instance function pointer, even if their signature is the same; this is because there is an implicit reference to *this passed. You can't avoid this.</p>
http://stackoverflow.com/questions/1815004/how-can-i-compile-mysql-5-1-on-a-64-bit-centos-machine-in-order-to-achieve-high-p/1815510#18155101Answer by MarkR for How can I compile MySQL 5.1 on a 64 bit CentOS machine in order to achieve high performance?MarkR2009-11-29T13:12:26Z2009-11-29T13:12:26Z<p>Don't do it. A database with high performance is no use if it doesn't work correctly, the MySQL / Sun builds are WELL TESTED.</p>
<p>Your build is not.</p>
<p>I can't imagine you getting a significant amount more performance than Sun anyway. They compile the code correctly for your platform; the subject the binaries to a barrage of auto-tests and smoke tests, as well as trying running it with real applications BEFORE they release them.</p>
<p>You will probably get more performance increases from IMPROVING YOUR OWN CODE rather than trying to improve on Sun's builds. And it will carry less risk, because you won't be risking major regressions in database behaviour.</p>
<p>If you have performance problems, your time is best spent improving your own code and doing testing. Developer time is a very, very expensive resource!</p>
http://stackoverflow.com/questions/1813260/mysql-locking-question/1813884#18138840Answer by MarkR for mysql locking questionMarkR2009-11-28T21:56:32Z2009-11-28T21:56:32Z<p>MySQL's GET_LOCK function gets named user locks, which are an extra feature MySQL provides over and above anything to do with tables.</p>
<p>No tables are involved so it does not invoke the storage engine and has nothing to do with myisam. GET_LOCK is available on all supported mysql versions regardless of what engines are used.</p>
http://stackoverflow.com/questions/1810915/is-safe-to-use-x-header-in-a-http-response/1810934#18109345Answer by MarkR for Is safe to use "X-..." header in a HTTP response?MarkR2009-11-27T23:06:54Z2009-11-27T23:06:54Z<p>A client proxy could do anything it wanted, but in general would not strip any headers.</p>
<p>Headers starting with an X- are typically reserved for nonstandard usage (i.e. no future standard will introduce a header starting X-) but a proxy may understand them and choose to modify them as it wants.</p>
http://stackoverflow.com/questions/1810883/what-is-mysql-primary-key1-key2/1810921#18109211Answer by MarkR for What is MySQL primary (key1, key2)MarkR2009-11-27T23:01:13Z2009-11-27T23:01:13Z<p>What you're describing is a composite primary key, which is acceptable and a sensible pattern. A lot of applications use an artificial primary key (usually an int or guid) when there is a perfectly acceptable candidate key already. This adds work for the database, but in some cases makes the application easier to write.</p>
<p>There is no real reason to add an extra primary key when there is already a candidate. I'd lean towards not doing so.</p>
<p>You also gain performance in some cases by not adding an unnecessary auto-generated primary key column, and it reduces the space usage of your database (albeit only slightly)</p>
http://stackoverflow.com/questions/1804242/about-mysql-index-multi-column-or-one/1804668#18046680Answer by MarkR for about mysql index, multi-column or one?MarkR2009-11-26T16:35:37Z2009-11-26T16:35:37Z<p>You want an index which can be RANGE SCANNED. Use EXPLAIN (see the doc), it is your friend.</p>
<p>An index on column_a,column_b should be able to be range scanned in this case, but always check EXPLAIN. Use EXPLAIN on a non-production database with the same schema and volume/distribution of data as your production system (will be)</p>
http://stackoverflow.com/questions/1803895/multiple-application-instances-on-the-same-database/1804632#18046321Answer by MarkR for Multiple application instances on the same databaseMarkR2009-11-26T16:28:14Z2009-11-26T16:28:14Z<p>This is called a multi-tenant application and lots of people run them; see</p>
<p><a href="http://stackoverflow.com/questions/tagged/multi-tenant">multi tenant tag</a></p>
<p>For some other peoples' questions</p>
http://stackoverflow.com/questions/1797113/why-does-multithreaded-file-transfer-improve-performance/1802327#18023272Answer by MarkR for Why does multithreaded file transfer improve performance?MarkR2009-11-26T08:40:12Z2009-11-26T08:40:12Z<p>A naive "copy multiple files" application will copy one file, then wait for that to complete before copying the next one.</p>
<p>This will mean that an individual file CANNOT be copied faster than the network latency, even if it is empty (0 bytes). Because it probably does several file server calls, (open,write,close), this may be several x the latency.</p>
<p>To efficiently copy files, you want to have a server and client which use a sane protocol which has pipelining; that's to say - the client does NOT wait for the first file to be saved before sending the next, and indeed, several or many files may be "on the wire" at once.</p>
<p>Of course to do that would require a custom server not a SMB (or similar) file server. For example, rsync does this and is very good at copying large numbers of files despite being single threaded.</p>
<p>So my guess is that the multithreading helps because it is a work-around for the fact that the server doesn't support pipelining on a single session.</p>
<p>A single-threaded implementation which used a sensible protocol would be best in my opinion.</p>
http://stackoverflow.com/questions/1902690/how-to-build-a-server-that-accepts-many-thousands-of-persistent-network-connectioComment by MarkR on How to build a server that accepts many thousands of persistent network connections?MarkR2009-12-14T21:19:51Z2009-12-14T21:19:51ZIf you are serving 600k clients, 10 boxes is NOT a waste of money, as you will probably want more than that anyway (in practice). Talk to your operations team, who should probably know something about capacity management if they are planning to operate this application. http://stackoverflow.com/questions/1893066/create-stored-procedure-in-mysqladmin/1893081#1893081Comment by MarkR on Create stored procedure in mysqladmin?MarkR2009-12-13T11:42:16Z2009-12-13T11:42:16ZThe problem is that you are using phpmyadmin. Stop. Use the mysql command line client.http://stackoverflow.com/questions/1882702/highly-concurrent-multi-threaded-application-requires-hardwareComment by MarkR on Highly concurrent multi-threaded application requires hardware.MarkR2009-12-10T23:21:10Z2009-12-10T23:21:10ZI can't imagine wanting to use a 32-bit OS on such a system. Are you sure this is really a requirement? It will wreck your ability to address the amount of memory found on modern systems. Is there a real requirement which forbids a 64-bit OS?http://stackoverflow.com/questions/764210/what-are-the-disadvantages-of-having-many-indices/764727#764727Comment by MarkR on What are the disadvantages of having many indices?MarkR2009-12-10T11:53:00Z2009-12-10T11:53:00ZNo, the cost of an index in disc space is not "generally trivial". It is possible to use up a lot of space with indexes.http://stackoverflow.com/questions/1848035/on-the-design-of-zero-copy-memory-allocators-used-in-high-volume-fast-path-code/1849936#1849936Comment by MarkR on On the Design of zero-copy Memory allocators used in high volume fast-path code.MarkR2009-12-06T21:50:38Z2009-12-06T21:50:38ZI'm afraid I don't really quite understand any of the above (I know nothing about Erlang) but I hope my comments were helpful :)http://stackoverflow.com/questions/1833687/sql-to-update-a-table-only-if-that-table-exists-in-the-database/1833745#1833745Comment by MarkR on SQL to update a table only if that table exists in the databaseMarkR2009-12-02T16:08:48Z2009-12-02T16:08:48ZYou can't actually use that syntax in arbitrary scripts in mysql, so it won't work.http://stackoverflow.com/questions/1831092/selecting-rows-that-are-older-than-current-date-in-mysql/1831099#1831099Comment by MarkR on selecting rows that are older than current date in mysqlMarkR2009-12-02T08:01:34Z2009-12-02T08:01:34ZThat works provided your time zone never changes; for example daylight saving time.
But if you're sane you'll set all your servers clocks to UTC.http://stackoverflow.com/questions/1797113/why-does-multithreaded-file-transfer-improve-performance/1802327#1802327Comment by MarkR on Why does multithreaded file transfer improve performance?MarkR2009-12-01T13:00:30Z2009-12-01T13:00:30ZMy point was not that the protocol is badly designed; it's that its design doesn't lend itself to this particular use case.
The protocol design is sufficient to implement the requirement to provide transparent remote file access; it just doesn't work too well for copying many small files over a link with latency - you need something else for that.http://stackoverflow.com/questions/1816441/sql-design-big-table-thread-access-serialization/1816525#1816525Comment by MarkR on SQL Design: Big table, thread access serialization.MarkR2009-11-30T12:50:04Z2009-11-30T12:50:04ZIt will happen automatically, and then stay in memory unless something (e.g. access to another big table which pulls lots of pages in) forces it to throw it out.http://stackoverflow.com/questions/1815061/database-sharding-strategy/1816604#1816604Comment by MarkR on database sharding strategyMarkR2009-11-30T12:49:03Z2009-11-30T12:49:03ZI don't think anybody can tell you that, nor can you if you haven't got detailed information on exactly which parts of your application are contending with the database the most. If you're sharding you will presumably have exhausted most other avenues. Depending on the access pattern, 1Tb isn't that big, and may still work on 1 box (with relevant failovers etc)http://stackoverflow.com/questions/1816904/segmentation-fault-at-end-of-the-program/1816921#1816921Comment by MarkR on segmentation fault at end of the programMarkR2009-11-29T21:59:11Z2009-11-29T21:59:11ZYes, you're trashing the stack so that when main returns the program counter gets trashed, I imagine.
Run it with Valgrind and you'll see.http://stackoverflow.com/questions/1816573/how-to-do-this-with-pure-mysql/1816591#1816591Comment by MarkR on how to do this with pure mysql?MarkR2009-11-29T21:52:09Z2009-11-29T21:52:09ZThat is ok but will only do what the OP wanted if there is a unique index on those columns; it can't be used for arbitrary conditions.http://stackoverflow.com/questions/1815705/i-am-new-to-threads-what-does-this-compile-error-mean/1815710#1815710Comment by MarkR on I am new to threads, What does this compile error mean?MarkR2009-11-29T19:19:09Z2009-11-29T19:19:09Z@rossoft yes that would work.http://stackoverflow.com/questions/1807197/the-procedure-works-in-mysql-5-but-fails-in-mysql6-why/1807266#1807266Comment by MarkR on The procedure works in MySQL 5, but fails in MySQL6, why?MarkR2009-11-27T13:10:04Z2009-11-27T13:10:04ZThe stuff for MySQL 6.0 was moved into either earlier or later releases; the work done is still going to be released eventually. MySQL 6.0 will never exist in non-alpha version.http://stackoverflow.com/questions/1804242/about-mysql-index-multi-column-or-one/1804257#1804257Comment by MarkR on about mysql index, multi-column or one?MarkR2009-11-26T16:34:28Z2009-11-26T16:34:28ZNo, it should not "proceed to the next row if it doesn't match"; you want an index which it will RANGE SCAN.