#!/bin/bash

myip=___enter_IP_here___

########################################################################
########################################################################
########################################################################

nohup ./.spark/bin/spark-submit \
--conf spark.rpc.numRetries=500 \
--driver-memory 1g \
--executor-memory 1g \
--master spark://${myip}:7077 \
example_MINLPc.py &

