So I'm currently using AWS serverless to make a createObject endpoint, which takes the values from the http body and uses the key-values to store an item in DynamoDB. I am doing this via AWS Lambda. We recently started using Realm (Realm.io) and we see that they have a Javascript library for node. Is it possible to invoke a realm function to store the same object, via AWS Lambda?
How to use realm with AWS serverless lambda?
649 Views Asked by Gurinder Singh At
2
There are 2 best solutions below
0
Morten Krogh
On
Exactly as Clifton Labrum says, the professional and enterprise editions of the Realm Mobile Platform has a node.js SDK to be used on the server to listen for changes in Realms.
At every change in a Realm, you will get an event, which you can then process as you like. For instance, you can store objects in DynamoDB. You can also just leave the objects in Realms.
Related Questions in AMAZON-WEB-SERVICES
- "Access Denied" - User's Permissions to S3 Bucket
- Cohort analysis with Amazon Redshift / PostgreSQL
- Using Amazon KMS service on Heroku
- can't ssh in after cloning an EC2 instance on Amazon AWS
- Using HDFS with Apache Spark on Amazon EC2
- How can I access Mule ESB Community edition via browser?
- AWS EC2: Migrating from Windows to Linux Server
- AWS ELB Load Balancer: is it possible to set multiple session cookies?
- AWS Flow Framework: Can we run activity worker and activity task on different EC2 instances
- Unable to access files from public s3 bucket with boto
- Cloudfront stream only part of the video
- s3cmd not working as cron-task when echos/dates are added
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- InstanceProfile is required for creating cluster - create python function to install module
- How to fix WordPress HTTPS issues when behind an Amazon Load Balancer?
Related Questions in REALM
- realm db, get parent link of object
- Pager with RecyclerViews containing realmObjects keeps crashing with IllegalState
- Remove property in Realm object
- Android Realm - RealmBaseAdapter memory issue
- Realm.io API mapping parent object automatically
- RealmSwift RLMException
- New RealmModel migration issue with Realm
- Fetching with a certain number and some offset with Realm(https://realm.io/)
- Xcode linking error with realm
- Realm: In a one to many Relation ship, how to get the records based on a Category in this example
- Lots of checkboxes to add to my RealmObject
- Realm error: Invalid Value, expecting int and receiving: 0
- Realm Query to fetch multiple rows based on date Android
- Realm.io Removing the realm file
- How to migrate Realm in Android
Related Questions in AWS-LAMBDA
- How to get rows count from Amazon DynamoDB using Lambda AWS
- Querying DynamoDB with Lambda does nothing
- undefined is not a function after refactor
- Async AWS Lambda not executed if caller returns too early
- In amazon lambda, resizing multiple thumbnail sizes in parallel async throws Error: Stream yields empty buffer
- How to upload an object into S3 in Lambda?
- How to do image overlay and watermark using node.js in amazon lambda function
- Base64 encode UserData parameter for EC2 RunInstances using AWS Lambda
- AWS Lambda PHP Create Function with Zip
- Triggering a AWS Lambda from a form post
- Zip Files & Folders With No Base Directory
- Dynamically loading jar from arbitrary url
- AWSTask is not instantiable
- AWS Custom Authorizer with request parameters
- Parse OSM PBF in AWS Lambda and S3
Related Questions in SERVERLESS-FRAMEWORK
- AWS Custom Authorizer with request parameters
- Serverless compute on Windows in AWS
- Is it possible to correctly point to Python Shapely library's LIBGEOS_C in AWS Lambda environment?
- How to add bucket permission in serverless.yml
- Serverless CORS Error: Did not find method in CORS header ‘Access-Control-Allow-Methods'
- How to attach a managed policy to a lambda function in serverless framework
- Creating an S3 bucket and adding a file using the Serverless Framework
- Having trouble setting environment variables for AWS Lambda using Serverless v1.4.0
- Return JSON in response to S3 Upload
- Deploy Isomorphic react starter kit to AWS Lambda
- How do I assign function level IamRoleStatements in Serverless Framework?
- AWS Lambda connection timeout to Elasticache
- Correct implementation of babel with serverless
- I cannot just deploy a function with Serverless-framework 1.20.2
- Can I schedule a one-shot action in openwhisk?
Related Questions in REALM-MOBILE-PLATFORM
- Realm Object Server Resource Requirements
- What is the best practice or design pattern to maintain sync activity across multiple views?
- Add RealmObject to a List without adding it to the Realm
- (Mac) Realm Object Server Login Failed: Email/Password Incorrect
- Realm Object Server error
- Realm Mobile Platform with big data
- How to get first n rows in-memory from realm
- Is end-to-end encryption possible with Realm Mobile Platform?
- How to delete first n rows in realm
- Counters custom conflict resolution in realm mobile platform for android
- How is one supposed to practically use the Access Control features in the Realm Mobile Platform?
- How does the Realm Mobile Platform scale?
- Realm Recyclerview Adapter is showing error for edit and delete option
- Realm Object Server shows empty after adding items
- Realm Query not updating android
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As I understand it, the Node SDK for Realm is only for the Professional and Enterprise editions of the Realm Object Server (ROS). The ROS can only be deployed on your own Linux instance.
Please see this for more details: https://realm.io/docs/realm-object-server/pe-ee/