strfry/golpe.yaml

150 lines
4.7 KiB
YAML
Raw Normal View History

2022-12-19 19:42:40 +00:00
appName: strfry
features:
ssl: true
config: true
onAppStartup: true
db: true
customLMDBSetup: true
flatbuffers: true
websockets: true
2024-07-19 01:35:28 +00:00
templar: true
2022-12-19 19:42:40 +00:00
flatBuffers: |
include "../fbs/nostr-index.fbs";
includes: |
inline std::string_view sv(const NostrIndex::Fixed32Bytes *f) {
return std::string_view((const char *)f->val()->data(), 32);
}
2022-12-19 19:42:40 +00:00
tables:
## DB meta-data. Single entry, with id = 1
Meta:
fields:
- name: dbVersion
- name: endianness
2023-01-22 08:22:28 +00:00
## Meta-info of nostr events, suitable for indexing
## Primary key is auto-incremented, called "levId" for Local EVent ID
2022-12-19 19:42:40 +00:00
Event:
fields:
- name: receivedAt # microseconds
- name: flat
type: ubytes
nestedFlat: NostrIndex.Event
2023-02-07 13:08:29 +00:00
- name: sourceType
- name: sourceInfo
type: ubytes
2022-12-19 19:42:40 +00:00
indices:
created_at:
2023-02-08 21:44:53 +00:00
integer: true
receivedAt:
2022-12-19 19:42:40 +00:00
integer: true
id:
comparator: StringUint64
pubkey:
comparator: StringUint64
kind:
comparator: Uint64Uint64
pubkeyKind:
comparator: StringUint64Uint64
tag:
comparator: StringUint64
multi: true
deletion: # eventId, pubkey
multi: true
expiration: # unix timestamp, value of 1 is special-case for ephemeral event
2023-02-08 11:48:38 +00:00
integer: true
multi: true
replace: # pubkey, d-tag, kind
multi: true
2022-12-19 19:42:40 +00:00
indexPrelude: |
auto *flat = v.flat_nested();
created_at = flat->created_at();
uint64_t indexTime = *created_at;
2023-02-08 21:44:53 +00:00
receivedAt = v.receivedAt();
2022-12-19 19:42:40 +00:00
id = makeKey_StringUint64(sv(flat->id()), indexTime);
pubkey = makeKey_StringUint64(sv(flat->pubkey()), indexTime);
kind = makeKey_Uint64Uint64(flat->kind(), indexTime);
pubkeyKind = makeKey_StringUint64Uint64(sv(flat->pubkey()), flat->kind(), indexTime);
for (const auto &tagPair : *(flat->tagsGeneral())) {
auto tagName = (char)tagPair->key();
auto tagVal = sv(tagPair->val());
tag.push_back(makeKey_StringUint64(std::string(1, tagName) + std::string(tagVal), indexTime));
if (tagName == 'd' && replace.size() == 0) {
replace.push_back(makeKey_StringUint64(std::string(sv(flat->pubkey())) + std::string(tagVal), flat->kind()));
}
}
for (const auto &tagPair : *(flat->tagsFixed32())) {
2022-12-19 19:42:40 +00:00
auto tagName = (char)tagPair->key();
auto tagVal = sv(tagPair->val());
tag.push_back(makeKey_StringUint64(std::string(1, tagName) + std::string(tagVal), indexTime));
if (flat->kind() == 5 && tagName == 'e') deletion.push_back(std::string(tagVal) + std::string(sv(flat->pubkey())));
}
2023-02-08 11:48:38 +00:00
if (flat->expiration() != 0) {
expiration.push_back(flat->expiration());
}
2023-01-22 08:22:28 +00:00
CompressionDictionary:
fields:
- name: dict
type: ubytes
tablesRaw:
## Raw nostr event JSON, possibly compressed
## keys are levIds
## vals are prefixed with a type byte:
## 0: no compression, payload follows
## 1: zstd compression. Followed by Dictionary ID (native endian uint32) then compressed payload
EventPayload:
flags: 'MDB_INTEGERKEY'
2022-12-19 19:42:40 +00:00
config:
- name: db
desc: "Directory that contains the strfry LMDB database"
2022-12-19 19:42:40 +00:00
default: "./strfry-db/"
noReload: true
- name: dbParams__maxreaders
desc: "Maximum number of threads/processes that can simultaneously have LMDB transactions open"
default: 256
noReload: true
- name: dbParams__mapsize
2023-02-07 19:00:21 +00:00
desc: "Size of mmap() to use when loading LMDB (default is 10TB, does *not* correspond to disk-space used)"
default: 10995116277760
noReload: true
- name: dbParams__noReadAhead
desc: "Disables read-ahead when accessing the LMDB mapping. Reduces IO activity when DB size is larger than RAM."
default: false
noReload: true
2023-01-13 21:14:11 +00:00
- name: events__maxEventSize
desc: "Maximum size of normalised JSON, in bytes"
default: 65536
2022-12-19 19:42:40 +00:00
- name: events__rejectEventsNewerThanSeconds
2023-01-13 21:14:11 +00:00
desc: "Events newer than this will be rejected"
2022-12-19 19:42:40 +00:00
default: 900 # 15 mins
- name: events__rejectEventsOlderThanSeconds
2023-01-13 21:14:11 +00:00
desc: "Events older than this will be rejected"
default: 94608000 # 3 years
2022-12-19 19:42:40 +00:00
- name: events__rejectEphemeralEventsOlderThanSeconds
2023-01-13 21:14:11 +00:00
desc: "Ephemeral events older than this will be rejected"
2022-12-19 19:42:40 +00:00
default: 60
- name: events__ephemeralEventsLifetimeSeconds
2023-01-13 21:14:11 +00:00
desc: "Ephemeral events will be deleted from the DB when older than this"
2022-12-19 19:42:40 +00:00
default: 300
- name: events__maxNumTags
2023-01-13 21:14:11 +00:00
desc: "Maximum number of tags allowed"
default: 2000
2022-12-19 19:42:40 +00:00
- name: events__maxTagValSize
2023-01-13 21:14:11 +00:00
desc: "Maximum size for tag values, in bytes"
default: 1024