Hacker Newsnew | past | comments | ask | show | jobs | submit | xxqs's commentslogin

nice specs, I would put Debian on it and use as a portable network analyzer. I'll probably do so as soon as it's available in my country


You would have to flash the BIOS to get past the Verified Boot security.


What you say appears to be true, yet quite misleading since there's a simple process, provided by Google and built into the device, for flashing the BIOS (or at least there was on the Series 5 Chromebooks):

http://www.chromium.org/chromium-os/developer-information-fo...


Ah, thanks for the clarification. That'll learn me to parrot information from random people.


hmm. I saw somewhere it was characterized as highly hackable


I'd get something like this instead, and put Debian on it:

http://us.acer.com/ac/en/US/content/model/PT.SJ4P2.001


I'm currently using two types of devices:

-- 10" Acer AspireOne netbooks. They are cheap, and Ubuntu works flawlessly (true before 12.04)

-- ALIX boards from pcengines.ch. They are even cheaper, and low-power, and with RS-232 console port. Perfect if you don't need CPU power.

but for the cases when I need to do packet trace on a Gigabit link, I need to make sure the traffic is low enough for the acer netbook to catch up


a patchset for non-Intel CPU support was around for years, and you guys completely ignored its existence. As well as all the critics towards non-word-aligned data structures and in-memory presentation.

how about redesigning the whole product with all that cash?


David, you're also isolated from silly talks and silly pop music which most of us have to hear around. Also I have no doubt in your career, as you have to be stronger than others to compensate for your challenge.

just trying to find positive sides in your uneasy life :)

I also bookmarked your github page, as there may be some funded work popping up in some future


cool, this might be good for slideshows, especially on IT topics. I used Ubuntu font in my latest slideshow, and it looked quite well


Yay finally a multi-user tablet!


great, this could be useful for mobile applications which require more control on graphics access performance. Like Augmented Reality and such.

Also might be useful for app-dedicated installations. For example, a set of educational games for little kids, leaving no option for misuse :)


yea and especially because we are closer to the hardware we can use the special ARM neon instruction set, at least i think the AMLogic chip supports them


any idea when they plan to start shipping the hardware? I couldn't find much information


as far as i know in about a month or so, there is a post Aaron did on his blog that said i think early may or something like that, but dont quote me on that, it was with the post about the preorder distribution



I'd say mid-Summer at best that you can order one and get it within reasonable time


perhaps, they also announced a 10" version


I'm using timeanddate.com since long time, and plan to continue to do so:) Love their multi-zone meeting planner. Also lots of useful details, such as when the next daylight savings shift is going to happen in a particular location.


can't wait till we get a native Ubuntu tablet. Canonical says they are in the talks with hw vendors.


01:34 here http://www.youtube.com/watch?v=PoOeU1aya0o :)

I've got an Illy cafe machine at home :)


the FAQ mentions that you target x86_64 architecture. Does the server work on i386?

also, I hope it's doing proper memory alignment and endiannes independence? (because Mongo sucks on that)


We use many lock-free datastructures which rely heavily upon the x86_64 architecture. Further, the expanded virtual address space enables us to mmap everything.

All network traffic is packed, and in network byte order.


> the expanded virtual address space enables us to mmap everything

This sounds like a disaster waiting to happen when a node's working set is larger than RAM. Have you considered the impact on performance due to excessive I/O resulting from this kind of overcommit?

Redis performance, for example, suffers tremendously when its database size exceeds the available RAM, which is why the authors advise implementors to cap its database size. The only real difference I can see here is that Redis allocates its storage anonymously, while Hyperdex uses file-backed pages; in either case, performance under memory pressure will largely be governed by how the VM chooses to move pages in and out of its backing store -- behavior the application has no control over.

Optimizing the performance of working sets larger than RAM is hard. Redis had a (thankfully) aborted attempt to do so (the VM is gone in the most recent stable release); and the InnoDB buffer pool in MySQL has been refined for many years and is subject to quite a bit of tuning for specific workloads. (See also http://blog.kennejima.com/post/1226487020/thoughts-on-redis for some thoughtful discussion on the subject.)

You claim on the one hand that Hyperdex was designed to work on data sets larger than RAM, but on the other hand you admit that all the benchmarks were performed with a working set smaller than RAM. I'd like to see comparative benchmarks where the working set is larger than RAM to be convinced.


> This sounds like a disaster waiting to happen

Well, define "disaster". A memory-mapped dataset will cause pathological performance only when there is thrashing: If you are accessing a small percentage of the entire dataset, then unused data will be paged out and remain paged out. If the bulk of data being accessed exceeds the amount of available physical RAM, then you will get I/O trashing.

Memory-mapping is a good alternative to static allocation or a home-grown paging system because it lets the kernel handle the dynamics of allocation, letting your application transparently and gracefully handle RAM tension situation by relinquishing memory space to other apps. Kernels (including Linux and Windows) and CPUs are extremely efficient at paging I/O, much more efficient than a hand-written paging system because there's no need for the application's code to check whether a page is in physical memory — that's handled by the CPU itself.

Of course, any I/O incurred by a too-large dataset will drastically reduce performance compared to in-memory speed. But paging in itself does not necessarily lead to "disaster".


Did you read my entire comment? I specifically said, "when the working set is larger than RAM."

Your observations, while true in the abstract, don't reflect real-world behavior under these conditions.


Working set larger than ram doesn't imply thrashing. It all depends on the page replacement algorithm employed by the OS, and the applications that are running.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: