Slashdot Mirror


User: Sxooter

Sxooter's activity in the archive.

Stories
0
Comments
467
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 467

  1. I'd settle for a linux client that doesn't crash on Skype Is Evaluating Adding Typing Suppression Feature · · Score: 1

    I'm stuck on skype v4.0.0.8 because the latest linux skype client crashes literally every minute or so. And I'm not the only one who has this problem.

  2. Re: ORACLE = One Raging Asshole Called Larry Ellis on Oracle Discontinues Free Java Time Zone Updates · · Score: 1

    Sadly they don't include php with any of the pre-compiling accelerators like Eaccelrator. It's pretty common to get 5 to 10x performance increase using this.

  3. Re:And now Google Drive is down... on Ask Slashdot: Which Google Project Didn't Deserve To Die? · · Score: 1

    My Chromebook is working just fine. Seeing as it runs Chrubuntu.

  4. Re:Oracle doesn't care about developer people on Is MySQL Slowly Turning Closed Source? · · Score: 1

    OK it's pretty obvious you are mixing up copyright and licensing. Innodb is owned outright by Oracle. They've owned it and the copyright on it for a VERY long time. It was released under both commercial and GPL licenses a long time ago. The code already released under the GPL will remain under the GPL forever. It can't be "revoked" as the previous poster supposed.

    Now, Oracle and update Innodb code all they want, and provide it only as binaries if they so desire. BUT they cannot revoke a previous license on the code that's already out there.

  5. Re:Postgres on Is MySQL Slowly Turning Closed Source? · · Score: 1

    The CMS was custom built for the application.

  6. Re:Close-Sourcing Open-Source Software is Fail on Is MySQL Slowly Turning Closed Source? · · Score: 1

    That's actually a pretty big thing to be missing. All my production pgsql servers log ddl (and username host etc) and we can identify exactly when a table changed and by who, in case we get something that breaks something. this is true on all dev, testing, QA, staging and production machines. Not knowing who issued a statement, especially ddl, is a serious lack in thelogging department.

  7. Re:Just use Postgresql on Is MySQL Slowly Turning Closed Source? · · Score: 1

    What version of MySQL started supporting this? Up until 5.1 it just silently ignored the keywords and didn't implement the cascades for real.

  8. Re:Oracle doesn't care about developer people on Is MySQL Slowly Turning Closed Source? · · Score: 1

    How exactly do you revoke a GPL license?

  9. Re:Postgres on Is MySQL Slowly Turning Closed Source? · · Score: 2, Informative

    I've run two big sites on PostgreSQL now, the first is a content management system for schools across the US with ~3M users with 1K to 3K active at the same time. 300G db on machines with 128G RAM, 34 15kSAS drives, HW RAID controllers and 48 AMD opteron cores. We ran a very aggressive autovacuum schedule, 8 threads with 1ms sleep and max work limit in the 5000 or higher range. We ran several other services on top of pgsql as well, a search engine, stats db, and session servers on it there. Each setup somewhat differently, all 24/7 and quite reliable. The main ~300G cms database was replicated by Slony, since it was setup some time ago when slony was the only real reliable etc replication engine at the time we started. Honestly, it was great performance wise, and reliability wise. Working around Slony for ddl updates is a gigantic pain in the ass tho. Things have gotten better.

    The second site, in my current job is also 24/7 and on big hardware but is used as a core db for a storage system consisting of literally thousands of TB sized HDs. The actual db is only a fraction of our storage.

    Once you teach your developers to be db centric (start with the data model and work upwards) and the little tricks of postgresql they usually are pretty happy with it. But if you don't have a pg specialist on staff the developers often hate using pgsql because it's NOT what they're used to.

    An example is when I was teaching a new guy to use it and he was bitching at how poor insert performance was. He had a 10k file to import and it was about 10% imoprted after 10 minutes. I had him truncate the table and wrap the inserts in begin;commit; and the whole thing imported in about 10 seconds. This was back on pg 7.1 and php3.0 days. Pg has gotten much faster but the ratio of 10k transactions / individual inserts versus batching all 10k together is still quite large.

    The fact that you can wrap anything except create / drop database / table or setval/nextval in a transaction and roll it back makes it amazing for development work. You can wrap some huge db updates in a transaction and if there's an error anywhere the whole thing rolls back and you can try again without cleaning up a half-updated db.

    It's not perfect, but once you get a handle on performance tuning, autovacuum tuning, and replication it's pretty amazing both performance and reliability wise.

  10. Re:Sennheisers rock. on Ask Slashdot: Best Headphones, Earbuds, Earphones? · · Score: 1

    Actually HD280s go on sale for $65 or so all the time on NewEgg and go for $100 almost everywhere, like Amazon etc.

  11. Re:Mechwarrior on Using Mech Combat To Hone Engineering Skills · · Score: 1

    Last line should be "All systems nominal." But it's close

  12. Re:You have got on US Senator Proposes Bill To Eliminate Overtime For IT Workers · · Score: 3, Insightful

    Newt Gingrich made 1.8Million consulting after he left office for a job where he can't even remember what he did. Do you really think these people need the salary they get for being in Congress?

  13. Re:I am planning to move to NC on US Senator Proposes Bill To Eliminate Overtime For IT Workers · · Score: 2

    QUOTE: There's already a glut of IT workers.

    Have you tried hiring truly qualified 24/7 ops type IT people lately? They are, and will continue to be, hard to find.

  14. Re:Pushing to look at alternatives, really? on Oracle May 'Fork Itself' With MySQL Moves · · Score: 1

    outer joins CAN'T be reordered...

  15. Re:Pushing to look at alternatives, really? on Oracle May 'Fork Itself' With MySQL Moves · · Score: 1

    PostgreSQL will reorder joins as it pleases to make more efficient joins. Note that outer joins can be reordered because changing their order changes the meaning of the joins.

  16. Re:Pushing to look at alternatives, really? on Oracle May 'Fork Itself' With MySQL Moves · · Score: 1

    QUOTE: The worst part was differences with dates and the pickyness of postgres with joins

    Urgh. The ANSI standard very clearly states that if you mix implicit and explicit joins, the explicit joins go first. So, this query:

    select * from a,b join c on (a.id=c.id)

    won't work in any compliant database, because a.id doesn't exist yet when joining b to c. And guess what happened in MySQL v5.1? That type of join started throwing an error just like pgsql does.

  17. Catch on? Like this? on Type Safety Coming To DB Queries · · Score: 1

    select 1 where '2001-01-02 00:00:00'::text between '2001-01-01 00:00:00'::timestamp and '2001-01-05 00:00:00'::timestamp;
    ERROR: operator does not exist: text >= timestamp without time zone
    LINE 1: select 1 where '2001-01-02 00:00:00'::text between '2001-01...
                                                                                                            ^
    HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.

    Hey whadya know, postgres has been doing this for years now.

  18. Re:Samba has also been removed from server on Apple Removes MySQL From Lion Server · · Score: 1

    RMS is not anti-profit / anti-commercial. He is anti-closed source. They are not the same thing.

  19. Video Toaster too! on Napkins and the History of Ethernet, Compaq, Facebook · · Score: 1

    Anybody old enough to remember the 1980s might remember the Video Toaster. It was designed on the back of a napkin as well.

  20. arno iptables on Ask Slashdot: Best Connect Scheme For a 2-ISP Household? · · Score: 1

    I setup a dual homed network system in about 5 minutes with arno iptables in ubuntu. Super simple and very reliable and easy to setup.

  21. Re:And this opinion has nothing to do with the fac on Facebook Trapped In MySQL a 'Fate Worse Than Death' · · Score: 1

    Stonebraker abandoned first Ingress as hopelessly broken to build Postgres. Which he then abandoned as hopeless broken to move on to various projects like the more recent VoltDB. He left Postgres a VERY long time ago, and hasn't been involved in the project since well before pg 7.0 hit the scene.

  22. Re:OMGWTFBBQ on Using Old Linksys Routers to Control BBQ Smokers · · Score: 1

    Had the same problem with a WZR. Replaced it with a Netgear WNR3500L and it's been rock solid and fast.

  23. Re:Coming up next, feel-o-vision on Practical "Smell-o-Vision" System Being Developed · · Score: 1

    Stay tuned for our feature presentation, Deep Throat

  24. Re:Opportunities on Taiwanese OEMs Consider ARM Products For Windows 8 · · Score: 1

    Add that Microsoft has a poor track record for building an architecture neutral OS, and fell back so easily to the X86 architecture back in the 90s. How many versions of windows will be available for the ARM or another architecture? win8, maybe 9? Then they drop support if there aren't enough users.

    This is one place where Open Source and Free software excel. As long as the users of that architecture are willing to pony up the talent, they are guaranteed the access they need to make it work. With Windows, if MS doesn't wanna support it, it won't be supported period. If a business decision at MS says that throwing ARM users under the bus makes economic sense, then they'll do it.

  25. Re:From the article.... on Oracle Releases MySQL 5.5 · · Score: 4, Interesting

    No, the ANSI SQL way to do this is to use MERGE. Unfortunately, pgsql doesn't support that yet. It's on the todo list so I'm sure if someone got out their checkbook and wrote the pg developers a check we'd see it soon enough.