-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebase linked list branch #374
base: master
Are you sure you want to change the base?
Conversation
A bunch of tests are failing locally, digging in. EDIT: Basically all queries time out, they never return anything. Trying to figure out why. |
Turns out a simple |
The only two tests failing are the ones for backtraces, are those meant to fail? |
All backtrace tests are fixed! Unsure why those were failing since the backtraces were correct, just slightly different in formatting. Anyways, all the tests pass now! 🎉 @neumino I'm going to try this branch in prod I think, let's see if it fixes our errors. |
Huh, some backtrace tests still fail on wercker even though they pass locally? 🤔 |
Even with this branch we're getting changefeeds dropping out:
And also the server crashing due to:
|
@mxstbr @thelinuxlich |
@nikhilrayaprolu replace your database with something supported, seriously, who would trust their primary database to a project that hasn't received updates in 5 years? |
You are right, but I am wondering from an engineering standpoint, how this
issue was solved finally.
I had also read the discussion here, but looks like the complete discussion
is unavailable after the shut down of spectrum.
https://spectrum.chat/rethinkdb-old/general/changefeed-troubles~e0047056-899e-4bde-9493-20f8a7bb0919
…On Fri, 25 Feb, 2022, 12:49 am Alisson Cavalcante Agiani, < ***@***.***> wrote:
@nikhilrayaprolu <https://github.com/nikhilrayaprolu> replace your
database with something supported, seriously, who would trust their primary
database to a project that hasn't receive updates in 5 years?
—
Reply to this email directly, view it on GitHub
<#374 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADUC65ZWN2KOYJVG5YAXPBDU42AERANCNFSM4EU2UBIQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Not using RethinkDB anymore 🙈
It wasn't. |
@mxstbr I really liked the source code of spectrum, it has all features needed for a good online community. The only major issue I found in that is the choice of rethinkDB. Now an option for me is to see if I could convert the rethinkDB to MongoDB and use Apollo PubSub for real-time features (I think this is not a priority now but need to do this before I start facing scalability issues). Since I am planning to host an online clubs for k12 kids with some customizations (gamification) and video rooms for them to collaborate and learn together, I cannot think of going with a solution like circle.so |
You don't need mongodb for realtime features in 2022, graphql subscriptions over sse is a good choice |
This takes the
linkedlist
branch from #135 and merges the latest master into it. We're running into connection errors, and we have tons of changefeeds, so I'm suspecting this could be the solution.I'm going to try and get all the tests to pass again.