-
-
Notifications
You must be signed in to change notification settings - Fork 85
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
Mongo Atlas Serverless issues #423
Comments
The $out operator is used for backing up collections before a migration. Consider using drop or none strategies instead. Let me know if it works out. :) |
Well, I did have |
You need to set the SupportsCappedCollection option to false in the MongoOptions object. Br |
Okay, that finally did it. Thanks. So far so good. In case it helps others, this is what I ended up using: new MongoStorageOptions
{
SupportsCappedCollection = false,
MigrationOptions = new MongoMigrationOptions
{
MigrationStrategy = new DropMongoMigrationStrategy(),
BackupStrategy = new NoneMongoBackupStrategy(),
}
} We'll see how it goes from here. |
Thanks for sharing! ❤️ |
I have just encountered an issue while trying to connect to an
Mongo Atlas Serverless
instance. I do not supposeHangfire.Mongo
has been tested against it. Please see part of the full stack trace below. This comes as a consequence of callingHangfire.HangfireApplicationBuilderExtensions.UseHangfireDashboard()
.As the limitations docs seem to imply the
$out
aggregation stage is unsupported and$merge
is suggested as a replacement.Perhaps adding serverless support is something you could consider.
The text was updated successfully, but these errors were encountered: