Viewing profile — HarrisonFisk
HarrisonFisk
HN member- Joined
- Wed, Mar 02, 2011, 3:48 PM UTC
- HN karma
- 228
- Public activity
- 53 items
- HN profile
- View on Hacker News ↗
About HarrisonFisk
No profile information was provided.
Recent public activity
-
comment
Comment #39628402
https://engineering.fb.com/2024/03/06/security/whatsapp-mess...
-
comment
Comment #36847461
It wasn’t the top selling car. That seems to be something Elon made up: https://www.autoweek.com/news/industry-news/a44600661/is-tes...
-
comment
Comment #29360750
The big tech companies (ie. FANG) all have huge demand for principal+ engineers and know how to scope and support them properly. The size means they have lots of them which reduces…
-
comment
Comment #27925129
Direct source is available at: https://github.com/facebook/mysql-5.6 The social graph is indeed stored in MySQL via TAO. A recent white paper about MyRocks is: https://research.fb.…
-
comment
Comment #27925099
The code is open source: https://github.com/facebook/mysql-5.6
- comment
-
comment
Comment #25391393
https://en.wikipedia.org/wiki/Anti-Mask_League_of_San_Franci...
-
comment
Comment #22529128
Facebook doesn't have engineering titles for exactly this reason.
-
comment
Comment #13538439
This is every day at Facebook! https://code.facebook.com/posts/1007323976059780/continuous-...
-
comment
Comment #13504784
If you find this book interesting, a good video which talks about Production Engineering at Facebook and talks a bit about Google SRE: https://www.youtube.com/watch?v=ugkkza3vKbc
-
comment
Comment #7491154
There is nothing that prevents these from being implemented for PostgreSQL. In fact, they have already done a lot of optimizations that close the gap, such as covering indexes. Bef…
-
comment
Comment #7491138
Right, PG calls the REDO log the WAL (for most purposes they are the same thing). I did not know that 9.4 can do partial page writes to the WAL now. Guess I will have more reading …
-
comment
Comment #7488498
(I am a manager of the Data-Perf team at FB which deals with lots of different DB technologies) MySQL (specifically InnoDB) is extremely efficient as a storage backend compared to …
-
comment
Comment #7484231
There is nothing that precludes public contributions to the project. The important part is that the change be useful to 'webscale' type applications. Prior to this announcement, th…
-
comment
Comment #7437694
Yes, we are still very active users of MySQL. Most of the primary portions of facebook.com are still served from a backend MySQL system (with lots of caching and many other service…
-
comment
Comment #6723629
Doing compression on the ZFS level is significantly worse than InnoDB compression. InnoDB has a lot of really smart optimizations which make it much better than just zipping things…
-
comment
Comment #6529243
In addition, when you are dealing with many thousand application servers and many hundred database connections, the database will not end up happy having to maintain > 10k connecti…
-
comment
Comment #6524756
Why would the license matter for a kernel module? You know that the linux kernel is also GPL v2 right?
-
comment
Comment #6497260
It wasn't for 1B cash, it was 800M cash, 200M Sun stock.
-
comment
Comment #6439056
The easiest way is to avoid running into the problem. The main reason the central table space grows is due to rollback segments. To avoid collecting a lot of them there are two tip…
-
comment
Comment #5909158
This really reminds me a lot of the progression of MySQL. Originally it was used with ISAM/MyISAM and it was pretty popular. Then InnoDB came around and it quickly revolutionized t…
-
comment
Comment #5496646
When you delete your account, the data is actually removed. As part of the recent privacy audit, the Irish DPC reviewed the account deletion framework and verified that it does ind…
-
comment
Comment #5496612
Facebook does not sell user data regardless of what you may have heard. See: https://www.facebook.com/help/152637448140583/
-
comment
Comment #5441531
The interesting part about this is that MariaDB is only a drop in replacement for MySQL 5.5. MariaDB isn't porting to MySQL 5.6 (which came out last month), instead they are going …
-
comment
Comment #5441521
PostgreSQL doesn't do parallel query.