Skip to content
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

Update quickstart.rst #2214

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/guides/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Your input files can come from HDFS if you're using Hadoop, or GCS if you're
using Dataproc::

$ python my_job.py -r dataproc gcs://my-inputs/input.txt
$ python my_job.py -r hadoop hdfs://my_home/input.txt
$ python my_job.py -r hadoop hdfs:///my_home/input.txt # Assuming your input is located at /my_home/input.txt


If you have Elastic MapReduce configured (see :doc:`emr-quickstart`), you can
Expand All @@ -136,7 +136,7 @@ Your input files can come from HDFS if you're using Hadoop, or S3 if you're
using EMR::

$ python my_job.py -r emr s3://my-inputs/input.txt
$ python my_job.py -r hadoop hdfs://my_home/input.txt
$ python my_job.py -r hadoop hdfs:///my_home/input.txt # If the input file is located /my_home/input.txt in hdfs

If your code spans multiple files, see :ref:`cookbook-src-tree-pythonpath`.

Expand Down