MongoDB GridFS support? Inserts with BulkMode? What do YOU want or need? #756
thadguidry
started this conversation in
Ideas
Replies: 1 comment
-
MongoDB support to be dropped. So far there has been not many requests or tickets or issues for Mongo. Seems the usage is not high to justify development. So in v 2.0 mongoDB and Oracle 9i support will be dropped around April 2025. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Wondering if our users have any need for:
add GridFS support for MongoDB for storing and querying binary files (> 16 MB) and searching and filtering on any objects within a files' metadata field objects. This would be useful for folks that might be doing things with photos, videos, huge binary files, machine learning, etc. The cool thing is that when files are uploaded, GridFS automatically creates indexes on the
files
andchunks
collections when you upload data to the GridFS bucket. But we'd also provide easy automatic REST API that can create Compound Indexesindex_A(field1,field2)
and perhaps others like Multikey indexes over array-valued fields, or Geospatial indexes over GeoJSON objects.Time Series Data - ( Location, sensor type, etc.) (Monthly rent price, Location, currency) - Any metadata that describes a measurement - We would support Inserting One or Many Documents into Collections with a
timestamp
field and allowing read or aggregation operations as well as perhaps setting custom bucketing granularity on a collection.there's also quite a bit of MongoDB stuff that we'd like to add support for like Bulk Insert Mode and any other's that Spring Data allows easy support for to make it easy for contributors to wire up that support in Java and submit PR's to us.
and probably others we haven't thought much more about, but let us know what your direct needs are with MongoDB support!
Beta Was this translation helpful? Give feedback.
All reactions