I have a script that pulls a fairly large vector file and performs a query on it in order to access the contents of the table so that I can run a series of calculations based on pandas. However, the dataset is so big that it takes too long to run the script, and therefore the notebook timesout before it completes. Is there a way of increasing the time before the notebook timesout, or is there a more efficient way than my code below which can be used to extract the table from a vectorfile and converting it into a pandas dataframe?
LU = gis.content.get("x")
Layer_LU = LU.layers
Layer_LU = LU.layers[0].query()
Layer_LU = Layer_LU.sdf
#Insert pandas operations here