Live data from Hacker News

Viewing profile — akorotkov

akorotkov

HN member
Joined
Fri, Apr 30, 2021, 1:30 AM UTC
HN karma
188
Public activity
54 items

About akorotkov

No profile information was provided.

Recent public activity

  1. comment
    Comment #48460729

    We keep going. Planning GA till the end of this year. Only a couple of missing features left. The main focus is stability.

  2. comment
    Comment #45208686

    Exclusion constraints should work well for this case. On any transaction isolation level. https://www.postgresql.org/docs/current/ddl-constraints.html...

  3. comment
    Comment #45199665

    We will eventually add the SERIALIZABLE isolation level to OrioleDB, but right now that's not our highest priority. Let me explain why. At first, SSI (serializable snapshot isolati…

  4. comment
    Comment #45197744

    Yep, regular PostgreSQL indexes point to a heap location (block number + offset). And it is the same for primary and secondary indexes.

  5. comment
    Comment #45197364

    Thank you, that would be on the TODO list.

  6. comment
    Comment #45197232

    This is generally true, but there are some additional aspects. 1. With PostgreSQL heap, you need to access the heap page itself. And it's not for free. It goes all through the buff…

  7. story
  8. comment
    Comment #44951231

    Hey HN, I'm the creator of OrioleDB, an extension for PostgreSQL that serves as a drop-in replacement for the default Heap storage engine. It is designed to address scalability bot…

  9. story
  10. story
  11. comment
    Comment #44653323

    We're planning to reach GA this year. Pushing all the patches to PostgreSQL core and making OrioleDB a pure extension will take more time.

  12. comment
    Comment #44653312

    Currently, OrioleDB can use GIN indexes via index bridging mechanism. https://www.orioledb.com/blog/orioledb-bridged-indexes But more effective native analogues for GIN/RUN are in …

  13. comment
    Comment #44602115

    Hey HN, I'm the creator of OrioleDB, an extension for PostgreSQL that serves as a drop-in replacement for the default Heap storage engine. It is designed to address scalability bot…

  14. story
  15. comment
    Comment #44570509

    Additionally, OrioleDB beta12 features a new fastpath tree search, which can accelerate workloads with intensive key-value lookups by up to 20%. Stay tuned for a new blog post abou…

  16. story
    Show HN: OrioleDB Beta12 Features and Benchmarks

    Hey HN, I'm the creator of OrioleDB, an extension for PostgreSQL that serves as a drop-in replacement for the default Heap storage engine. It is designed to address scalability bot…

  17. comment
    Comment #44139933

    > That kind of exists thanks to NeonDB? This is unrelated to NeonDB. OrioleDB has been acquired by Supabase. https://supabase.com/blog/supabase-acquires-oriole

  18. comment
    Comment #44139924

    > OrioleDB solve the vacuum problem with the introduction of the undo log. Way more than just this! > With some work you can run OrioleDB AND neon storage and get benefits of both.…

  19. story
  20. comment
    Comment #42337460

    That's also so cool we are getting externally validated! https://x.com/MinisterOfEng/status/1864793214282019065 My kudos to MinisterOfEng!

  21. comment
    Comment #42300051

    > Additionally, PostgreSQL requires N^2 of memory depending on the number of connections, For sure, not all the PostgreSQL memory is N^2. AFAIR, just a couple of components, includ…

  22. comment
    Comment #42299964

    Thank you for your feedback! We tried to enable think time with go-tpc, thanks to @pashkinelfe. That leaves us with 1 tpmC per connection, growing linearly up to ~300 connections f…

  23. comment
    Comment #42292020

    Thank you, your feedback is appreciated. The important design issue about building active-active multi-master on the base of raft protocol is about being able to apply changes loca…

  24. comment
    Comment #42288288

    Some notable benchmarks from the OrioleDB beta7 release: * 5.5x Faster at 500 Warehouses: In TPC-C benchmarks with 500 warehouses, OrioleDB outperformed PostgreSQL's default heap t…

  25. comment
    Comment #40063357

    This was driven by Andres Freund for pg12. Please, check this. https://anarazel.de/talks/2018-10-25-pgconfeu-pluggable-stor... However, the current table AM API in many aspects ass…