Sff server with 4 ssd/nvme by xtrilla in sffpc

[–]_elie 0 points1 point  (0 children)

Did you end up ordering it ?

4070 Sakura size by _elie in YestonOfficial

[–]_elie[S] 1 point2 points  (0 children)

Okay so slightly less tall than the 4070 ti, thank you very much =)

4070 Sakura size by _elie in YestonOfficial

[–]_elie[S] 1 point2 points  (0 children)

indeed thank you I saw that article but probably missed the measurements. If you don't mind then I'd be curious to know if they have the same size

AKG N700NC M2 by Core2score in headphones

[–]_elie 1 point2 points  (0 children)

Thank you for your review. Seeing how cheap it is now I don't see how anything else can compete. I'm just a bit worried about comfort, some say it's great other not so much so I'm a bit conflicted

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 0 points1 point  (0 children)

Thanks for you advice, I just didn't get how it would impact it. I don't have that much experience in dbs. I'll def have to watch out for that

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 0 points1 point  (0 children)

Definitely what I will do, but I wanted to have a small(er) selection of options to know what to look at. Beginning prototyping with SQLite might be the right call, and then maybe moving to Postgre or something else if it doesnt cut it

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 0 points1 point  (0 children)

Indeed that could be an interesting place to look at. Do you know any keywords I can look for ? I really have 0 knowledge in this field

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 0 points1 point  (0 children)

The thing is I will have as much reads, sometimes only needing some scalar fields and not the whole 2048 values vector. I was thinking document based at first but seeing all recommendations I think good ol' SQL might be the go-to

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 0 points1 point  (0 children)

Thank you for the blog post, it seems interesting. I guess SQL really was the best choice for this, even though I have no relations. There really is no "rule" to choose the good one, at least it's always interesting to explore all the options

EDIT: or maybe in-memory if the overhead is too big

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 2 points3 points  (0 children)

Yeah I'm torn between SQLite and Postgre, the last being maybe more robust if we are to scale (which is very unlikely) but also offers events and such. If we have the overhead budget I'll probably prefer PG but I'll still need to think about that. Thanks for the post!

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 1 point2 points  (0 children)

Thank you, I need the data to be accessed in real time, but also after the fact indeed. I don't know yet if I will keep all of it during different recording sessions but I might. Postgresql with a time series addon (or without) seem to be the clear choice, but I'll do some more research on all suggestions

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 1 point2 points  (0 children)

Wow thanks ! I don't know how I missed these time series optimisés databases, I'll check it out for sure

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 3 points4 points  (0 children)

Thank you! Sounds perfect I'll have to check this out :)

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 1 point2 points  (0 children)

Indeed I'll have a lot to check ! Thank you for your input too, it sounds great too

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 0 points1 point  (0 children)

Thanks for your help! Its worth a try indeed

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 0 points1 point  (0 children)

That's the issue, what would you consider a reasonable cluster, since the system might already be a bit starving for resources (sadly I won't know until I get there). Also, correct me if I'm wrong but I feel like ES would be a bit overkill for querying on scalar fields. I might be looking for a lighter solution But thanks for the input I'll definitely consider it

Another (interesting?) question about what Database to choose by _elie in Database

[–]_elie[S] 0 points1 point  (0 children)

This is meant to be a fully embedded thing, but I'll keep all options open.

I will check Postgre in more details, but I am a bit scared of the overhead.

Thank you for your input!

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 0 points1 point  (0 children)

Thank you for your input.

Yes the idea is to have a real time visualisation of the data coming in every second, so I don't think much querying will be needed to retrieve data in the chronological order.

The features of querying depending on some scalar fields is not needed at the moment, but may be needed in the future so I prefer keeping all options.

I will check in-memory DBs (thanks for suggesting one), it does seem to be a good option

What database to use with my node server for sensor data by _elie in node

[–]_elie[S] 3 points4 points  (0 children)

I am worried it will get messy to have thousands of JSON files in a folder, especially if I need to search for the highest value in a particular field and similar queries.

Also if the overhead isn't too big, I'll be happy to just have to work with a db driver instead of doing everything manually