roadmap/content/waku/updates/2023-08-14.md

103 lines
5.1 KiB
Markdown
Raw Normal View History

2023-10-25 18:20:23 +00:00
---
title: "2023-08-14 Waku weekly"
tags:
- "waku-updates"
date: 2023-08-14
lastmod: 2023-08-17
draft: false
---
# 2023-08-14 Waku weekly
---
## Epics
**[Waku Network Can Support 10K Users](https://github.com/waku-org/pm/issues/12)** {E:2023-10k-users}
All software has been delivered. Pending items are:
- Running stress testing on PostgreSQL to confirm performance gain https://github.com/waku-org/nwaku/issues/1894
- Setting up a staging fleet for Status to try static sharding
- Running simulations for Store protocol: [Will confirm with Vac/DST on dates/commitment](https://github.com/vacp2p/research/issues/191#issuecomment-1672542165) and probably move this to [1mil epic](https://github.com/waku-org/pm/issues/31)
---
## Eco Dev
**[Aug 2023](https://github.com/waku-org/internal-waku-outreach/issues/103)** {E:2023-eco-growth}
- _achieved_: web3conf talk, swags, 2 side events, twitter promotions, requested for marketing collateral to commshub
- _next_: complete waku metrics, coordinate events with Lou, ethsafari planning, muchangmai planning
- _blocker_: was blocked on infra for hosting nextjs app for waku metrics but migrating to SSR and hosting on vercel
---
## Docs
**[Advanced docs for js-waku](https://github.com/waku-org/docs.waku.org/issues/104)**
- _next_: document notes/recommendations for NodeJS, begin docs on `js-waku` encryption
---
## nwaku
**[Release Process Improvements](https://github.com/waku-org/nwaku/issues/1889)** {E:2023-qa}
- _achieved_: minor CI fixes and improvements
- _next_: document how to run PR built images in waku-simulator, adding Linux arm64 binaries and images
**[PostgreSQL](https://github.com/waku-org/nwaku/issues/1888)** {E:2023-10k-users}
- _achieved_: Learned that the insertion rate is constrained by the `relay` protocol. i.e. the maximum insert rate is limited by `relay` so I couldn't push the "insert" operation to a limit from a _Postgres_ point of view. For example, if 25 clients publish messages concurrently, and each client publishes 300 msgs, all the messages are correctly stored. If repeating the same operation but with 50 clients, then many messages are lost because the _relay_ protocol doesn't process all of them.
- _next_: Carry on with stress testing. Analyze the performance differences between _Postgres_ and _SQLite_ regarding the _read_ operations.
**[Autosharding v1](https://github.com/waku-org/nwaku/issues/1846)** {E:2023-1mil-users}
- _achieved_: many feedback/update cycles for FILTER, LIGHTPUSH, STORE & RFC
- _next_: updating ENR for live subscriptions
**[HTTP REST API: Store, Filter, Lightpush, Admin and Private APIs](https://github.com/waku-org/nwaku/issues/1076)** {E:2023-many-platforms}
- _achieved_: Legacy Filter - v1 - interface Rest Api support added.
- _next_: Extend Rest Api interface for new v2 filter. Get v2 filter service supported from node. Add more tests.
---
## js-waku
**[Maintenance](https://github.com/waku-org/js-waku/issues/1455)** {E:2023-qa}
- achieved: upgrade libp2p & chainsafe deps to libp2p 0.46.3 while removing deprecated libp2p standalone interface packages (new breaking change libp2p w/ other deps), add tsdoc for referenced types, setting up/fixing prettier/eslint conflict
**[Developer Experience (2023)](https://github.com/waku-org/js-waku/issues/1453)** {E:2023-eco-growth}
- _achieved_: non blocking pipeline step (https://github.com/waku-org/js-waku/issues/1411)
**[Peer Exchange is supported and used by default](https://github.com/waku-org/js-waku/issues/1429)** {E:2023-light-protocols}
- _achieved_: close the "fallback mechanism for peer rejections", refactor peer-exchange compliance test
- _next_: peer-exchange to be included with default discovery, action peer-exchange browser feedback
---
## go-waku
**[Maintenance](https://github.com/waku-org/go-waku/issues/634)** {E:2023-qa}
- _achieved_: improved keep alive logic for identifying if machine is waking up; added vacuum feature to sqlite and postgresql; made migrations optional; refactored db and migration code, extracted code to generate node key to its own separate subcommand
**[C-Bindings Improvement: Callbacks and Duplications](https://github.com/waku-org/go-waku/issues/629)** {E:2023-many-platforms}
- _achieved_: PR for updating the RFC to use callbacks, and refactored the encoding functions
**[Improve Test Coverage](https://github.com/waku-org/go-waku/issues/620)** {E:2023-qa}
- _achieved_: Fixed issues reported by the data race detector tool.
- _next_: identify areas where test coverage needs improvement.
**[RLN: Post-Testnet3 Improvements](https://github.com/waku-org/go-waku/issues/605)** {E:2023-rln}
- _achieved_: exposed merkle tree configuration, removed embedded resources from go-zerokit-rln, fixed nwaku / go-waku rlnKeystore compatibility, added merkle tree persistence and modified zerokit to print to stderr any error obtained while executing functions via FFI.
- _next_: interop with nwaku
**[Introduce Peer Management](https://github.com/waku-org/go-waku/issues/594)** {E:2023-peer-mgmt}
- _achieved_: add service slots to peer manager.
- _next_: implement relay connectivity loop, integrate gossipsub scoring for peer disconnections
---