You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 27, 2020. It is now read-only.
As title said, examples show me the code that loading a whole data set from the mongodb collection: job_ctx.read.format(source_format).options(host=mongo_url, database=db, collection=col).load()
But I don't need the whole set and what filter the data at mongodb side like the following job_ctx.read.format(source_format).options(host=mongo_url, database=db, collection=col).load('{ qty: { $ne: 20 }')
How can I do by Spark-MongoDB frame in Python
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As title said, examples show me the code that loading a whole data set from the mongodb collection:
job_ctx.read.format(source_format).options(host=mongo_url, database=db, collection=col).load()
But I don't need the whole set and what filter the data at mongodb side like the following
job_ctx.read.format(source_format).options(host=mongo_url, database=db, collection=col).load('{ qty: { $ne: 20 }')
How can I do by Spark-MongoDB frame in Python
The text was updated successfully, but these errors were encountered: