Re: JanusGraph Best Practice to Store the Data
Boxuan Li
Hi,
toggle quoted message
Show quoted text
There are a few factors you might want to consider: 1. An increase of your transaction-wise cache and database-level cache memory usage. 2. Cassandra does not support large column value well. 100-500kb is far less than the hard limit, but some say that this scale can also lead to performance issue (disclaimer: I’ve never tried it myself). 3. Serialization and deserialization cost. To reduce storage and network overhead, JanusGraph encodes and compresses your string value (see StringSerializer). That being said, I believe this overhead should (usually) still be much smaller than an additional network call (if you store docValue somewhere else). The best option depends on your use case and your testing, of course. Best, Boxuan
|
|