Skip to content

Commit

Permalink
Expand pdictng with support for upstash.com webdis (#112)
Browse files Browse the repository at this point in the history
* add drop-in replacement persistent kv store via upstash

* add illustration showing location of PAUTH envvar on upstash setup page

* link

* add README stub

* add a note about url

* add pURL variable / PURL envvar and introspection to select across fastpKVStoreClient and fasterpKVStoreClient

* add base class methods and simplify assignment

Co-authored-by: infra <infra@sterile.solutions>
Co-authored-by: technillogue <technillogue@gmail.com>
  • Loading branch information
3 people authored Mar 9, 2022
1 parent 7cbdf2a commit 47bb4b7
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 1.2.2

- upload requires note
- fasterpKVStoreClient (#112). probably need to change PAUTH if you're using pdict
- upload requires note (#147)
- switch from pipenv to poetry (#148)

## 1.2.1

Expand Down
59 changes: 56 additions & 3 deletions forest/pdictng.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
AESKEY = AESKEY[:32]

pAUTH = os.getenv("PAUTH", "")
pURL = os.getenv("PURL", "https://gusc1-charming-parrot-31440.upstash.io")

if not pAUTH:
raise ValueError("Need to set PAUTH envvar for persistence")
Expand Down Expand Up @@ -67,7 +68,57 @@ def get_cleartext_value(value_: str) -> str:
return gzip.decompress(decrypt(base58.b58decode(value_), AESKEY)).decode()


class fastpKVStoreClient:
class persistentKVStoreClient:
async def post(self, key: str, data: str) -> str:
raise NotImplementedError

async def get(self, key: str) -> str:
raise NotImplementedError


class fasterpKVStoreClient(persistentKVStoreClient):
"""Strongly consistent, persistent storage.
Redis with [strong consistency via Upstash](https://docs.upstash.com/redis/features/consistency)
On top of Redis and Webdis.
Check out <https://github.com/mobilecoinofficial/forest/blob/main/pdictng_docs/upstash_pauth.png> for setup / pAUTH
"""

def __init__(
self,
base_url: str = pURL,
auth_str: str = pAUTH,
namespace: str = NAMESPACE,
):
self.url = base_url
self.conn = aiohttp.ClientSession()
self.auth = auth_str
self.namespace = get_safe_key(namespace)
self.exists: dict[str, bool] = {}
self.headers = {
"Authorization": f"Bearer {self.auth}",
}

async def post(self, key: str, data: str) -> str:
key = get_safe_key(f"{self.namespace}_{key}")
data = get_safe_value(data)
# try to set
async with self.conn.post(
f"{self.url}/SET/{key}", headers=self.headers, data=data
) as resp:
return await resp.json()

async def get(self, key: str) -> str:
"""Get and return value of an object with the specified key and namespace"""
key = get_safe_key(f"{self.namespace}_{key}")
async with self.conn.get(f"{self.url}/GET/{key}", headers=self.headers) as resp:
res = await resp.json()
if "result" in res:
return get_cleartext_value(res["result"])

return ""


class fastpKVStoreClient(persistentKVStoreClient):
"""Strongly consistent, persistent storage.
Stores a sneak table mapping keys to their existence to update faster.
On top of Postgresql and Postgrest.
Expand All @@ -91,7 +142,7 @@ class fastpKVStoreClient:

def __init__(
self,
base_url: str = "https://vwaurvyhomqleagryqcc.supabase.co/rest/v1/keyvalue",
base_url: str = pURL,
auth_str: str = pAUTH,
namespace: str = NAMESPACE,
):
Expand Down Expand Up @@ -196,7 +247,9 @@ def __init__(self, *args: Any, **kwargs: Any) -> None:
if "tag" in kwargs:
self.tag = kwargs.pop("tag")
self.dict_: dict[str, Any] = {}
self.client = fastpKVStoreClient()
self.client: persistentKVStoreClient = (
fastpKVStoreClient() if "supabase" in pURL else fasterpKVStoreClient()
)
self.rwlock = asyncio.Lock()
self.loop = asyncio.get_event_loop()
self.init_task = asyncio.create_task(self.finish_init(**kwargs))
Expand Down
7 changes: 7 additions & 0 deletions pdictng_docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
TODO

set the PAUTH secret to `UPSTASH_REDIS_REST_TOKEN`

you'll also need to change the base_url in pdictng.py

![how to get pAUTH](./upstash_pauth.png)
Binary file added pdictng_docs/upstash_pauth.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 47bb4b7

Please sign in to comment.