pgrocks-fdw
pgrocks-fdw copied to clipboard
Bring RocksDB to PostgreSQL as an extension. It is the first foreign data wrapper (FDW) that introduces LSM-tree into PostgreSQL. The underneath storage engine can be RocksDB. The FDW also serves for...
As I know, access methods is nearer to pg core than FDW, which implies there are less overheads. Is there any concerns?
when make project, display this problem. my enviroment is centos 7.6_x64; r/local/pgsql/include/internal -D_GNU_SOURCE -c -o src/server/kv_storage.o src/server/kv_storage.cc In file included from /usr/include/c++/4.8.2/unordered_map:35:0, from /usr/local/include/rocksdb/db.h:16, from src/server/kv_storage.cc:26: /usr/include/c++/4.8.2/bits/c++0x_warning.h:32:2: error: #error This...
Hi, I get the following error while trying the “usage” section of the readme: ```sql create extension kv_fdw; ~~~~~~~~~~~~~~~LaunchKVManager~~~~~~~~~~~~~~~ -----------------kv_fdw_validator---------------------- CREATE EXTENSION CREATE SERVER kv_server FOREIGN DATA WRAPPER kv_fdw; -----------------kv_fdw_validator----------------------...
Hey there. Co-worker just shared this and it looks awesome! Is there a desire to get this adopted by managed PG providers? Only saw a few issues so figured I'd...
Environment: Ubuntu Server 20.04, PostgreSQL-13, RocksDB-7.0.2 I have attempted to use pgrocks-fdw with RocksDB version 7.0.2. While all compilation steps completed successfully, I am encountering issues when trying to run...
My OS: Ubuntu 20.04 I followed the readme and finished the installation. By the way, I notice it does not support a secondary index in the limitation part. Just to...