- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Is there a way to have pig default to python 3.4
- Labels:
-
Apache Pig
Created ‎12-16-2015 04:57 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
we got python 3.4 installed and is there a way to have pig use 3.4 as default python instead of 2.6?
Created ‎12-22-2015 02:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need to update the pig.properties value to be like the below to force it to use a different python alias when using the new Pig 13+ Python Streaming functions:
pig.streaming.udf.python.command=python3
Created ‎12-16-2015 05:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Are you talking about running a Pig UDF written in Python? You need to make sure you are using streaming_python instead of jython. What does your REGISTER command look like?
Created ‎12-22-2015 02:41 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You need to update the pig.properties value to be like the below to force it to use a different python alias when using the new Pig 13+ Python Streaming functions:
pig.streaming.udf.python.command=python3
Created ‎01-16-2018 09:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Adding that setting is not really working for me, I'm doing something like this
register 's3://fernandos-tests/python-udfs/python-version.py' using streaming_python as pyudfs; ... results = FOREACH limited GENERATE pyudfs.version(); DUMP results;
My python code looking like...
from pig_util import outputSchema import sys @outputSchema('word:chararray') def version(): return sys.version
And still getting python version 2.7
Any hints?
