GithubHelp home page GithubHelp logo

Comments (115)

richardkazuomiller avatar richardkazuomiller commented on May 14, 2024 11

I never used Parse, but I know people who did and it seems like the main of it was that they didn't have to provision and maintain their own servers. In my opinion, the stateless application layer is not so hard to maintain but going from no servers to maintaining a MongoDB replica set or even working with MongoLab is a big jump for people. I think complete support for adapters so we can use DBaaS like Google Cloud Datastore and DynamoDB should be a priority.

from parse-server.

 avatar commented on May 14, 2024 6

thinking about adding support for Azure DocumentDB if there is interest.

from parse-server.

devmsh avatar devmsh commented on May 14, 2024 6

Any updates about the progress ❓

from parse-server.

gfosco avatar gfosco commented on May 14, 2024 4

Going to close this issue... the database adapter system is in development.

from parse-server.

blacha avatar blacha commented on May 14, 2024 4

@flinn @drew-gross has been working on a postgres adapter, once he has sorted the adapter API to get that up and running, it should be pretty simple to add other database adapters in.

I think he is away on holiday atm, so I am not too sure on the ETA for that.

from parse-server.

noder199 avatar noder199 commented on May 14, 2024 2

+1 Can't wait to be able to use this.

from parse-server.

saleehk avatar saleehk commented on May 14, 2024 2

Hey All,
I am starting to make databaseAdapter for Google DataStore, Any one have boilerplate for databaseAdapter other than the existing one

from parse-server.

thewizster avatar thewizster commented on May 14, 2024 2

Azure DocumentDB just announced protocol support for existing MongoDB drivers. In preview right now but should help open the path to using DocumentDB with parse-server.

Microsoft Azure DocumentDB can now be accessed using existing drivers for MongoDB.

https://azure.microsoft.com/en-us/documentation/articles/documentdb-protocol-mongodb/?WT.mc_id=azurebg_email_Trans_1050_Tier2_Release_MOSP

from parse-server.

aliuy avatar aliuy commented on May 14, 2024 2

@thewizster There is also an Azure Marketplace gallery item to 1-click deploy a parse-sever running on Azure App Service and DocumentDB. 😄

Check out: https://azure.microsoft.com/en-us/blog/announcing-the-publication-of-parse-server-with-azure-managed-services/

from parse-server.

dv336699 avatar dv336699 commented on May 14, 2024 2

@flinn I'm not from the team, but since it has a enhancement and long-term label I don't think it'll be coming soon. Instead you might want to take a look at horizon.io which use RethinkDB as it's database. As long as you don't rely on Parse specific stuff it should get you covered.

from parse-server.

gfosco avatar gfosco commented on May 14, 2024 1

Not much (famous last words).. Turn transform.js into ExportTransformAdapter.js and create a TransformAdapter (like FilesAdapter) which defaults to it. Make Schema.js and any other module which accesses transform use the adapter class, and allow it to be injected at initialization.

from parse-server.

flovilmart avatar flovilmart commented on May 14, 2024 1

@saleeh93 you can start with the current mongo implementation, and replicate the whole interface of that object. You'll also need to provide a custom transform.js, this module is responsible for transforming queries and objects to a from the REST format to the mongo format and back.

Given the current architecture of the project, it is most likely we won't merge any custom database adapter as we provide a way to load those at runtime.

However we'll happily accept pull request that would help decoupling mongodb.

from parse-server.

flovilmart avatar flovilmart commented on May 14, 2024 1

@jmdobry, not sure about that, that should not be too much a concern for now. This can be a work in progress and the DBAdapter could throw errors if a query type is not supported.

from parse-server.

drew-gross avatar drew-gross commented on May 14, 2024 1

I'm in the process of isolating all the MongoDB specific logic into MongoAdapter. This requires breaking a lot of internal dependencies on the schema format. After that, the next step will be to decide on the generic API that different database adapters will be expected to conform to, and change Parse Server to use that API, while changing the existing MongoAdapter to implement that API. Then after that we will implement that same API for other databases (probably MiniMongo, just for practise, and because it will help with our test setup, then with Postgres)

If you want to help out, check out the MongoTransfrom.js file, and see if you can make it less dependent on the SchemaController.

from parse-server.

ndbroadbent avatar ndbroadbent commented on May 14, 2024 1

Is anyone working on a DynamoDB adapter? Is there some way I can stay informed, and maybe help out with development?

from parse-server.

saleehk avatar saleehk commented on May 14, 2024 1

@karthiksekarnz Feel free to ask any questions

from parse-server.

duergner avatar duergner commented on May 14, 2024

Should be fairly easy to add if I'm right. You would just need to implement a DatabaseAdapter similar to https://github.com/ParsePlatform/parse-server/blob/master/ExportAdapter.js for your desired database

from parse-server.

gfosco avatar gfosco commented on May 14, 2024

See the wiki about ExportAdapter... There is still some work to do in modularizing the database layer, but it's part of the vision for sure.

from parse-server.

davidaik avatar davidaik commented on May 14, 2024

+1 I don't want to rely on MongoLab either. It'll be awesome if we have full control over the db.

from parse-server.

francocorreasosa avatar francocorreasosa commented on May 14, 2024

What about RethinkDB?

from parse-server.

francocorreasosa avatar francocorreasosa commented on May 14, 2024

@ryancrawcour Great

from parse-server.

richardkazuomiller avatar richardkazuomiller commented on May 14, 2024

Is the plan for Parse to use the ExportAdapterDatabaseAdapter class to do the migration to databases other than MongoDB? For example, if I were to implement my own ExportAdapterDatabaseAdapter for DynamoDB, will I be able to have Parse use that adapter to fill up my new DynamoDB table(s)?

from parse-server.

 avatar commented on May 14, 2024

If you look through the Parse code you will see that not all the Mongo code is contained within just DatabaseAdapter and ExportAdapter.

For instance, users.js has direct Mongo code.

This seems to be what @gfosco was talking about when he said that complete modularization hasn't been completed yet.

My question is how much work is required to totally modualrize datavase access?

from parse-server.

gfosco avatar gfosco commented on May 14, 2024

Of course, there's a lot more to it I'm sure. The same methods used in ExportAdapter may not always fit some other system, or other unforeseen differences..

from parse-server.

lacker avatar lacker commented on May 14, 2024

Yeah honestly this part of the design is a bit wack. Ideally all the Mongo access should be contained within DatabaseAdapter and ExportAdapter but at some point we got to a tradeoff between feature completeness and modular design, and decided to move towards feature completeness. Especially around supporting some of the stranger $ operators. I'm not sure how hard it would be to make more adapters and it may or may not be tractable.

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

I think we need to:

  1. Modularize/isolate the database code. The database adapter should have a small transport layer that is MondoDB. Optionally, you can write your own transport layer with a different database provider.
  2. Clearly document the APIs for the database part, so its really easy to read docs/comments and implement custom transport layers.
  3. Work on transport layers for Google Cloud Datastore and Amazon DynamoDB. If 1 and 2 are in place, I am sure the community will start writing these.

from parse-server.

richardkazuomiller avatar richardkazuomiller commented on May 14, 2024

@jashsayani sounds like a plan d(^_^)

from parse-server.

 avatar commented on May 14, 2024

@jashsayani I'm keen to contribute to the core and to building an adapter for Azure DocumentDB

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

@ryancrawcour I don't think Azure DocumentDB is the best choice since Azure is not as main stream as AWS. So if Microsoft does not see Azure bringing significant revenue in the future, they might restructure it or cancel services. AWS on the other hand is a proven success and DynamoDB is not going anywhere.

Google Cloud Datastore is also a gamble like Azure, but its a shiny new thing and looks promising. Is there a specific reason why you want to use Azure?

from parse-server.

 avatar commented on May 14, 2024

@jashsayani trust me, Azure isn't going anywhere :)

from parse-server.

richardkazuomiller avatar richardkazuomiller commented on May 14, 2024

@jashsayani I think the fact that @ryancrawcour is in the Azure GitHub organization might have something to do with why he'd like to use Azure lol

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

@richardkazuomiller Haha. Yes, I saw his profile. He's a Microsoft employee working on Azure. So it makes sense. Good to see Microsoft evangelizing on Github.

I found a really good helper library from Google, which will make it easy to build a transport with Datastore: https://googlecloudplatform.github.io/gcloud-node/

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

I am trying to make support for Google DataStore.
Any quick advices how to do it best way .?

from parse-server.

TAProgramming avatar TAProgramming commented on May 14, 2024

I would like to fully migrate to Google Services as well (Cloud and Datastore). Mongolab is too pricey for my liking.

from parse-server.

 avatar commented on May 14, 2024

Yes, i work for Microsoft on Azure. in fact, i work on the Azure DocumentDB team.

Point is, the DocumentDB team would love to have a native adapter for Parse for our database and want to help contribute to modularizing db access for Parse. Not only will this help us build an adapter, but will also enhance the product and allow anyone to build adapters. Win win.

So, how do we start?
@jashsayani, are you planning to start with this?

from parse-server.

davidaik avatar davidaik commented on May 14, 2024

This appears to be a good plan, guys. Too bad I can only watch and learn.

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

I work in Google Cloud and have already started work on a Parse Cloud Datastore adapter. Also can help with modularizing.

from parse-server.

 avatar commented on May 14, 2024

@jmdobry how are you building an adapter without modularization done first?

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

Right now it's more investigation than working code. Just understanding everything Parse is doing with MongoDB and nailing down the Datastore equivalents. Obviously modularization needs to be completed before an adapter will completely work. I only just started.

from parse-server.

 avatar commented on May 14, 2024

@jmdobry then you're in the same place as I am with a DocumentDB adapter.

from parse-server.

 avatar commented on May 14, 2024

@gfosco @lacker what is the best way to move the modularization forward? Does somebody just submit a PR and go from there?

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

@jmdobry +1 Love it. Ideally as someone with no backend knowledge, if I'm migrating to app engine, I'd like to keep the data there aswell. Whats you timeframe to deliver?

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

I'm not sure yet, I'm still parsing the code.

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

@jmdobry Sounds good - my future in your hands no pressure

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

If the database access code were already fully modularized, I would estimate two weeks for a Cloud Datastore adapter and Mongo to Datastore migration code, but as it is, I'm not sure on the timeline.

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

@jmdobry Would the Datastore adapter be a one time deal or would it need updating itself as the community improves and adds on to the existing parse server code?

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

The latter.

from parse-server.

 avatar commented on May 14, 2024

Starting to look at modularizing the Parse code based on @gfosco suggestions above. Some other things need to be done too like users.js which stores user documents in Mongo; this probably needs to be turned in to an adapter pattern too.

Hopefully contribute a PR soon with the first steps toward a modular Parse.

from parse-server.

 avatar commented on May 14, 2024

@jmdobry & @jashsayani want to collaborate on modularizing this with us? divide and conquer?

from parse-server.

lacker avatar lacker commented on May 14, 2024

It's cool that you folks are excited about this! One thing I was also wondering about modularization is whether it would make more sense to use some existing node.js ORM type thing as a target. Maybe then multiple databases would work with less effort. I'm not sure if that's the right way to go though. Another thing is that this right now doesn't need any API for schema changes in the DB since with Mongo it's pretty much automatic. That might need to change. Another tricky bit is that some operators are handled outside of the adapter, like a lot of the relational stuff. I'm not quite sure what to do there. Just dumping some of the concerns I had on my mind when I was working on this. I think these things are solvable. Just a plain old SQL adapter would be pretty badass.

Oh one last thing to think about is that there are a bunch of wacky names, like _created_at, and it might make sense to not use the wacky names with new db adapters. Those are really technical debt from when we were first creating Parse and thought ho ho it sure won't matter or ever become publicly visible what we name these fields. Dunno if it's a real problem - it's ugly though.

from parse-server.

 avatar commented on May 14, 2024

@lacker thanks for the input. definitely something we think is worth pursuing. the databases mentioned here are all NoSQL dbs thus far, so like Mongo they should be able to handle schema changes on the fly.

from parse-server.

lacker avatar lacker commented on May 14, 2024

Oh ok folks from Google and Azure are on this thread. Awesome. I should point out that AFAICT Azure is making billions in revenue and seems to be a top Microsoft priority so I would not worry that it is going away! One key thing to note is, if you guys want to grab existing Parse customers then the database migration stuff will only work with MongoDB directly. Supporting those other datastores will make it easier for people to spin up new Parse Server apps on your clouds though so it is quite cool.

from parse-server.

 avatar commented on May 14, 2024

We have a db migration tool that will migrate data from MongoDB database to an Azure DocumentDB database. We will make sure that this works with any native adapter we build.

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

whether it would make more sense to use some existing node.js ORM type thing as a target

There's js-data (a personal project of mine, not associated with my work), a database-agnostic ORM for Node.js (and the browser). It abstracts a number of basic query operators and relation/association functionality into a generalized syntax. There are other options too, but an ORM may not be necessary.

@ryancrawcour I'm still digging through the source to see how Parse-server interacts with Mongo, when I'm done I can give a definitive answer on my contribution.

from parse-server.

 avatar commented on May 14, 2024

@jmdobry I'm all for building an adapter for js-data instead of building a Parse specific adapter if this is going to be easier, more flexible, etc. going forward.

We should take some guidance from the Parse guys here if they're ok with reworking all the database access and introducing dependencies on js-data.

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

It's my intention to write js-data-cloud-datastore anyway, so I agree with the sentiment.

I'll dive more into the code very soon.

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

This is my initial understanding of how to decouple Parse-server from MongoDB:

databaseAdapter

Defines an interface for talking to a database. Interface is:

  • create
  • find
  • update
  • delete
  • redirectClassNameForKey
  • validateObject
  • loadSchema
  • deleteEverything (used in tests)
  • *getAllSchemes (see note)

Current implementation of the interface is in ExportAdapter.js.

Note: There is a single place in schemas.js where it's hard-coded to database.collection in order to retrieve all of the schemas. But it's easy enough to simply add a getAllSchemas method to the adapter that hides collection from Parse-server. Apart from this, Parse-server only interacts with Mongo through ExportAdapter.

ExportAdapter makes use of the logic found in Schema.js, which handles validation and permissions. ExportAdapter also makes use of transform.js, which transforms REST data into Mongo form. I'm not completely sure if an adapter for a different database would need to implement everything in Schema.js and transform.js. I personally don't yet know what an entry in the _SCHEMA table looks like, or what it's expected format is. For example, the Schema has a setPermissions method, but I don't see it used anywhere in Parse-server.

I would need to run an actual app with Parse-server and observe the format of REST data and the format of data stored in Mongo to better understand the need for transform.js. If I can get a better understanding of the format for REST data then it should reveal how much of transform.js needs to be re-implemented for another database.

filesAdapter

Defines an interface for storing and retrieving files. Interface is:

  • create
  • get
  • location

Current implementation of this interface is in GridStoreAdapter.js. This implementation stores the files in MongoDB using GridStore. Should note that the GridStore adapter will only work if the MongoDB ExportAdapter is being used.

Should be pretty easy to write an adapter that stores the files in say, Google Cloud Storage.

There is also a bundled S3Adapter that can be used in place of GridStoreAdapter. See #113.

Each method of the files adapter is called in exactly one place in Parse-server. Parse-server does not
attempt to access files without going through the adapter.

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

More investigation:

schemas.js

The REST API docs describe:

GET /schemas
GET /schemas/:className
PUT /schemas/:className
DELETE /schemas/:className

But as far as I can tell, Parse-server only implements GET /schemas. Hmm.

Schema.js

This file takes care of validation and "rolling updates" to the schema for each className. A user doesn't have to fully describe a schema if they don't want to, because as they save data for a className the schema for that className will continually update itself by inferring the schema structure using the types of the values of each being object being saved for that className.

Schema.js is couples itself to MongoDB by using things like .collection, .insert and .findAndModify, but it doesn't have to. If the database adapter exposed the necessary methods then the "rolling updates" logic could work for any database.

transform.js
It appears a lot of the logic here is similar to what is in js-data-mongodb and the other js-data adapters, meaning, if Parse-server were to use js-data, the logic in transform.js would need to be re-written to map to js-data's query syntax, which would immediately add support for querying against RethinkDB, MySql, Postgres, Redis, Nedb, LevelUp, and MongoDB of course. I'm not yet sure that the mongo stuff in transform.js would all map over 100%, particular the geo stuff.

from parse-server.

 avatar commented on May 14, 2024

What about users.js that spears to have some direct calls to MongoDB? Guess that could all be changed to use the database adapter too.

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

users.js appears to just use the database adapter, so it should be fine.

It does have var mongodb = require('mongodb'); at the top, but it is extraneous and can be deleted.

from parse-server.

natario1 avatar natario1 commented on May 14, 2024

@jmdobry and others, you have my emotional support. Thank you. How are we planning to manage migration, though? Maybe parse host -> some mongoDB and then create a new migration tool from there to (say) Datastore?

from parse-server.

drew-gross avatar drew-gross commented on May 14, 2024

@jmdobry Schemas API is a work in progress. Once it is ready for use we will announce it in the release notes and on the Parse blog.

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

@jmdobry any Updates .?
Happy to test

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

The migration plan on the Parse blog states that Parse will start writing new records to a user-specified database so the data from old clients go to the user-hosted database. Parse would also have to support writing to DynamoDB / Google Cloud Datastore.

from parse-server.

natario1 avatar natario1 commented on May 14, 2024

@jashsayani I couldn't find this news anywhere..? The migration guide says that the tool will point the parse hosted database to a user-hosted mongoDB database.

from parse-server.

drew-gross avatar drew-gross commented on May 14, 2024

@miav that is correct, which migrating your data off parse.com you must use mongodb. But we are discussing support for potentially doing another migration from your own mongo to your own non-mongo, or for creating a new app thats not on mongo.

from parse-server.

JohnMorales avatar JohnMorales commented on May 14, 2024

In reference not using mongo, if you need the data but not planning on using parse server anymore, I once had to move a parse database from parse out to a relational system. It's doable, but not simple, there are arrays and embedded document references that need to be addressed. Challenging but not impossible.

Here are two projects that I used to prove that it was possible:

Parse-Migrator

This project exported everthing to json files, mostly used since I was able to fork another attempt so it was a starting point

Parse-DB-Import

which will support importing to any ActiveRecord (relational) DB. (in my case postgresql)

Note this was a proof of concept, it's not finished.

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

If you follow the Parse migration guide (which is the best way to do this thing), then Parse will have to support pointing their existing service to Amazon DynamoDB or Google Cloud Datastore. When existing clients talk to Parse to write new data, it would have to write to this new DB till a new client is published and all the users upgrade to the new client.

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

Hey @jmdobry any updates on parse server support for Datastore?

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

I've actually been pretty sick the last two weeks, no progress from my end. After my initial investigation of what would need to be refactored, I've decided to wait a little bit to see what progress the Parse team makes in the near term.

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

@jmdobry sounds good - Get well soon :)

from parse-server.

 avatar commented on May 14, 2024

Why not leave it open and close it once the adapter system is complete? That way adapter developers know when to start building their adapters.

from parse-server.

gfosco avatar gfosco commented on May 14, 2024

I really prefer to close issues when there's no active discussion... but ok, i'll leave it open for now.

from parse-server.

iamraafay avatar iamraafay commented on May 14, 2024

Having it open also helps us track the updates related to this issue. Thanks for having it open.

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

I would also prefer to have it open till we have a PR for the database adapter. Also, an ETA would be helpful.

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

@flovilmart I already started as you mentioned,So Its working for adding data to datastore But later i understand that Google DataStore doesn't support

Datastore allows querying on properties. Supported comparison operators are =, <, >, <=, and >=. "Not equal" and IN operators are currently not supported.

In finding any object from db its checking the $exist and $in for ACL,So i am not sure DataStore will work with Parse.
Any suggestions to overcome it

from parse-server.

flovilmart avatar flovilmart commented on May 14, 2024

I can't really comment on that. Every data store had it's own capacities and limitations. It seems that GDS is out of the question for now.

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

Ok, Thank for your response,

from parse-server.

lkraider avatar lkraider commented on May 14, 2024

You could try performing multiple queries, like their appengine libs do:
https://cloud.google.com/appengine/docs/python/datastore/queries#Python_Property_filters

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

@lkraider Its not available in node Library

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

@saleeh93 thanks for taking on the datastore adaptor effort. Have really been looking forward to it. Is it currently looking like an impossibility due to datastore query restrictions?

from parse-server.

flovilmart avatar flovilmart commented on May 14, 2024

@thewizster that's pretty awesome!

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

@otymartin In my view with current version of gcloud-node its not possible,
In every get request on every Class it send IN query, and its not support on current version

from parse-server.

otymartin avatar otymartin commented on May 14, 2024

@saleeh93 thats really disappointing to hear. Do we have to wait for google cloud to make a move or can the community mitigate this problem? Perhaps @jmdobry can answer?

from parse-server.

jmdobry avatar jmdobry commented on May 14, 2024

It's true that Google Cloud DataStore does not support an IN operator, however it is possible to simulate an IN query with several '=' queries that are unioned in the application layer. In general, how big is the array used in parse-server's IN queries?

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

Is there any update on making the hosted service on parse.com accept different databases for migration (besides MongoDB)? I understand that the deadline for migration is April 28, 2016. So apps will be marked as inactive after that date.

from parse-server.

drew-gross avatar drew-gross commented on May 14, 2024

No, hosted Parse.com will support MongoDB only. After migrating to your own MongoDB (hopefully before April 28th) you can then do whatever you want with the data, including put it in a different DB. Parse Serve support for the DBs is coming, but isn't going to be ready by April 28th.

from parse-server.

jashsayani avatar jashsayani commented on May 14, 2024

@drew-gross Wait, if hosted Parse does not migrate to other solutions (besides MongoDB), then this doesn't help much. Its nice for new apps that use Parse Server for new projects (not sure why you would do that though), but for existing users that are migrating, its kinda pointless to use anything other than MongoDB. Because when the old client hits the Parse end-point, it will not read/write data to whatever the chosen database is. Is this correct?

from parse-server.

drew-gross avatar drew-gross commented on May 14, 2024

That is correct. Eventually, though, all your old clients will be upgraded and hitting your own Parse Server, at which point you can change databases.

from parse-server.

natario1 avatar natario1 commented on May 14, 2024

@drew-gross sorry if I bother: I still hear about this April 28th deadline, but it actually looks nothing more than a suggested date (i.e.: if you migrate your production database before 28th, you’ll probably make it to migrate your whole app before January 2017). Can you make clear what will happen on day 29th?

I’m trying to understand if I should really hurry up migrating my ridiculously small (yet production stage) database.

from parse-server.

crorodriguezro avatar crorodriguezro commented on May 14, 2024

I also need more info about April 28th

from parse-server.

drew-gross avatar drew-gross commented on May 14, 2024

There will be some clarification going out in emails soon. The most time consuming part of migrating off Parse is going to be waiting for old clients to upgrade their app, so keep that in mind as you plan your migration.

from parse-server.

natario1 avatar natario1 commented on May 14, 2024

@drew-gross I hope it's not going out on 27th, you know :)

from parse-server.

karthiksekarnz avatar karthiksekarnz commented on May 14, 2024

@saleeh93 Do you have an open pull request or a branch in your fork that i can have a look and give a try? I am also after gcloud datastore as backend :)

from parse-server.

saleehk avatar saleehk commented on May 14, 2024

@karthiksekarnz Here it is https://github.com/saleeh93/parse-datastore-adapter

from parse-server.

flinn avatar flinn commented on May 14, 2024

What's the current state of the work towards modularizing the database adapter so Parse Server can be used with other NoSQL databases? I'm interested in using RethinkDB for a current project, and I'd be willing to write an adapter for it if that's a possibility (or if it will be possible soon)...

from parse-server.

noder199 avatar noder199 commented on May 14, 2024

I am also interested in an update on this, I like parse-server but it really needs support for other databases otherwise it is too expensive to run.

from parse-server.

lifeisfunny avatar lifeisfunny commented on May 14, 2024

Does the Parse postgres database adapter ready for test ??
I read through the code , Could anyone point me a direction to test out this code ???

from parse-server.

flinn avatar flinn commented on May 14, 2024

@blacha Thanks for the update -- I'll keep checking back for a status update from @drew-gross whenever he makes it back from his holiday.. I am still very interested in this and willing to dive in and work on a RethinkDB adapter for Parse Server.

@diego-vieira Thanks for that info, the Horizon project looks really interesting/promising... I'll take a closer look at it soon. Unfortunately, the project I am looking to set this stuff up for is a web application that's already being used in a production environment and it's tightly coupled on both the front and backend to the existing Parse infrastructure. This may be completely off-base and/or ill-advised (I haven't had a chance to dive into Horizon's docs yet, so please excuse my ignorance!), but would it make any sense to also consider building a horizon-adapter as another optional storage engine (instead of, or perhaps in addition to, a more direct/native rethinkdb-adapter)? It seems like that might offer an interesting plug-and-play solution that'd take care of the sharding/clustering of your storage solution and abstract those details away from the Parse Server... I guess the drawback is the added complexity and/or any additional network latency that might create.

from parse-server.

luisrgpt avatar luisrgpt commented on May 14, 2024

Hi. What's the database layer "modularization"'s current situation?

from parse-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.