tbar4 commented on code in PR #1141: URL: https://github.com/apache/datafusion-ballista/pull/1141#discussion_r1861156892
########## python/examples/example.py: ########## @@ -15,18 +15,18 @@ # specific language governing permissions and limitations # under the License. +# %% + from ballista import BallistaBuilder from datafusion.context import SessionContext # Ballista will initiate with an empty config # set config variables with `config` ctx: SessionContext = BallistaBuilder()\ .config("ballista.job.name", "example ballista")\ - .config("ballista.shuffle.partitions", "16")\ + .config("datafusion.execution.target_partitions", "4")\ .standalone() - -#ctx_remote: SessionContext = ballista.remote("remote_ip", 50050) Review Comment: Didn't know if we wanted to show an example of connecting to a remote instance, but it is covered in the other docs anyway, so good call removing. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org